less copy protection, more size visualization
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

39949 行
866 KiB

  1. const pokemonMakers = {};
  2. pokemonMakers["Abomasnow"] = () => {
  3. return makeCharacter(
  4. { name: "Abomasnow" },
  5. {
  6. "Abomasnow": {
  7. height: math.unit("87", "inches"),
  8. weight: math.unit("298.7", "lbs"),
  9. name: "Abomasnow",
  10. image: {
  11. source: "./media/pokemon/Abomasnow.svg"
  12. },
  13. rename: true
  14. },
  15. "Mega Abomasnow": {
  16. height: math.unit("106", "inches"),
  17. weight: math.unit("407.9", "lbs"),
  18. name: "Mega Abomasnow",
  19. image: {
  20. source: "./media/pokemon/Mega Abomasnow.svg"
  21. },
  22. rename: true
  23. }
  24. },
  25. [
  26. {
  27. name: "Micro",
  28. height: math.unit(8.7, "inches")
  29. },
  30. {
  31. name: "Normal",
  32. height: math.unit(87, "inches"),
  33. default: true
  34. },
  35. {
  36. name: "Macro",
  37. height: math.unit(8700.0, "inches")
  38. },
  39. {
  40. name: "Megamacro",
  41. height: math.unit(435000.0, "inches")
  42. },
  43. {
  44. name: "Gigamacro",
  45. height: math.unit(870000000.0, "inches")
  46. }
  47. ]
  48. )
  49. };
  50. pokemonMakers["Abra"] = () => {
  51. return makeCharacter(
  52. { name: "Abra" },
  53. {
  54. "Abra": {
  55. height: math.unit("35", "inches"),
  56. weight: math.unit("43.0", "lbs"),
  57. name: "Abra",
  58. image: {
  59. source: "./media/pokemon/Abra.svg"
  60. },
  61. rename: true
  62. }
  63. },
  64. [
  65. {
  66. name: "Micro",
  67. height: math.unit(3.5, "inches")
  68. },
  69. {
  70. name: "Normal",
  71. height: math.unit(35, "inches"),
  72. default: true
  73. },
  74. {
  75. name: "Macro",
  76. height: math.unit(3500.0, "inches")
  77. },
  78. {
  79. name: "Megamacro",
  80. height: math.unit(175000.0, "inches")
  81. },
  82. {
  83. name: "Gigamacro",
  84. height: math.unit(350000000.0, "inches")
  85. }
  86. ]
  87. )
  88. };
  89. pokemonMakers["Absol"] = () => {
  90. return makeCharacter(
  91. { name: "Absol" },
  92. {
  93. "Absol": {
  94. height: math.unit("47", "inches"),
  95. weight: math.unit("103.6", "lbs"),
  96. name: "Absol",
  97. image: {
  98. source: "./media/pokemon/Absol.svg"
  99. },
  100. rename: true
  101. },
  102. "Mega Absol": {
  103. height: math.unit("47", "inches"),
  104. weight: math.unit("108.0", "lbs"),
  105. name: "Mega Absol",
  106. image: {
  107. source: "./media/pokemon/Mega Absol.svg"
  108. },
  109. rename: true
  110. }
  111. },
  112. [
  113. {
  114. name: "Micro",
  115. height: math.unit(4.7, "inches")
  116. },
  117. {
  118. name: "Normal",
  119. height: math.unit(47, "inches"),
  120. default: true
  121. },
  122. {
  123. name: "Macro",
  124. height: math.unit(4700.0, "inches")
  125. },
  126. {
  127. name: "Megamacro",
  128. height: math.unit(235000.0, "inches")
  129. },
  130. {
  131. name: "Gigamacro",
  132. height: math.unit(470000000.0, "inches")
  133. }
  134. ]
  135. )
  136. };
  137. pokemonMakers["Accelgor"] = () => {
  138. return makeCharacter(
  139. { name: "Accelgor" },
  140. {
  141. "Accelgor": {
  142. height: math.unit("31", "inches"),
  143. weight: math.unit("55.8", "lbs"),
  144. name: "Accelgor",
  145. image: {
  146. source: "./media/pokemon/Accelgor.svg"
  147. },
  148. rename: true
  149. }
  150. },
  151. [
  152. {
  153. name: "Micro",
  154. height: math.unit(3.1, "inches")
  155. },
  156. {
  157. name: "Normal",
  158. height: math.unit(31, "inches"),
  159. default: true
  160. },
  161. {
  162. name: "Macro",
  163. height: math.unit(3100.0, "inches")
  164. },
  165. {
  166. name: "Megamacro",
  167. height: math.unit(155000.0, "inches")
  168. },
  169. {
  170. name: "Gigamacro",
  171. height: math.unit(310000000.0, "inches")
  172. }
  173. ]
  174. )
  175. };
  176. pokemonMakers["Aegislash"] = () => {
  177. return makeCharacter(
  178. { name: "Aegislash" },
  179. {
  180. "Blade Forme": {
  181. height: math.unit("67", "inches"),
  182. weight: math.unit("116.8", "lbs"),
  183. name: "Blade Forme",
  184. image: {
  185. source: "./media/pokemon/Aegislash - Blade Forme.svg"
  186. },
  187. rename: true
  188. },
  189. "Shield Forme": {
  190. height: math.unit("67", "inches"),
  191. weight: math.unit("116.8", "lbs"),
  192. name: "Shield Forme",
  193. image: {
  194. source: "./media/pokemon/Aegislash - Shield Forme.svg"
  195. },
  196. rename: true
  197. }
  198. },
  199. [
  200. {
  201. name: "Micro",
  202. height: math.unit(6.7, "inches")
  203. },
  204. {
  205. name: "Normal",
  206. height: math.unit(67, "inches"),
  207. default: true
  208. },
  209. {
  210. name: "Macro",
  211. height: math.unit(6700.0, "inches")
  212. },
  213. {
  214. name: "Megamacro",
  215. height: math.unit(335000.0, "inches")
  216. },
  217. {
  218. name: "Gigamacro",
  219. height: math.unit(670000000.0, "inches")
  220. }
  221. ]
  222. )
  223. };
  224. pokemonMakers["Aerodactyl"] = () => {
  225. return makeCharacter(
  226. { name: "Aerodactyl" },
  227. {
  228. "Aerodactyl": {
  229. height: math.unit("71", "inches"),
  230. weight: math.unit("130.1", "lbs"),
  231. name: "Aerodactyl",
  232. image: {
  233. source: "./media/pokemon/Aerodactyl.svg"
  234. },
  235. rename: true
  236. },
  237. "Mega Aerodactyl": {
  238. height: math.unit("83", "inches"),
  239. weight: math.unit("174.2", "lbs"),
  240. name: "Mega Aerodactyl",
  241. image: {
  242. source: "./media/pokemon/Mega Aerodactyl.svg"
  243. },
  244. rename: true
  245. }
  246. },
  247. [
  248. {
  249. name: "Micro",
  250. height: math.unit(7.1, "inches")
  251. },
  252. {
  253. name: "Normal",
  254. height: math.unit(71, "inches"),
  255. default: true
  256. },
  257. {
  258. name: "Macro",
  259. height: math.unit(7100.0, "inches")
  260. },
  261. {
  262. name: "Megamacro",
  263. height: math.unit(355000.0, "inches")
  264. },
  265. {
  266. name: "Gigamacro",
  267. height: math.unit(710000000.0, "inches")
  268. }
  269. ]
  270. )
  271. };
  272. pokemonMakers["Aggron"] = () => {
  273. return makeCharacter(
  274. { name: "Aggron" },
  275. {
  276. "Aggron": {
  277. height: math.unit("83", "inches"),
  278. weight: math.unit("793.7", "lbs"),
  279. name: "Aggron",
  280. image: {
  281. source: "./media/pokemon/Aggron.svg"
  282. },
  283. rename: true
  284. },
  285. "Mega Aggron": {
  286. height: math.unit("87", "inches"),
  287. weight: math.unit("870.8", "lbs"),
  288. name: "Mega Aggron",
  289. image: {
  290. source: "./media/pokemon/Mega Aggron.svg"
  291. },
  292. rename: true
  293. }
  294. },
  295. [
  296. {
  297. name: "Micro",
  298. height: math.unit(8.3, "inches")
  299. },
  300. {
  301. name: "Normal",
  302. height: math.unit(83, "inches"),
  303. default: true
  304. },
  305. {
  306. name: "Macro",
  307. height: math.unit(8300.0, "inches")
  308. },
  309. {
  310. name: "Megamacro",
  311. height: math.unit(415000.0, "inches")
  312. },
  313. {
  314. name: "Gigamacro",
  315. height: math.unit(830000000.0, "inches")
  316. }
  317. ]
  318. )
  319. };
  320. pokemonMakers["Aipom"] = () => {
  321. return makeCharacter(
  322. { name: "Aipom" },
  323. {
  324. "Aipom": {
  325. height: math.unit("31", "inches"),
  326. weight: math.unit("25.4", "lbs"),
  327. name: "Aipom",
  328. image: {
  329. source: "./media/pokemon/Aipom.svg"
  330. },
  331. rename: true
  332. }
  333. },
  334. [
  335. {
  336. name: "Micro",
  337. height: math.unit(3.1, "inches")
  338. },
  339. {
  340. name: "Normal",
  341. height: math.unit(31, "inches"),
  342. default: true
  343. },
  344. {
  345. name: "Macro",
  346. height: math.unit(3100.0, "inches")
  347. },
  348. {
  349. name: "Megamacro",
  350. height: math.unit(155000.0, "inches")
  351. },
  352. {
  353. name: "Gigamacro",
  354. height: math.unit(310000000.0, "inches")
  355. }
  356. ]
  357. )
  358. };
  359. pokemonMakers["Alakazam"] = () => {
  360. return makeCharacter(
  361. { name: "Alakazam" },
  362. {
  363. "Alakazam": {
  364. height: math.unit("59", "inches"),
  365. weight: math.unit("105.8", "lbs"),
  366. name: "Alakazam",
  367. image: {
  368. source: "./media/pokemon/Alakazam.svg"
  369. },
  370. rename: true
  371. },
  372. "Mega Alakazam": {
  373. height: math.unit("47", "inches"),
  374. weight: math.unit("105.8", "lbs"),
  375. name: "Mega Alakazam",
  376. image: {
  377. source: "./media/pokemon/Mega Alakazam.svg"
  378. },
  379. rename: true
  380. }
  381. },
  382. [
  383. {
  384. name: "Micro",
  385. height: math.unit(5.9, "inches")
  386. },
  387. {
  388. name: "Normal",
  389. height: math.unit(59, "inches"),
  390. default: true
  391. },
  392. {
  393. name: "Macro",
  394. height: math.unit(5900.0, "inches")
  395. },
  396. {
  397. name: "Megamacro",
  398. height: math.unit(295000.0, "inches")
  399. },
  400. {
  401. name: "Gigamacro",
  402. height: math.unit(590000000.0, "inches")
  403. }
  404. ]
  405. )
  406. };
  407. pokemonMakers["Alcremie"] = () => {
  408. return makeCharacter(
  409. { name: "Alcremie" },
  410. {
  411. "Vanilla Cream": {
  412. height: math.unit("12", "inches"),
  413. weight: math.unit("1.1", "lbs"),
  414. name: "Vanilla Cream",
  415. image: {
  416. source: "./media/pokemon/Alcremie - Vanilla Cream.svg"
  417. },
  418. rename: true
  419. },
  420. "Gigantamax Alcremie": {
  421. height: math.unit("1181", "inches"),
  422. weight: math.unit("1048572.9254050929", "lbs"),
  423. name: "Gigantamax Alcremie",
  424. image: {
  425. source: "./media/pokemon/Gigantamax Alcremie.svg"
  426. },
  427. rename: true
  428. }
  429. },
  430. [
  431. {
  432. name: "Micro",
  433. height: math.unit(1.2, "inches")
  434. },
  435. {
  436. name: "Normal",
  437. height: math.unit(12, "inches"),
  438. default: true
  439. },
  440. {
  441. name: "Macro",
  442. height: math.unit(1200.0, "inches")
  443. },
  444. {
  445. name: "Megamacro",
  446. height: math.unit(60000.0, "inches")
  447. },
  448. {
  449. name: "Gigamacro",
  450. height: math.unit(120000000.0, "inches")
  451. }
  452. ]
  453. )
  454. };
  455. pokemonMakers["Alomomola"] = () => {
  456. return makeCharacter(
  457. { name: "Alomomola" },
  458. {
  459. "Alomomola": {
  460. height: math.unit("47", "inches"),
  461. weight: math.unit("69.7", "lbs"),
  462. name: "Alomomola",
  463. image: {
  464. source: "./media/pokemon/Alomomola.svg"
  465. },
  466. rename: true
  467. }
  468. },
  469. [
  470. {
  471. name: "Micro",
  472. height: math.unit(4.7, "inches")
  473. },
  474. {
  475. name: "Normal",
  476. height: math.unit(47, "inches"),
  477. default: true
  478. },
  479. {
  480. name: "Macro",
  481. height: math.unit(4700.0, "inches")
  482. },
  483. {
  484. name: "Megamacro",
  485. height: math.unit(235000.0, "inches")
  486. },
  487. {
  488. name: "Gigamacro",
  489. height: math.unit(470000000.0, "inches")
  490. }
  491. ]
  492. )
  493. };
  494. pokemonMakers["Altaria"] = () => {
  495. return makeCharacter(
  496. { name: "Altaria" },
  497. {
  498. "Altaria": {
  499. height: math.unit("43", "inches"),
  500. weight: math.unit("45.4", "lbs"),
  501. name: "Altaria",
  502. image: {
  503. source: "./media/pokemon/Altaria.svg"
  504. },
  505. rename: true
  506. },
  507. "Mega Altaria": {
  508. height: math.unit("59", "inches"),
  509. weight: math.unit("45.4", "lbs"),
  510. name: "Mega Altaria",
  511. image: {
  512. source: "./media/pokemon/Mega Altaria.svg"
  513. },
  514. rename: true
  515. }
  516. },
  517. [
  518. {
  519. name: "Micro",
  520. height: math.unit(4.3, "inches")
  521. },
  522. {
  523. name: "Normal",
  524. height: math.unit(43, "inches"),
  525. default: true
  526. },
  527. {
  528. name: "Macro",
  529. height: math.unit(4300.0, "inches")
  530. },
  531. {
  532. name: "Megamacro",
  533. height: math.unit(215000.0, "inches")
  534. },
  535. {
  536. name: "Gigamacro",
  537. height: math.unit(430000000.0, "inches")
  538. }
  539. ]
  540. )
  541. };
  542. pokemonMakers["Amaura"] = () => {
  543. return makeCharacter(
  544. { name: "Amaura" },
  545. {
  546. "Amaura": {
  547. height: math.unit("51", "inches"),
  548. weight: math.unit("55.6", "lbs"),
  549. name: "Amaura",
  550. image: {
  551. source: "./media/pokemon/Amaura.svg"
  552. },
  553. rename: true
  554. }
  555. },
  556. [
  557. {
  558. name: "Micro",
  559. height: math.unit(5.1, "inches")
  560. },
  561. {
  562. name: "Normal",
  563. height: math.unit(51, "inches"),
  564. default: true
  565. },
  566. {
  567. name: "Macro",
  568. height: math.unit(5100.0, "inches")
  569. },
  570. {
  571. name: "Megamacro",
  572. height: math.unit(255000.0, "inches")
  573. },
  574. {
  575. name: "Gigamacro",
  576. height: math.unit(510000000.0, "inches")
  577. }
  578. ]
  579. )
  580. };
  581. pokemonMakers["Ambipom"] = () => {
  582. return makeCharacter(
  583. { name: "Ambipom" },
  584. {
  585. "Ambipom": {
  586. height: math.unit("47", "inches"),
  587. weight: math.unit("44.8", "lbs"),
  588. name: "Ambipom",
  589. image: {
  590. source: "./media/pokemon/Ambipom.svg"
  591. },
  592. rename: true
  593. }
  594. },
  595. [
  596. {
  597. name: "Micro",
  598. height: math.unit(4.7, "inches")
  599. },
  600. {
  601. name: "Normal",
  602. height: math.unit(47, "inches"),
  603. default: true
  604. },
  605. {
  606. name: "Macro",
  607. height: math.unit(4700.0, "inches")
  608. },
  609. {
  610. name: "Megamacro",
  611. height: math.unit(235000.0, "inches")
  612. },
  613. {
  614. name: "Gigamacro",
  615. height: math.unit(470000000.0, "inches")
  616. }
  617. ]
  618. )
  619. };
  620. pokemonMakers["Amoonguss"] = () => {
  621. return makeCharacter(
  622. { name: "Amoonguss" },
  623. {
  624. "Amoonguss": {
  625. height: math.unit("24", "inches"),
  626. weight: math.unit("23.1", "lbs"),
  627. name: "Amoonguss",
  628. image: {
  629. source: "./media/pokemon/Amoonguss.svg"
  630. },
  631. rename: true
  632. }
  633. },
  634. [
  635. {
  636. name: "Micro",
  637. height: math.unit(2.4, "inches")
  638. },
  639. {
  640. name: "Normal",
  641. height: math.unit(24, "inches"),
  642. default: true
  643. },
  644. {
  645. name: "Macro",
  646. height: math.unit(2400.0, "inches")
  647. },
  648. {
  649. name: "Megamacro",
  650. height: math.unit(120000.0, "inches")
  651. },
  652. {
  653. name: "Gigamacro",
  654. height: math.unit(240000000.0, "inches")
  655. }
  656. ]
  657. )
  658. };
  659. pokemonMakers["Ampharos"] = () => {
  660. return makeCharacter(
  661. { name: "Ampharos" },
  662. {
  663. "Ampharos": {
  664. height: math.unit("55", "inches"),
  665. weight: math.unit("135.6", "lbs"),
  666. name: "Ampharos",
  667. image: {
  668. source: "./media/pokemon/Ampharos.svg"
  669. },
  670. rename: true
  671. },
  672. "Mega Ampharos": {
  673. height: math.unit("55", "inches"),
  674. weight: math.unit("135.6", "lbs"),
  675. name: "Mega Ampharos",
  676. image: {
  677. source: "./media/pokemon/Mega Ampharos.svg"
  678. },
  679. rename: true
  680. }
  681. },
  682. [
  683. {
  684. name: "Micro",
  685. height: math.unit(5.5, "inches")
  686. },
  687. {
  688. name: "Normal",
  689. height: math.unit(55, "inches"),
  690. default: true
  691. },
  692. {
  693. name: "Macro",
  694. height: math.unit(5500.0, "inches")
  695. },
  696. {
  697. name: "Megamacro",
  698. height: math.unit(275000.0, "inches")
  699. },
  700. {
  701. name: "Gigamacro",
  702. height: math.unit(550000000.0, "inches")
  703. }
  704. ]
  705. )
  706. };
  707. pokemonMakers["Anorith"] = () => {
  708. return makeCharacter(
  709. { name: "Anorith" },
  710. {
  711. "Anorith": {
  712. height: math.unit("28", "inches"),
  713. weight: math.unit("27.6", "lbs"),
  714. name: "Anorith",
  715. image: {
  716. source: "./media/pokemon/Anorith.svg"
  717. },
  718. rename: true
  719. }
  720. },
  721. [
  722. {
  723. name: "Micro",
  724. height: math.unit(2.8, "inches")
  725. },
  726. {
  727. name: "Normal",
  728. height: math.unit(28, "inches"),
  729. default: true
  730. },
  731. {
  732. name: "Macro",
  733. height: math.unit(2800.0, "inches")
  734. },
  735. {
  736. name: "Megamacro",
  737. height: math.unit(140000.0, "inches")
  738. },
  739. {
  740. name: "Gigamacro",
  741. height: math.unit(280000000.0, "inches")
  742. }
  743. ]
  744. )
  745. };
  746. pokemonMakers["Appletun"] = () => {
  747. return makeCharacter(
  748. { name: "Appletun" },
  749. {
  750. "Appletun": {
  751. height: math.unit("16", "inches"),
  752. weight: math.unit("28.7", "lbs"),
  753. name: "Appletun",
  754. image: {
  755. source: "./media/pokemon/Appletun.svg"
  756. },
  757. rename: true
  758. },
  759. "Gigantamax Appletun": {
  760. height: math.unit("945", "inches"),
  761. weight: math.unit("5913129.281616211", "lbs"),
  762. name: "Gigantamax Appletun",
  763. image: {
  764. source: "./media/pokemon/Gigantamax Appletun.svg"
  765. },
  766. rename: true
  767. }
  768. },
  769. [
  770. {
  771. name: "Micro",
  772. height: math.unit(1.6, "inches")
  773. },
  774. {
  775. name: "Normal",
  776. height: math.unit(16, "inches"),
  777. default: true
  778. },
  779. {
  780. name: "Macro",
  781. height: math.unit(1600.0, "inches")
  782. },
  783. {
  784. name: "Megamacro",
  785. height: math.unit(80000.0, "inches")
  786. },
  787. {
  788. name: "Gigamacro",
  789. height: math.unit(160000000.0, "inches")
  790. }
  791. ]
  792. )
  793. };
  794. pokemonMakers["Applin"] = () => {
  795. return makeCharacter(
  796. { name: "Applin" },
  797. {
  798. "Applin": {
  799. height: math.unit("8", "inches"),
  800. weight: math.unit("1.1", "lbs"),
  801. name: "Applin",
  802. image: {
  803. source: "./media/pokemon/Applin.svg"
  804. },
  805. rename: true
  806. }
  807. },
  808. [
  809. {
  810. name: "Micro",
  811. height: math.unit(0.8, "inches")
  812. },
  813. {
  814. name: "Normal",
  815. height: math.unit(8, "inches"),
  816. default: true
  817. },
  818. {
  819. name: "Macro",
  820. height: math.unit(800.0, "inches")
  821. },
  822. {
  823. name: "Megamacro",
  824. height: math.unit(40000.0, "inches")
  825. },
  826. {
  827. name: "Gigamacro",
  828. height: math.unit(80000000.0, "inches")
  829. }
  830. ]
  831. )
  832. };
  833. pokemonMakers["Araquanid"] = () => {
  834. return makeCharacter(
  835. { name: "Araquanid" },
  836. {
  837. "Araquanid": {
  838. height: math.unit("71", "inches"),
  839. weight: math.unit("180.8", "lbs"),
  840. name: "Araquanid",
  841. image: {
  842. source: "./media/pokemon/Araquanid.svg"
  843. },
  844. rename: true
  845. }
  846. },
  847. [
  848. {
  849. name: "Micro",
  850. height: math.unit(7.1, "inches")
  851. },
  852. {
  853. name: "Normal",
  854. height: math.unit(71, "inches"),
  855. default: true
  856. },
  857. {
  858. name: "Macro",
  859. height: math.unit(7100.0, "inches")
  860. },
  861. {
  862. name: "Megamacro",
  863. height: math.unit(355000.0, "inches")
  864. },
  865. {
  866. name: "Gigamacro",
  867. height: math.unit(710000000.0, "inches")
  868. }
  869. ]
  870. )
  871. };
  872. pokemonMakers["Arbok"] = () => {
  873. return makeCharacter(
  874. { name: "Arbok" },
  875. {
  876. "Arbok": {
  877. height: math.unit("138", "inches"),
  878. weight: math.unit("143.3", "lbs"),
  879. name: "Arbok",
  880. image: {
  881. source: "./media/pokemon/Arbok.svg"
  882. },
  883. rename: true
  884. }
  885. },
  886. [
  887. {
  888. name: "Micro",
  889. height: math.unit(13.8, "inches")
  890. },
  891. {
  892. name: "Normal",
  893. height: math.unit(138, "inches"),
  894. default: true
  895. },
  896. {
  897. name: "Macro",
  898. height: math.unit(13800.0, "inches")
  899. },
  900. {
  901. name: "Megamacro",
  902. height: math.unit(690000.0, "inches")
  903. },
  904. {
  905. name: "Gigamacro",
  906. height: math.unit(1380000000.0, "inches")
  907. }
  908. ]
  909. )
  910. };
  911. pokemonMakers["Arcanine"] = () => {
  912. return makeCharacter(
  913. { name: "Arcanine" },
  914. {
  915. "Arcanine": {
  916. height: math.unit("75", "inches"),
  917. weight: math.unit("341.7", "lbs"),
  918. name: "Arcanine",
  919. image: {
  920. source: "./media/pokemon/Arcanine.svg"
  921. },
  922. rename: true
  923. }
  924. },
  925. [
  926. {
  927. name: "Micro",
  928. height: math.unit(7.5, "inches")
  929. },
  930. {
  931. name: "Normal",
  932. height: math.unit(75, "inches"),
  933. default: true
  934. },
  935. {
  936. name: "Macro",
  937. height: math.unit(7500.0, "inches")
  938. },
  939. {
  940. name: "Megamacro",
  941. height: math.unit(375000.0, "inches")
  942. },
  943. {
  944. name: "Gigamacro",
  945. height: math.unit(750000000.0, "inches")
  946. }
  947. ]
  948. )
  949. };
  950. pokemonMakers["Arceus"] = () => {
  951. return makeCharacter(
  952. { name: "Arceus" },
  953. {
  954. "Bug": {
  955. height: math.unit("126", "inches"),
  956. weight: math.unit("705.5", "lbs"),
  957. name: "Bug",
  958. image: {
  959. source: "./media/pokemon/Arceus - Bug.svg"
  960. },
  961. rename: true
  962. },
  963. "Dark": {
  964. height: math.unit("126", "inches"),
  965. weight: math.unit("705.5", "lbs"),
  966. name: "Dark",
  967. image: {
  968. source: "./media/pokemon/Arceus - Dark.svg"
  969. },
  970. rename: true
  971. },
  972. "Dragon": {
  973. height: math.unit("126", "inches"),
  974. weight: math.unit("705.5", "lbs"),
  975. name: "Dragon",
  976. image: {
  977. source: "./media/pokemon/Arceus - Dragon.svg"
  978. },
  979. rename: true
  980. },
  981. "Electric": {
  982. height: math.unit("126", "inches"),
  983. weight: math.unit("705.5", "lbs"),
  984. name: "Electric",
  985. image: {
  986. source: "./media/pokemon/Arceus - Electric.svg"
  987. },
  988. rename: true
  989. },
  990. "Fairy": {
  991. height: math.unit("126", "inches"),
  992. weight: math.unit("705.5", "lbs"),
  993. name: "Fairy",
  994. image: {
  995. source: "./media/pokemon/Arceus - Fairy.svg"
  996. },
  997. rename: true
  998. },
  999. "Fighting": {
  1000. height: math.unit("126", "inches"),
  1001. weight: math.unit("705.5", "lbs"),
  1002. name: "Fighting",
  1003. image: {
  1004. source: "./media/pokemon/Arceus - Fighting.svg"
  1005. },
  1006. rename: true
  1007. },
  1008. "Fire": {
  1009. height: math.unit("126", "inches"),
  1010. weight: math.unit("705.5", "lbs"),
  1011. name: "Fire",
  1012. image: {
  1013. source: "./media/pokemon/Arceus - Fire.svg"
  1014. },
  1015. rename: true
  1016. },
  1017. "Flying": {
  1018. height: math.unit("126", "inches"),
  1019. weight: math.unit("705.5", "lbs"),
  1020. name: "Flying",
  1021. image: {
  1022. source: "./media/pokemon/Arceus - Flying.svg"
  1023. },
  1024. rename: true
  1025. },
  1026. "Ghost": {
  1027. height: math.unit("126", "inches"),
  1028. weight: math.unit("705.5", "lbs"),
  1029. name: "Ghost",
  1030. image: {
  1031. source: "./media/pokemon/Arceus - Ghost.svg"
  1032. },
  1033. rename: true
  1034. },
  1035. "Grass": {
  1036. height: math.unit("126", "inches"),
  1037. weight: math.unit("705.5", "lbs"),
  1038. name: "Grass",
  1039. image: {
  1040. source: "./media/pokemon/Arceus - Grass.svg"
  1041. },
  1042. rename: true
  1043. },
  1044. "Ground": {
  1045. height: math.unit("126", "inches"),
  1046. weight: math.unit("705.5", "lbs"),
  1047. name: "Ground",
  1048. image: {
  1049. source: "./media/pokemon/Arceus - Ground.svg"
  1050. },
  1051. rename: true
  1052. },
  1053. "Ice": {
  1054. height: math.unit("126", "inches"),
  1055. weight: math.unit("705.5", "lbs"),
  1056. name: "Ice",
  1057. image: {
  1058. source: "./media/pokemon/Arceus - Ice.svg"
  1059. },
  1060. rename: true
  1061. },
  1062. "Poison": {
  1063. height: math.unit("126", "inches"),
  1064. weight: math.unit("705.5", "lbs"),
  1065. name: "Poison",
  1066. image: {
  1067. source: "./media/pokemon/Arceus - Poison.svg"
  1068. },
  1069. rename: true
  1070. },
  1071. "Psychic": {
  1072. height: math.unit("126", "inches"),
  1073. weight: math.unit("705.5", "lbs"),
  1074. name: "Psychic",
  1075. image: {
  1076. source: "./media/pokemon/Arceus - Psychic.svg"
  1077. },
  1078. rename: true
  1079. },
  1080. "Rock": {
  1081. height: math.unit("126", "inches"),
  1082. weight: math.unit("705.5", "lbs"),
  1083. name: "Rock",
  1084. image: {
  1085. source: "./media/pokemon/Arceus - Rock.svg"
  1086. },
  1087. rename: true
  1088. },
  1089. "Steel": {
  1090. height: math.unit("126", "inches"),
  1091. weight: math.unit("705.5", "lbs"),
  1092. name: "Steel",
  1093. image: {
  1094. source: "./media/pokemon/Arceus - Steel.svg"
  1095. },
  1096. rename: true
  1097. },
  1098. "Water": {
  1099. height: math.unit("126", "inches"),
  1100. weight: math.unit("705.5", "lbs"),
  1101. name: "Water",
  1102. image: {
  1103. source: "./media/pokemon/Arceus - Water.svg"
  1104. },
  1105. rename: true
  1106. },
  1107. "Arceus": {
  1108. height: math.unit("126", "inches"),
  1109. weight: math.unit("705.5", "lbs"),
  1110. name: "Arceus",
  1111. image: {
  1112. source: "./media/pokemon/Arceus.svg"
  1113. },
  1114. rename: true
  1115. }
  1116. },
  1117. [
  1118. {
  1119. name: "Micro",
  1120. height: math.unit(12.6, "inches")
  1121. },
  1122. {
  1123. name: "Normal",
  1124. height: math.unit(126, "inches"),
  1125. default: true
  1126. },
  1127. {
  1128. name: "Macro",
  1129. height: math.unit(12600.0, "inches")
  1130. },
  1131. {
  1132. name: "Megamacro",
  1133. height: math.unit(630000.0, "inches")
  1134. },
  1135. {
  1136. name: "Gigamacro",
  1137. height: math.unit(1260000000.0, "inches")
  1138. }
  1139. ]
  1140. )
  1141. };
  1142. pokemonMakers["Archen"] = () => {
  1143. return makeCharacter(
  1144. { name: "Archen" },
  1145. {
  1146. "Archen": {
  1147. height: math.unit("20", "inches"),
  1148. weight: math.unit("20.9", "lbs"),
  1149. name: "Archen",
  1150. image: {
  1151. source: "./media/pokemon/Archen.svg"
  1152. },
  1153. rename: true
  1154. }
  1155. },
  1156. [
  1157. {
  1158. name: "Micro",
  1159. height: math.unit(2.0, "inches")
  1160. },
  1161. {
  1162. name: "Normal",
  1163. height: math.unit(20, "inches"),
  1164. default: true
  1165. },
  1166. {
  1167. name: "Macro",
  1168. height: math.unit(2000.0, "inches")
  1169. },
  1170. {
  1171. name: "Megamacro",
  1172. height: math.unit(100000.0, "inches")
  1173. },
  1174. {
  1175. name: "Gigamacro",
  1176. height: math.unit(200000000.0, "inches")
  1177. }
  1178. ]
  1179. )
  1180. };
  1181. pokemonMakers["Archeops"] = () => {
  1182. return makeCharacter(
  1183. { name: "Archeops" },
  1184. {
  1185. "Archeops": {
  1186. height: math.unit("55", "inches"),
  1187. weight: math.unit("70.5", "lbs"),
  1188. name: "Archeops",
  1189. image: {
  1190. source: "./media/pokemon/Archeops.svg"
  1191. },
  1192. rename: true
  1193. }
  1194. },
  1195. [
  1196. {
  1197. name: "Micro",
  1198. height: math.unit(5.5, "inches")
  1199. },
  1200. {
  1201. name: "Normal",
  1202. height: math.unit(55, "inches"),
  1203. default: true
  1204. },
  1205. {
  1206. name: "Macro",
  1207. height: math.unit(5500.0, "inches")
  1208. },
  1209. {
  1210. name: "Megamacro",
  1211. height: math.unit(275000.0, "inches")
  1212. },
  1213. {
  1214. name: "Gigamacro",
  1215. height: math.unit(550000000.0, "inches")
  1216. }
  1217. ]
  1218. )
  1219. };
  1220. pokemonMakers["Arctovish"] = () => {
  1221. return makeCharacter(
  1222. { name: "Arctovish" },
  1223. {
  1224. "Arctovish": {
  1225. height: math.unit("79", "inches"),
  1226. weight: math.unit("385.8", "lbs"),
  1227. name: "Arctovish",
  1228. image: {
  1229. source: "./media/pokemon/Arctovish.svg"
  1230. },
  1231. rename: true
  1232. }
  1233. },
  1234. [
  1235. {
  1236. name: "Micro",
  1237. height: math.unit(7.9, "inches")
  1238. },
  1239. {
  1240. name: "Normal",
  1241. height: math.unit(79, "inches"),
  1242. default: true
  1243. },
  1244. {
  1245. name: "Macro",
  1246. height: math.unit(7900.0, "inches")
  1247. },
  1248. {
  1249. name: "Megamacro",
  1250. height: math.unit(395000.0, "inches")
  1251. },
  1252. {
  1253. name: "Gigamacro",
  1254. height: math.unit(790000000.0, "inches")
  1255. }
  1256. ]
  1257. )
  1258. };
  1259. pokemonMakers["Arctozolt"] = () => {
  1260. return makeCharacter(
  1261. { name: "Arctozolt" },
  1262. {
  1263. "Arctozolt": {
  1264. height: math.unit("91", "inches"),
  1265. weight: math.unit("330.7", "lbs"),
  1266. name: "Arctozolt",
  1267. image: {
  1268. source: "./media/pokemon/Arctozolt.svg"
  1269. },
  1270. rename: true
  1271. }
  1272. },
  1273. [
  1274. {
  1275. name: "Micro",
  1276. height: math.unit(9.1, "inches")
  1277. },
  1278. {
  1279. name: "Normal",
  1280. height: math.unit(91, "inches"),
  1281. default: true
  1282. },
  1283. {
  1284. name: "Macro",
  1285. height: math.unit(9100.0, "inches")
  1286. },
  1287. {
  1288. name: "Megamacro",
  1289. height: math.unit(455000.0, "inches")
  1290. },
  1291. {
  1292. name: "Gigamacro",
  1293. height: math.unit(910000000.0, "inches")
  1294. }
  1295. ]
  1296. )
  1297. };
  1298. pokemonMakers["Ariados"] = () => {
  1299. return makeCharacter(
  1300. { name: "Ariados" },
  1301. {
  1302. "Ariados": {
  1303. height: math.unit("43", "inches"),
  1304. weight: math.unit("73.9", "lbs"),
  1305. name: "Ariados",
  1306. image: {
  1307. source: "./media/pokemon/Ariados.svg"
  1308. },
  1309. rename: true
  1310. }
  1311. },
  1312. [
  1313. {
  1314. name: "Micro",
  1315. height: math.unit(4.3, "inches")
  1316. },
  1317. {
  1318. name: "Normal",
  1319. height: math.unit(43, "inches"),
  1320. default: true
  1321. },
  1322. {
  1323. name: "Macro",
  1324. height: math.unit(4300.0, "inches")
  1325. },
  1326. {
  1327. name: "Megamacro",
  1328. height: math.unit(215000.0, "inches")
  1329. },
  1330. {
  1331. name: "Gigamacro",
  1332. height: math.unit(430000000.0, "inches")
  1333. }
  1334. ]
  1335. )
  1336. };
  1337. pokemonMakers["Armaldo"] = () => {
  1338. return makeCharacter(
  1339. { name: "Armaldo" },
  1340. {
  1341. "Armaldo": {
  1342. height: math.unit("59", "inches"),
  1343. weight: math.unit("150.4", "lbs"),
  1344. name: "Armaldo",
  1345. image: {
  1346. source: "./media/pokemon/Armaldo.svg"
  1347. },
  1348. rename: true
  1349. }
  1350. },
  1351. [
  1352. {
  1353. name: "Micro",
  1354. height: math.unit(5.9, "inches")
  1355. },
  1356. {
  1357. name: "Normal",
  1358. height: math.unit(59, "inches"),
  1359. default: true
  1360. },
  1361. {
  1362. name: "Macro",
  1363. height: math.unit(5900.0, "inches")
  1364. },
  1365. {
  1366. name: "Megamacro",
  1367. height: math.unit(295000.0, "inches")
  1368. },
  1369. {
  1370. name: "Gigamacro",
  1371. height: math.unit(590000000.0, "inches")
  1372. }
  1373. ]
  1374. )
  1375. };
  1376. pokemonMakers["Aromatisse"] = () => {
  1377. return makeCharacter(
  1378. { name: "Aromatisse" },
  1379. {
  1380. "Aromatisse": {
  1381. height: math.unit("31", "inches"),
  1382. weight: math.unit("34.2", "lbs"),
  1383. name: "Aromatisse",
  1384. image: {
  1385. source: "./media/pokemon/Aromatisse.svg"
  1386. },
  1387. rename: true
  1388. }
  1389. },
  1390. [
  1391. {
  1392. name: "Micro",
  1393. height: math.unit(3.1, "inches")
  1394. },
  1395. {
  1396. name: "Normal",
  1397. height: math.unit(31, "inches"),
  1398. default: true
  1399. },
  1400. {
  1401. name: "Macro",
  1402. height: math.unit(3100.0, "inches")
  1403. },
  1404. {
  1405. name: "Megamacro",
  1406. height: math.unit(155000.0, "inches")
  1407. },
  1408. {
  1409. name: "Gigamacro",
  1410. height: math.unit(310000000.0, "inches")
  1411. }
  1412. ]
  1413. )
  1414. };
  1415. pokemonMakers["Aron"] = () => {
  1416. return makeCharacter(
  1417. { name: "Aron" },
  1418. {
  1419. "Aron": {
  1420. height: math.unit("16", "inches"),
  1421. weight: math.unit("132.3", "lbs"),
  1422. name: "Aron",
  1423. image: {
  1424. source: "./media/pokemon/Aron.svg"
  1425. },
  1426. rename: true
  1427. }
  1428. },
  1429. [
  1430. {
  1431. name: "Micro",
  1432. height: math.unit(1.6, "inches")
  1433. },
  1434. {
  1435. name: "Normal",
  1436. height: math.unit(16, "inches"),
  1437. default: true
  1438. },
  1439. {
  1440. name: "Macro",
  1441. height: math.unit(1600.0, "inches")
  1442. },
  1443. {
  1444. name: "Megamacro",
  1445. height: math.unit(80000.0, "inches")
  1446. },
  1447. {
  1448. name: "Gigamacro",
  1449. height: math.unit(160000000.0, "inches")
  1450. }
  1451. ]
  1452. )
  1453. };
  1454. pokemonMakers["Arrokuda"] = () => {
  1455. return makeCharacter(
  1456. { name: "Arrokuda" },
  1457. {
  1458. "Arrokuda": {
  1459. height: math.unit("20", "inches"),
  1460. weight: math.unit("2.2", "lbs"),
  1461. name: "Arrokuda",
  1462. image: {
  1463. source: "./media/pokemon/Arrokuda.svg"
  1464. },
  1465. rename: true
  1466. }
  1467. },
  1468. [
  1469. {
  1470. name: "Micro",
  1471. height: math.unit(2.0, "inches")
  1472. },
  1473. {
  1474. name: "Normal",
  1475. height: math.unit(20, "inches"),
  1476. default: true
  1477. },
  1478. {
  1479. name: "Macro",
  1480. height: math.unit(2000.0, "inches")
  1481. },
  1482. {
  1483. name: "Megamacro",
  1484. height: math.unit(100000.0, "inches")
  1485. },
  1486. {
  1487. name: "Gigamacro",
  1488. height: math.unit(200000000.0, "inches")
  1489. }
  1490. ]
  1491. )
  1492. };
  1493. pokemonMakers["Articuno"] = () => {
  1494. return makeCharacter(
  1495. { name: "Articuno" },
  1496. {
  1497. "Articuno": {
  1498. height: math.unit("67", "inches"),
  1499. weight: math.unit("122.1", "lbs"),
  1500. name: "Articuno",
  1501. image: {
  1502. source: "./media/pokemon/Articuno.svg"
  1503. },
  1504. rename: true
  1505. }
  1506. },
  1507. [
  1508. {
  1509. name: "Micro",
  1510. height: math.unit(6.7, "inches")
  1511. },
  1512. {
  1513. name: "Normal",
  1514. height: math.unit(67, "inches"),
  1515. default: true
  1516. },
  1517. {
  1518. name: "Macro",
  1519. height: math.unit(6700.0, "inches")
  1520. },
  1521. {
  1522. name: "Megamacro",
  1523. height: math.unit(335000.0, "inches")
  1524. },
  1525. {
  1526. name: "Gigamacro",
  1527. height: math.unit(670000000.0, "inches")
  1528. }
  1529. ]
  1530. )
  1531. };
  1532. pokemonMakers["Greninja"] = () => {
  1533. return makeCharacter(
  1534. { name: "Greninja" },
  1535. {
  1536. "Ash-Greninja": {
  1537. height: math.unit("59", "inches"),
  1538. weight: math.unit("88.2", "lbs"),
  1539. name: "Ash-Greninja",
  1540. image: {
  1541. source: "./media/pokemon/Ash-Greninja.svg"
  1542. },
  1543. rename: true
  1544. },
  1545. "Greninja": {
  1546. height: math.unit("59", "inches"),
  1547. weight: math.unit("88.2", "lbs"),
  1548. name: "Greninja",
  1549. image: {
  1550. source: "./media/pokemon/Greninja.svg"
  1551. },
  1552. rename: true
  1553. }
  1554. },
  1555. [
  1556. {
  1557. name: "Micro",
  1558. height: math.unit(5.9, "inches")
  1559. },
  1560. {
  1561. name: "Normal",
  1562. height: math.unit(59, "inches"),
  1563. default: true
  1564. },
  1565. {
  1566. name: "Macro",
  1567. height: math.unit(5900.0, "inches")
  1568. },
  1569. {
  1570. name: "Megamacro",
  1571. height: math.unit(295000.0, "inches")
  1572. },
  1573. {
  1574. name: "Gigamacro",
  1575. height: math.unit(590000000.0, "inches")
  1576. }
  1577. ]
  1578. )
  1579. };
  1580. pokemonMakers["Audino"] = () => {
  1581. return makeCharacter(
  1582. { name: "Audino" },
  1583. {
  1584. "Audino": {
  1585. height: math.unit("43", "inches"),
  1586. weight: math.unit("68.3", "lbs"),
  1587. name: "Audino",
  1588. image: {
  1589. source: "./media/pokemon/Audino.svg"
  1590. },
  1591. rename: true
  1592. },
  1593. "Mega Audino": {
  1594. height: math.unit("59", "inches"),
  1595. weight: math.unit("70.5", "lbs"),
  1596. name: "Mega Audino",
  1597. image: {
  1598. source: "./media/pokemon/Mega Audino.svg"
  1599. },
  1600. rename: true
  1601. }
  1602. },
  1603. [
  1604. {
  1605. name: "Micro",
  1606. height: math.unit(4.3, "inches")
  1607. },
  1608. {
  1609. name: "Normal",
  1610. height: math.unit(43, "inches"),
  1611. default: true
  1612. },
  1613. {
  1614. name: "Macro",
  1615. height: math.unit(4300.0, "inches")
  1616. },
  1617. {
  1618. name: "Megamacro",
  1619. height: math.unit(215000.0, "inches")
  1620. },
  1621. {
  1622. name: "Gigamacro",
  1623. height: math.unit(430000000.0, "inches")
  1624. }
  1625. ]
  1626. )
  1627. };
  1628. pokemonMakers["Aurorus"] = () => {
  1629. return makeCharacter(
  1630. { name: "Aurorus" },
  1631. {
  1632. "Aurorus": {
  1633. height: math.unit("106", "inches"),
  1634. weight: math.unit("496.0", "lbs"),
  1635. name: "Aurorus",
  1636. image: {
  1637. source: "./media/pokemon/Aurorus.svg"
  1638. },
  1639. rename: true
  1640. }
  1641. },
  1642. [
  1643. {
  1644. name: "Micro",
  1645. height: math.unit(10.6, "inches")
  1646. },
  1647. {
  1648. name: "Normal",
  1649. height: math.unit(106, "inches"),
  1650. default: true
  1651. },
  1652. {
  1653. name: "Macro",
  1654. height: math.unit(10600.0, "inches")
  1655. },
  1656. {
  1657. name: "Megamacro",
  1658. height: math.unit(530000.0, "inches")
  1659. },
  1660. {
  1661. name: "Gigamacro",
  1662. height: math.unit(1060000000.0, "inches")
  1663. }
  1664. ]
  1665. )
  1666. };
  1667. pokemonMakers["Avalugg"] = () => {
  1668. return makeCharacter(
  1669. { name: "Avalugg" },
  1670. {
  1671. "Avalugg": {
  1672. height: math.unit("79", "inches"),
  1673. weight: math.unit("1113.3", "lbs"),
  1674. name: "Avalugg",
  1675. image: {
  1676. source: "./media/pokemon/Avalugg.svg"
  1677. },
  1678. rename: true
  1679. }
  1680. },
  1681. [
  1682. {
  1683. name: "Micro",
  1684. height: math.unit(7.9, "inches")
  1685. },
  1686. {
  1687. name: "Normal",
  1688. height: math.unit(79, "inches"),
  1689. default: true
  1690. },
  1691. {
  1692. name: "Macro",
  1693. height: math.unit(7900.0, "inches")
  1694. },
  1695. {
  1696. name: "Megamacro",
  1697. height: math.unit(395000.0, "inches")
  1698. },
  1699. {
  1700. name: "Gigamacro",
  1701. height: math.unit(790000000.0, "inches")
  1702. }
  1703. ]
  1704. )
  1705. };
  1706. pokemonMakers["Axew"] = () => {
  1707. return makeCharacter(
  1708. { name: "Axew" },
  1709. {
  1710. "Axew": {
  1711. height: math.unit("24", "inches"),
  1712. weight: math.unit("39.7", "lbs"),
  1713. name: "Axew",
  1714. image: {
  1715. source: "./media/pokemon/Axew.svg"
  1716. },
  1717. rename: true
  1718. }
  1719. },
  1720. [
  1721. {
  1722. name: "Micro",
  1723. height: math.unit(2.4, "inches")
  1724. },
  1725. {
  1726. name: "Normal",
  1727. height: math.unit(24, "inches"),
  1728. default: true
  1729. },
  1730. {
  1731. name: "Macro",
  1732. height: math.unit(2400.0, "inches")
  1733. },
  1734. {
  1735. name: "Megamacro",
  1736. height: math.unit(120000.0, "inches")
  1737. },
  1738. {
  1739. name: "Gigamacro",
  1740. height: math.unit(240000000.0, "inches")
  1741. }
  1742. ]
  1743. )
  1744. };
  1745. pokemonMakers["Azelf"] = () => {
  1746. return makeCharacter(
  1747. { name: "Azelf" },
  1748. {
  1749. "Azelf": {
  1750. height: math.unit("12", "inches"),
  1751. weight: math.unit("0.7", "lbs"),
  1752. name: "Azelf",
  1753. image: {
  1754. source: "./media/pokemon/Azelf.svg"
  1755. },
  1756. rename: true
  1757. }
  1758. },
  1759. [
  1760. {
  1761. name: "Micro",
  1762. height: math.unit(1.2, "inches")
  1763. },
  1764. {
  1765. name: "Normal",
  1766. height: math.unit(12, "inches"),
  1767. default: true
  1768. },
  1769. {
  1770. name: "Macro",
  1771. height: math.unit(1200.0, "inches")
  1772. },
  1773. {
  1774. name: "Megamacro",
  1775. height: math.unit(60000.0, "inches")
  1776. },
  1777. {
  1778. name: "Gigamacro",
  1779. height: math.unit(120000000.0, "inches")
  1780. }
  1781. ]
  1782. )
  1783. };
  1784. pokemonMakers["Azumarill"] = () => {
  1785. return makeCharacter(
  1786. { name: "Azumarill" },
  1787. {
  1788. "Azumarill": {
  1789. height: math.unit("31", "inches"),
  1790. weight: math.unit("62.8", "lbs"),
  1791. name: "Azumarill",
  1792. image: {
  1793. source: "./media/pokemon/Azumarill.svg"
  1794. },
  1795. rename: true
  1796. }
  1797. },
  1798. [
  1799. {
  1800. name: "Micro",
  1801. height: math.unit(3.1, "inches")
  1802. },
  1803. {
  1804. name: "Normal",
  1805. height: math.unit(31, "inches"),
  1806. default: true
  1807. },
  1808. {
  1809. name: "Macro",
  1810. height: math.unit(3100.0, "inches")
  1811. },
  1812. {
  1813. name: "Megamacro",
  1814. height: math.unit(155000.0, "inches")
  1815. },
  1816. {
  1817. name: "Gigamacro",
  1818. height: math.unit(310000000.0, "inches")
  1819. }
  1820. ]
  1821. )
  1822. };
  1823. pokemonMakers["Azurill"] = () => {
  1824. return makeCharacter(
  1825. { name: "Azurill" },
  1826. {
  1827. "Azurill": {
  1828. height: math.unit("8", "inches"),
  1829. weight: math.unit("4.4", "lbs"),
  1830. name: "Azurill",
  1831. image: {
  1832. source: "./media/pokemon/Azurill.svg"
  1833. },
  1834. rename: true
  1835. }
  1836. },
  1837. [
  1838. {
  1839. name: "Micro",
  1840. height: math.unit(0.8, "inches")
  1841. },
  1842. {
  1843. name: "Normal",
  1844. height: math.unit(8, "inches"),
  1845. default: true
  1846. },
  1847. {
  1848. name: "Macro",
  1849. height: math.unit(800.0, "inches")
  1850. },
  1851. {
  1852. name: "Megamacro",
  1853. height: math.unit(40000.0, "inches")
  1854. },
  1855. {
  1856. name: "Gigamacro",
  1857. height: math.unit(80000000.0, "inches")
  1858. }
  1859. ]
  1860. )
  1861. };
  1862. pokemonMakers["Bagon"] = () => {
  1863. return makeCharacter(
  1864. { name: "Bagon" },
  1865. {
  1866. "Bagon": {
  1867. height: math.unit("24", "inches"),
  1868. weight: math.unit("92.8", "lbs"),
  1869. name: "Bagon",
  1870. image: {
  1871. source: "./media/pokemon/Bagon.svg"
  1872. },
  1873. rename: true
  1874. }
  1875. },
  1876. [
  1877. {
  1878. name: "Micro",
  1879. height: math.unit(2.4, "inches")
  1880. },
  1881. {
  1882. name: "Normal",
  1883. height: math.unit(24, "inches"),
  1884. default: true
  1885. },
  1886. {
  1887. name: "Macro",
  1888. height: math.unit(2400.0, "inches")
  1889. },
  1890. {
  1891. name: "Megamacro",
  1892. height: math.unit(120000.0, "inches")
  1893. },
  1894. {
  1895. name: "Gigamacro",
  1896. height: math.unit(240000000.0, "inches")
  1897. }
  1898. ]
  1899. )
  1900. };
  1901. pokemonMakers["Baltoy"] = () => {
  1902. return makeCharacter(
  1903. { name: "Baltoy" },
  1904. {
  1905. "Baltoy": {
  1906. height: math.unit("20", "inches"),
  1907. weight: math.unit("47.4", "lbs"),
  1908. name: "Baltoy",
  1909. image: {
  1910. source: "./media/pokemon/Baltoy.svg"
  1911. },
  1912. rename: true
  1913. }
  1914. },
  1915. [
  1916. {
  1917. name: "Micro",
  1918. height: math.unit(2.0, "inches")
  1919. },
  1920. {
  1921. name: "Normal",
  1922. height: math.unit(20, "inches"),
  1923. default: true
  1924. },
  1925. {
  1926. name: "Macro",
  1927. height: math.unit(2000.0, "inches")
  1928. },
  1929. {
  1930. name: "Megamacro",
  1931. height: math.unit(100000.0, "inches")
  1932. },
  1933. {
  1934. name: "Gigamacro",
  1935. height: math.unit(200000000.0, "inches")
  1936. }
  1937. ]
  1938. )
  1939. };
  1940. pokemonMakers["Banette"] = () => {
  1941. return makeCharacter(
  1942. { name: "Banette" },
  1943. {
  1944. "Banette": {
  1945. height: math.unit("43", "inches"),
  1946. weight: math.unit("27.6", "lbs"),
  1947. name: "Banette",
  1948. image: {
  1949. source: "./media/pokemon/Banette.svg"
  1950. },
  1951. rename: true
  1952. },
  1953. "Mega Banette": {
  1954. height: math.unit("47", "inches"),
  1955. weight: math.unit("28.7", "lbs"),
  1956. name: "Mega Banette",
  1957. image: {
  1958. source: "./media/pokemon/Mega Banette.svg"
  1959. },
  1960. rename: true
  1961. }
  1962. },
  1963. [
  1964. {
  1965. name: "Micro",
  1966. height: math.unit(4.3, "inches")
  1967. },
  1968. {
  1969. name: "Normal",
  1970. height: math.unit(43, "inches"),
  1971. default: true
  1972. },
  1973. {
  1974. name: "Macro",
  1975. height: math.unit(4300.0, "inches")
  1976. },
  1977. {
  1978. name: "Megamacro",
  1979. height: math.unit(215000.0, "inches")
  1980. },
  1981. {
  1982. name: "Gigamacro",
  1983. height: math.unit(430000000.0, "inches")
  1984. }
  1985. ]
  1986. )
  1987. };
  1988. pokemonMakers["Barbaracle"] = () => {
  1989. return makeCharacter(
  1990. { name: "Barbaracle" },
  1991. {
  1992. "Barbaracle": {
  1993. height: math.unit("51", "inches"),
  1994. weight: math.unit("211.6", "lbs"),
  1995. name: "Barbaracle",
  1996. image: {
  1997. source: "./media/pokemon/Barbaracle.svg"
  1998. },
  1999. rename: true
  2000. }
  2001. },
  2002. [
  2003. {
  2004. name: "Micro",
  2005. height: math.unit(5.1, "inches")
  2006. },
  2007. {
  2008. name: "Normal",
  2009. height: math.unit(51, "inches"),
  2010. default: true
  2011. },
  2012. {
  2013. name: "Macro",
  2014. height: math.unit(5100.0, "inches")
  2015. },
  2016. {
  2017. name: "Megamacro",
  2018. height: math.unit(255000.0, "inches")
  2019. },
  2020. {
  2021. name: "Gigamacro",
  2022. height: math.unit(510000000.0, "inches")
  2023. }
  2024. ]
  2025. )
  2026. };
  2027. pokemonMakers["Barboach"] = () => {
  2028. return makeCharacter(
  2029. { name: "Barboach" },
  2030. {
  2031. "Barboach": {
  2032. height: math.unit("16", "inches"),
  2033. weight: math.unit("4.2", "lbs"),
  2034. name: "Barboach",
  2035. image: {
  2036. source: "./media/pokemon/Barboach.svg"
  2037. },
  2038. rename: true
  2039. }
  2040. },
  2041. [
  2042. {
  2043. name: "Micro",
  2044. height: math.unit(1.6, "inches")
  2045. },
  2046. {
  2047. name: "Normal",
  2048. height: math.unit(16, "inches"),
  2049. default: true
  2050. },
  2051. {
  2052. name: "Macro",
  2053. height: math.unit(1600.0, "inches")
  2054. },
  2055. {
  2056. name: "Megamacro",
  2057. height: math.unit(80000.0, "inches")
  2058. },
  2059. {
  2060. name: "Gigamacro",
  2061. height: math.unit(160000000.0, "inches")
  2062. }
  2063. ]
  2064. )
  2065. };
  2066. pokemonMakers["Barraskewda"] = () => {
  2067. return makeCharacter(
  2068. { name: "Barraskewda" },
  2069. {
  2070. "Barraskewda": {
  2071. height: math.unit("51", "inches"),
  2072. weight: math.unit("66.1", "lbs"),
  2073. name: "Barraskewda",
  2074. image: {
  2075. source: "./media/pokemon/Barraskewda.svg"
  2076. },
  2077. rename: true
  2078. }
  2079. },
  2080. [
  2081. {
  2082. name: "Micro",
  2083. height: math.unit(5.1, "inches")
  2084. },
  2085. {
  2086. name: "Normal",
  2087. height: math.unit(51, "inches"),
  2088. default: true
  2089. },
  2090. {
  2091. name: "Macro",
  2092. height: math.unit(5100.0, "inches")
  2093. },
  2094. {
  2095. name: "Megamacro",
  2096. height: math.unit(255000.0, "inches")
  2097. },
  2098. {
  2099. name: "Gigamacro",
  2100. height: math.unit(510000000.0, "inches")
  2101. }
  2102. ]
  2103. )
  2104. };
  2105. pokemonMakers["Basculin"] = () => {
  2106. return makeCharacter(
  2107. { name: "Basculin" },
  2108. {
  2109. "Blue-Striped Form": {
  2110. height: math.unit("39", "inches"),
  2111. weight: math.unit("39.7", "lbs"),
  2112. name: "Blue-Striped Form",
  2113. image: {
  2114. source: "./media/pokemon/Basculin - Blue-Striped Form.svg"
  2115. },
  2116. rename: true
  2117. },
  2118. "Red-Striped Form": {
  2119. height: math.unit("39", "inches"),
  2120. weight: math.unit("39.7", "lbs"),
  2121. name: "Red-Striped Form",
  2122. image: {
  2123. source: "./media/pokemon/Basculin - Red-Striped Form.svg"
  2124. },
  2125. rename: true
  2126. }
  2127. },
  2128. [
  2129. {
  2130. name: "Micro",
  2131. height: math.unit(3.9, "inches")
  2132. },
  2133. {
  2134. name: "Normal",
  2135. height: math.unit(39, "inches"),
  2136. default: true
  2137. },
  2138. {
  2139. name: "Macro",
  2140. height: math.unit(3900.0, "inches")
  2141. },
  2142. {
  2143. name: "Megamacro",
  2144. height: math.unit(195000.0, "inches")
  2145. },
  2146. {
  2147. name: "Gigamacro",
  2148. height: math.unit(390000000.0, "inches")
  2149. }
  2150. ]
  2151. )
  2152. };
  2153. pokemonMakers["Bastiodon"] = () => {
  2154. return makeCharacter(
  2155. { name: "Bastiodon" },
  2156. {
  2157. "Bastiodon": {
  2158. height: math.unit("51", "inches"),
  2159. weight: math.unit("329.6", "lbs"),
  2160. name: "Bastiodon",
  2161. image: {
  2162. source: "./media/pokemon/Bastiodon.svg"
  2163. },
  2164. rename: true
  2165. }
  2166. },
  2167. [
  2168. {
  2169. name: "Micro",
  2170. height: math.unit(5.1, "inches")
  2171. },
  2172. {
  2173. name: "Normal",
  2174. height: math.unit(51, "inches"),
  2175. default: true
  2176. },
  2177. {
  2178. name: "Macro",
  2179. height: math.unit(5100.0, "inches")
  2180. },
  2181. {
  2182. name: "Megamacro",
  2183. height: math.unit(255000.0, "inches")
  2184. },
  2185. {
  2186. name: "Gigamacro",
  2187. height: math.unit(510000000.0, "inches")
  2188. }
  2189. ]
  2190. )
  2191. };
  2192. pokemonMakers["Bayleef"] = () => {
  2193. return makeCharacter(
  2194. { name: "Bayleef" },
  2195. {
  2196. "Bayleef": {
  2197. height: math.unit("47", "inches"),
  2198. weight: math.unit("34.8", "lbs"),
  2199. name: "Bayleef",
  2200. image: {
  2201. source: "./media/pokemon/Bayleef.svg"
  2202. },
  2203. rename: true
  2204. }
  2205. },
  2206. [
  2207. {
  2208. name: "Micro",
  2209. height: math.unit(4.7, "inches")
  2210. },
  2211. {
  2212. name: "Normal",
  2213. height: math.unit(47, "inches"),
  2214. default: true
  2215. },
  2216. {
  2217. name: "Macro",
  2218. height: math.unit(4700.0, "inches")
  2219. },
  2220. {
  2221. name: "Megamacro",
  2222. height: math.unit(235000.0, "inches")
  2223. },
  2224. {
  2225. name: "Gigamacro",
  2226. height: math.unit(470000000.0, "inches")
  2227. }
  2228. ]
  2229. )
  2230. };
  2231. pokemonMakers["Beartic"] = () => {
  2232. return makeCharacter(
  2233. { name: "Beartic" },
  2234. {
  2235. "Beartic": {
  2236. height: math.unit("102", "inches"),
  2237. weight: math.unit("573.2", "lbs"),
  2238. name: "Beartic",
  2239. image: {
  2240. source: "./media/pokemon/Beartic.svg"
  2241. },
  2242. rename: true
  2243. }
  2244. },
  2245. [
  2246. {
  2247. name: "Micro",
  2248. height: math.unit(10.2, "inches")
  2249. },
  2250. {
  2251. name: "Normal",
  2252. height: math.unit(102, "inches"),
  2253. default: true
  2254. },
  2255. {
  2256. name: "Macro",
  2257. height: math.unit(10200.0, "inches")
  2258. },
  2259. {
  2260. name: "Megamacro",
  2261. height: math.unit(510000.0, "inches")
  2262. },
  2263. {
  2264. name: "Gigamacro",
  2265. height: math.unit(1020000000.0, "inches")
  2266. }
  2267. ]
  2268. )
  2269. };
  2270. pokemonMakers["Beautifly"] = () => {
  2271. return makeCharacter(
  2272. { name: "Beautifly" },
  2273. {
  2274. "Beautifly": {
  2275. height: math.unit("39", "inches"),
  2276. weight: math.unit("62.6", "lbs"),
  2277. name: "Beautifly",
  2278. image: {
  2279. source: "./media/pokemon/Beautifly.svg"
  2280. },
  2281. rename: true
  2282. }
  2283. },
  2284. [
  2285. {
  2286. name: "Micro",
  2287. height: math.unit(3.9, "inches")
  2288. },
  2289. {
  2290. name: "Normal",
  2291. height: math.unit(39, "inches"),
  2292. default: true
  2293. },
  2294. {
  2295. name: "Macro",
  2296. height: math.unit(3900.0, "inches")
  2297. },
  2298. {
  2299. name: "Megamacro",
  2300. height: math.unit(195000.0, "inches")
  2301. },
  2302. {
  2303. name: "Gigamacro",
  2304. height: math.unit(390000000.0, "inches")
  2305. }
  2306. ]
  2307. )
  2308. };
  2309. pokemonMakers["Beedrill"] = () => {
  2310. return makeCharacter(
  2311. { name: "Beedrill" },
  2312. {
  2313. "Beedrill": {
  2314. height: math.unit("39", "inches"),
  2315. weight: math.unit("65.0", "lbs"),
  2316. name: "Beedrill",
  2317. image: {
  2318. source: "./media/pokemon/Beedrill.svg"
  2319. },
  2320. rename: true
  2321. },
  2322. "Mega Beedrill": {
  2323. height: math.unit("55", "inches"),
  2324. weight: math.unit("89.3", "lbs"),
  2325. name: "Mega Beedrill",
  2326. image: {
  2327. source: "./media/pokemon/Mega Beedrill.svg"
  2328. },
  2329. rename: true
  2330. }
  2331. },
  2332. [
  2333. {
  2334. name: "Micro",
  2335. height: math.unit(3.9, "inches")
  2336. },
  2337. {
  2338. name: "Normal",
  2339. height: math.unit(39, "inches"),
  2340. default: true
  2341. },
  2342. {
  2343. name: "Macro",
  2344. height: math.unit(3900.0, "inches")
  2345. },
  2346. {
  2347. name: "Megamacro",
  2348. height: math.unit(195000.0, "inches")
  2349. },
  2350. {
  2351. name: "Gigamacro",
  2352. height: math.unit(390000000.0, "inches")
  2353. }
  2354. ]
  2355. )
  2356. };
  2357. pokemonMakers["Beheeyem"] = () => {
  2358. return makeCharacter(
  2359. { name: "Beheeyem" },
  2360. {
  2361. "Beheeyem": {
  2362. height: math.unit("39", "inches"),
  2363. weight: math.unit("76.1", "lbs"),
  2364. name: "Beheeyem",
  2365. image: {
  2366. source: "./media/pokemon/Beheeyem.svg"
  2367. },
  2368. rename: true
  2369. }
  2370. },
  2371. [
  2372. {
  2373. name: "Micro",
  2374. height: math.unit(3.9, "inches")
  2375. },
  2376. {
  2377. name: "Normal",
  2378. height: math.unit(39, "inches"),
  2379. default: true
  2380. },
  2381. {
  2382. name: "Macro",
  2383. height: math.unit(3900.0, "inches")
  2384. },
  2385. {
  2386. name: "Megamacro",
  2387. height: math.unit(195000.0, "inches")
  2388. },
  2389. {
  2390. name: "Gigamacro",
  2391. height: math.unit(390000000.0, "inches")
  2392. }
  2393. ]
  2394. )
  2395. };
  2396. pokemonMakers["Beldum"] = () => {
  2397. return makeCharacter(
  2398. { name: "Beldum" },
  2399. {
  2400. "Beldum": {
  2401. height: math.unit("24", "inches"),
  2402. weight: math.unit("209.9", "lbs"),
  2403. name: "Beldum",
  2404. image: {
  2405. source: "./media/pokemon/Beldum.svg"
  2406. },
  2407. rename: true
  2408. }
  2409. },
  2410. [
  2411. {
  2412. name: "Micro",
  2413. height: math.unit(2.4, "inches")
  2414. },
  2415. {
  2416. name: "Normal",
  2417. height: math.unit(24, "inches"),
  2418. default: true
  2419. },
  2420. {
  2421. name: "Macro",
  2422. height: math.unit(2400.0, "inches")
  2423. },
  2424. {
  2425. name: "Megamacro",
  2426. height: math.unit(120000.0, "inches")
  2427. },
  2428. {
  2429. name: "Gigamacro",
  2430. height: math.unit(240000000.0, "inches")
  2431. }
  2432. ]
  2433. )
  2434. };
  2435. pokemonMakers["Bellossom"] = () => {
  2436. return makeCharacter(
  2437. { name: "Bellossom" },
  2438. {
  2439. "Bellossom": {
  2440. height: math.unit("16", "inches"),
  2441. weight: math.unit("12.8", "lbs"),
  2442. name: "Bellossom",
  2443. image: {
  2444. source: "./media/pokemon/Bellossom.svg"
  2445. },
  2446. rename: true
  2447. }
  2448. },
  2449. [
  2450. {
  2451. name: "Micro",
  2452. height: math.unit(1.6, "inches")
  2453. },
  2454. {
  2455. name: "Normal",
  2456. height: math.unit(16, "inches"),
  2457. default: true
  2458. },
  2459. {
  2460. name: "Macro",
  2461. height: math.unit(1600.0, "inches")
  2462. },
  2463. {
  2464. name: "Megamacro",
  2465. height: math.unit(80000.0, "inches")
  2466. },
  2467. {
  2468. name: "Gigamacro",
  2469. height: math.unit(160000000.0, "inches")
  2470. }
  2471. ]
  2472. )
  2473. };
  2474. pokemonMakers["Bellsprout"] = () => {
  2475. return makeCharacter(
  2476. { name: "Bellsprout" },
  2477. {
  2478. "Bellsprout": {
  2479. height: math.unit("28", "inches"),
  2480. weight: math.unit("8.8", "lbs"),
  2481. name: "Bellsprout",
  2482. image: {
  2483. source: "./media/pokemon/Bellsprout.svg"
  2484. },
  2485. rename: true
  2486. }
  2487. },
  2488. [
  2489. {
  2490. name: "Micro",
  2491. height: math.unit(2.8, "inches")
  2492. },
  2493. {
  2494. name: "Normal",
  2495. height: math.unit(28, "inches"),
  2496. default: true
  2497. },
  2498. {
  2499. name: "Macro",
  2500. height: math.unit(2800.0, "inches")
  2501. },
  2502. {
  2503. name: "Megamacro",
  2504. height: math.unit(140000.0, "inches")
  2505. },
  2506. {
  2507. name: "Gigamacro",
  2508. height: math.unit(280000000.0, "inches")
  2509. }
  2510. ]
  2511. )
  2512. };
  2513. pokemonMakers["Bergmite"] = () => {
  2514. return makeCharacter(
  2515. { name: "Bergmite" },
  2516. {
  2517. "Bergmite": {
  2518. height: math.unit("39", "inches"),
  2519. weight: math.unit("219.4", "lbs"),
  2520. name: "Bergmite",
  2521. image: {
  2522. source: "./media/pokemon/Bergmite.svg"
  2523. },
  2524. rename: true
  2525. }
  2526. },
  2527. [
  2528. {
  2529. name: "Micro",
  2530. height: math.unit(3.9, "inches")
  2531. },
  2532. {
  2533. name: "Normal",
  2534. height: math.unit(39, "inches"),
  2535. default: true
  2536. },
  2537. {
  2538. name: "Macro",
  2539. height: math.unit(3900.0, "inches")
  2540. },
  2541. {
  2542. name: "Megamacro",
  2543. height: math.unit(195000.0, "inches")
  2544. },
  2545. {
  2546. name: "Gigamacro",
  2547. height: math.unit(390000000.0, "inches")
  2548. }
  2549. ]
  2550. )
  2551. };
  2552. pokemonMakers["Bewear"] = () => {
  2553. return makeCharacter(
  2554. { name: "Bewear" },
  2555. {
  2556. "Bewear": {
  2557. height: math.unit("83", "inches"),
  2558. weight: math.unit("297.6", "lbs"),
  2559. name: "Bewear",
  2560. image: {
  2561. source: "./media/pokemon/Bewear.svg"
  2562. },
  2563. rename: true
  2564. }
  2565. },
  2566. [
  2567. {
  2568. name: "Micro",
  2569. height: math.unit(8.3, "inches")
  2570. },
  2571. {
  2572. name: "Normal",
  2573. height: math.unit(83, "inches"),
  2574. default: true
  2575. },
  2576. {
  2577. name: "Macro",
  2578. height: math.unit(8300.0, "inches")
  2579. },
  2580. {
  2581. name: "Megamacro",
  2582. height: math.unit(415000.0, "inches")
  2583. },
  2584. {
  2585. name: "Gigamacro",
  2586. height: math.unit(830000000.0, "inches")
  2587. }
  2588. ]
  2589. )
  2590. };
  2591. pokemonMakers["Bibarel"] = () => {
  2592. return makeCharacter(
  2593. { name: "Bibarel" },
  2594. {
  2595. "Bibarel": {
  2596. height: math.unit("39", "inches"),
  2597. weight: math.unit("69.4", "lbs"),
  2598. name: "Bibarel",
  2599. image: {
  2600. source: "./media/pokemon/Bibarel.svg"
  2601. },
  2602. rename: true
  2603. }
  2604. },
  2605. [
  2606. {
  2607. name: "Micro",
  2608. height: math.unit(3.9, "inches")
  2609. },
  2610. {
  2611. name: "Normal",
  2612. height: math.unit(39, "inches"),
  2613. default: true
  2614. },
  2615. {
  2616. name: "Macro",
  2617. height: math.unit(3900.0, "inches")
  2618. },
  2619. {
  2620. name: "Megamacro",
  2621. height: math.unit(195000.0, "inches")
  2622. },
  2623. {
  2624. name: "Gigamacro",
  2625. height: math.unit(390000000.0, "inches")
  2626. }
  2627. ]
  2628. )
  2629. };
  2630. pokemonMakers["Bidoof"] = () => {
  2631. return makeCharacter(
  2632. { name: "Bidoof" },
  2633. {
  2634. "Bidoof": {
  2635. height: math.unit("20", "inches"),
  2636. weight: math.unit("44.1", "lbs"),
  2637. name: "Bidoof",
  2638. image: {
  2639. source: "./media/pokemon/Bidoof.svg"
  2640. },
  2641. rename: true
  2642. }
  2643. },
  2644. [
  2645. {
  2646. name: "Micro",
  2647. height: math.unit(2.0, "inches")
  2648. },
  2649. {
  2650. name: "Normal",
  2651. height: math.unit(20, "inches"),
  2652. default: true
  2653. },
  2654. {
  2655. name: "Macro",
  2656. height: math.unit(2000.0, "inches")
  2657. },
  2658. {
  2659. name: "Megamacro",
  2660. height: math.unit(100000.0, "inches")
  2661. },
  2662. {
  2663. name: "Gigamacro",
  2664. height: math.unit(200000000.0, "inches")
  2665. }
  2666. ]
  2667. )
  2668. };
  2669. pokemonMakers["Binacle"] = () => {
  2670. return makeCharacter(
  2671. { name: "Binacle" },
  2672. {
  2673. "Binacle": {
  2674. height: math.unit("20", "inches"),
  2675. weight: math.unit("68.3", "lbs"),
  2676. name: "Binacle",
  2677. image: {
  2678. source: "./media/pokemon/Binacle.svg"
  2679. },
  2680. rename: true
  2681. }
  2682. },
  2683. [
  2684. {
  2685. name: "Micro",
  2686. height: math.unit(2.0, "inches")
  2687. },
  2688. {
  2689. name: "Normal",
  2690. height: math.unit(20, "inches"),
  2691. default: true
  2692. },
  2693. {
  2694. name: "Macro",
  2695. height: math.unit(2000.0, "inches")
  2696. },
  2697. {
  2698. name: "Megamacro",
  2699. height: math.unit(100000.0, "inches")
  2700. },
  2701. {
  2702. name: "Gigamacro",
  2703. height: math.unit(200000000.0, "inches")
  2704. }
  2705. ]
  2706. )
  2707. };
  2708. pokemonMakers["Bisharp"] = () => {
  2709. return makeCharacter(
  2710. { name: "Bisharp" },
  2711. {
  2712. "Bisharp": {
  2713. height: math.unit("63", "inches"),
  2714. weight: math.unit("154.3", "lbs"),
  2715. name: "Bisharp",
  2716. image: {
  2717. source: "./media/pokemon/Bisharp.svg"
  2718. },
  2719. rename: true
  2720. }
  2721. },
  2722. [
  2723. {
  2724. name: "Micro",
  2725. height: math.unit(6.3, "inches")
  2726. },
  2727. {
  2728. name: "Normal",
  2729. height: math.unit(63, "inches"),
  2730. default: true
  2731. },
  2732. {
  2733. name: "Macro",
  2734. height: math.unit(6300.0, "inches")
  2735. },
  2736. {
  2737. name: "Megamacro",
  2738. height: math.unit(315000.0, "inches")
  2739. },
  2740. {
  2741. name: "Gigamacro",
  2742. height: math.unit(630000000.0, "inches")
  2743. }
  2744. ]
  2745. )
  2746. };
  2747. pokemonMakers["Blacephalon"] = () => {
  2748. return makeCharacter(
  2749. { name: "Blacephalon" },
  2750. {
  2751. "Blacephalon": {
  2752. height: math.unit("71", "inches"),
  2753. weight: math.unit("28.7", "lbs"),
  2754. name: "Blacephalon",
  2755. image: {
  2756. source: "./media/pokemon/Blacephalon.svg"
  2757. },
  2758. rename: true
  2759. }
  2760. },
  2761. [
  2762. {
  2763. name: "Micro",
  2764. height: math.unit(7.1, "inches")
  2765. },
  2766. {
  2767. name: "Normal",
  2768. height: math.unit(71, "inches"),
  2769. default: true
  2770. },
  2771. {
  2772. name: "Macro",
  2773. height: math.unit(7100.0, "inches")
  2774. },
  2775. {
  2776. name: "Megamacro",
  2777. height: math.unit(355000.0, "inches")
  2778. },
  2779. {
  2780. name: "Gigamacro",
  2781. height: math.unit(710000000.0, "inches")
  2782. }
  2783. ]
  2784. )
  2785. };
  2786. pokemonMakers["Kyurem"] = () => {
  2787. return makeCharacter(
  2788. { name: "Kyurem" },
  2789. {
  2790. "Black Kyurem": {
  2791. height: math.unit("130", "inches"),
  2792. weight: math.unit("716.5", "lbs"),
  2793. name: "Black Kyurem",
  2794. image: {
  2795. source: "./media/pokemon/Black Kyurem.svg"
  2796. },
  2797. rename: true
  2798. },
  2799. "Kyurem": {
  2800. height: math.unit("118", "inches"),
  2801. weight: math.unit("716.5", "lbs"),
  2802. name: "Kyurem",
  2803. image: {
  2804. source: "./media/pokemon/Kyurem.svg"
  2805. },
  2806. rename: true
  2807. },
  2808. "White Kyurem": {
  2809. height: math.unit("142", "inches"),
  2810. weight: math.unit("716.5", "lbs"),
  2811. name: "White Kyurem",
  2812. image: {
  2813. source: "./media/pokemon/White Kyurem.svg"
  2814. },
  2815. rename: true
  2816. }
  2817. },
  2818. [
  2819. {
  2820. name: "Micro",
  2821. height: math.unit(13.0, "inches")
  2822. },
  2823. {
  2824. name: "Normal",
  2825. height: math.unit(130, "inches"),
  2826. default: true
  2827. },
  2828. {
  2829. name: "Macro",
  2830. height: math.unit(13000.0, "inches")
  2831. },
  2832. {
  2833. name: "Megamacro",
  2834. height: math.unit(650000.0, "inches")
  2835. },
  2836. {
  2837. name: "Gigamacro",
  2838. height: math.unit(1300000000.0, "inches")
  2839. }
  2840. ]
  2841. )
  2842. };
  2843. pokemonMakers["Blastoise"] = () => {
  2844. return makeCharacter(
  2845. { name: "Blastoise" },
  2846. {
  2847. "Blastoise": {
  2848. height: math.unit("63", "inches"),
  2849. weight: math.unit("188.5", "lbs"),
  2850. name: "Blastoise",
  2851. image: {
  2852. source: "./media/pokemon/Blastoise.svg"
  2853. },
  2854. rename: true
  2855. },
  2856. "Mega Blastoise": {
  2857. height: math.unit("63", "inches"),
  2858. weight: math.unit("222.9", "lbs"),
  2859. name: "Mega Blastoise",
  2860. image: {
  2861. source: "./media/pokemon/Mega Blastoise.svg"
  2862. },
  2863. rename: true
  2864. }
  2865. },
  2866. [
  2867. {
  2868. name: "Micro",
  2869. height: math.unit(6.3, "inches")
  2870. },
  2871. {
  2872. name: "Normal",
  2873. height: math.unit(63, "inches"),
  2874. default: true
  2875. },
  2876. {
  2877. name: "Macro",
  2878. height: math.unit(6300.0, "inches")
  2879. },
  2880. {
  2881. name: "Megamacro",
  2882. height: math.unit(315000.0, "inches")
  2883. },
  2884. {
  2885. name: "Gigamacro",
  2886. height: math.unit(630000000.0, "inches")
  2887. }
  2888. ]
  2889. )
  2890. };
  2891. pokemonMakers["Blaziken"] = () => {
  2892. return makeCharacter(
  2893. { name: "Blaziken" },
  2894. {
  2895. "Blaziken": {
  2896. height: math.unit("75", "inches"),
  2897. weight: math.unit("114.6", "lbs"),
  2898. name: "Blaziken",
  2899. image: {
  2900. source: "./media/pokemon/Blaziken.svg"
  2901. },
  2902. rename: true
  2903. },
  2904. "Mega Blaziken": {
  2905. height: math.unit("75", "inches"),
  2906. weight: math.unit("114.6", "lbs"),
  2907. name: "Mega Blaziken",
  2908. image: {
  2909. source: "./media/pokemon/Mega Blaziken.svg"
  2910. },
  2911. rename: true
  2912. }
  2913. },
  2914. [
  2915. {
  2916. name: "Micro",
  2917. height: math.unit(7.5, "inches")
  2918. },
  2919. {
  2920. name: "Normal",
  2921. height: math.unit(75, "inches"),
  2922. default: true
  2923. },
  2924. {
  2925. name: "Macro",
  2926. height: math.unit(7500.0, "inches")
  2927. },
  2928. {
  2929. name: "Megamacro",
  2930. height: math.unit(375000.0, "inches")
  2931. },
  2932. {
  2933. name: "Gigamacro",
  2934. height: math.unit(750000000.0, "inches")
  2935. }
  2936. ]
  2937. )
  2938. };
  2939. pokemonMakers["Blipbug"] = () => {
  2940. return makeCharacter(
  2941. { name: "Blipbug" },
  2942. {
  2943. "Blipbug": {
  2944. height: math.unit("16", "inches"),
  2945. weight: math.unit("17.6", "lbs"),
  2946. name: "Blipbug",
  2947. image: {
  2948. source: "./media/pokemon/Blipbug.svg"
  2949. },
  2950. rename: true
  2951. }
  2952. },
  2953. [
  2954. {
  2955. name: "Micro",
  2956. height: math.unit(1.6, "inches")
  2957. },
  2958. {
  2959. name: "Normal",
  2960. height: math.unit(16, "inches"),
  2961. default: true
  2962. },
  2963. {
  2964. name: "Macro",
  2965. height: math.unit(1600.0, "inches")
  2966. },
  2967. {
  2968. name: "Megamacro",
  2969. height: math.unit(80000.0, "inches")
  2970. },
  2971. {
  2972. name: "Gigamacro",
  2973. height: math.unit(160000000.0, "inches")
  2974. }
  2975. ]
  2976. )
  2977. };
  2978. pokemonMakers["Blissey"] = () => {
  2979. return makeCharacter(
  2980. { name: "Blissey" },
  2981. {
  2982. "Blissey": {
  2983. height: math.unit("59", "inches"),
  2984. weight: math.unit("103.2", "lbs"),
  2985. name: "Blissey",
  2986. image: {
  2987. source: "./media/pokemon/Blissey.svg"
  2988. },
  2989. rename: true
  2990. }
  2991. },
  2992. [
  2993. {
  2994. name: "Micro",
  2995. height: math.unit(5.9, "inches")
  2996. },
  2997. {
  2998. name: "Normal",
  2999. height: math.unit(59, "inches"),
  3000. default: true
  3001. },
  3002. {
  3003. name: "Macro",
  3004. height: math.unit(5900.0, "inches")
  3005. },
  3006. {
  3007. name: "Megamacro",
  3008. height: math.unit(295000.0, "inches")
  3009. },
  3010. {
  3011. name: "Gigamacro",
  3012. height: math.unit(590000000.0, "inches")
  3013. }
  3014. ]
  3015. )
  3016. };
  3017. pokemonMakers["Blitzle"] = () => {
  3018. return makeCharacter(
  3019. { name: "Blitzle" },
  3020. {
  3021. "Blitzle": {
  3022. height: math.unit("31", "inches"),
  3023. weight: math.unit("65.7", "lbs"),
  3024. name: "Blitzle",
  3025. image: {
  3026. source: "./media/pokemon/Blitzle.svg"
  3027. },
  3028. rename: true
  3029. }
  3030. },
  3031. [
  3032. {
  3033. name: "Micro",
  3034. height: math.unit(3.1, "inches")
  3035. },
  3036. {
  3037. name: "Normal",
  3038. height: math.unit(31, "inches"),
  3039. default: true
  3040. },
  3041. {
  3042. name: "Macro",
  3043. height: math.unit(3100.0, "inches")
  3044. },
  3045. {
  3046. name: "Megamacro",
  3047. height: math.unit(155000.0, "inches")
  3048. },
  3049. {
  3050. name: "Gigamacro",
  3051. height: math.unit(310000000.0, "inches")
  3052. }
  3053. ]
  3054. )
  3055. };
  3056. pokemonMakers["Boldore"] = () => {
  3057. return makeCharacter(
  3058. { name: "Boldore" },
  3059. {
  3060. "Boldore": {
  3061. height: math.unit("35", "inches"),
  3062. weight: math.unit("224.9", "lbs"),
  3063. name: "Boldore",
  3064. image: {
  3065. source: "./media/pokemon/Boldore.svg"
  3066. },
  3067. rename: true
  3068. }
  3069. },
  3070. [
  3071. {
  3072. name: "Micro",
  3073. height: math.unit(3.5, "inches")
  3074. },
  3075. {
  3076. name: "Normal",
  3077. height: math.unit(35, "inches"),
  3078. default: true
  3079. },
  3080. {
  3081. name: "Macro",
  3082. height: math.unit(3500.0, "inches")
  3083. },
  3084. {
  3085. name: "Megamacro",
  3086. height: math.unit(175000.0, "inches")
  3087. },
  3088. {
  3089. name: "Gigamacro",
  3090. height: math.unit(350000000.0, "inches")
  3091. }
  3092. ]
  3093. )
  3094. };
  3095. pokemonMakers["Boltund"] = () => {
  3096. return makeCharacter(
  3097. { name: "Boltund" },
  3098. {
  3099. "Boltund": {
  3100. height: math.unit("39", "inches"),
  3101. weight: math.unit("75.0", "lbs"),
  3102. name: "Boltund",
  3103. image: {
  3104. source: "./media/pokemon/Boltund.svg"
  3105. },
  3106. rename: true
  3107. }
  3108. },
  3109. [
  3110. {
  3111. name: "Micro",
  3112. height: math.unit(3.9, "inches")
  3113. },
  3114. {
  3115. name: "Normal",
  3116. height: math.unit(39, "inches"),
  3117. default: true
  3118. },
  3119. {
  3120. name: "Macro",
  3121. height: math.unit(3900.0, "inches")
  3122. },
  3123. {
  3124. name: "Megamacro",
  3125. height: math.unit(195000.0, "inches")
  3126. },
  3127. {
  3128. name: "Gigamacro",
  3129. height: math.unit(390000000.0, "inches")
  3130. }
  3131. ]
  3132. )
  3133. };
  3134. pokemonMakers["Bonsly"] = () => {
  3135. return makeCharacter(
  3136. { name: "Bonsly" },
  3137. {
  3138. "Bonsly": {
  3139. height: math.unit("20", "inches"),
  3140. weight: math.unit("33.1", "lbs"),
  3141. name: "Bonsly",
  3142. image: {
  3143. source: "./media/pokemon/Bonsly.svg"
  3144. },
  3145. rename: true
  3146. }
  3147. },
  3148. [
  3149. {
  3150. name: "Micro",
  3151. height: math.unit(2.0, "inches")
  3152. },
  3153. {
  3154. name: "Normal",
  3155. height: math.unit(20, "inches"),
  3156. default: true
  3157. },
  3158. {
  3159. name: "Macro",
  3160. height: math.unit(2000.0, "inches")
  3161. },
  3162. {
  3163. name: "Megamacro",
  3164. height: math.unit(100000.0, "inches")
  3165. },
  3166. {
  3167. name: "Gigamacro",
  3168. height: math.unit(200000000.0, "inches")
  3169. }
  3170. ]
  3171. )
  3172. };
  3173. pokemonMakers["Bouffalant"] = () => {
  3174. return makeCharacter(
  3175. { name: "Bouffalant" },
  3176. {
  3177. "Bouffalant": {
  3178. height: math.unit("63", "inches"),
  3179. weight: math.unit("208.6", "lbs"),
  3180. name: "Bouffalant",
  3181. image: {
  3182. source: "./media/pokemon/Bouffalant.svg"
  3183. },
  3184. rename: true
  3185. }
  3186. },
  3187. [
  3188. {
  3189. name: "Micro",
  3190. height: math.unit(6.3, "inches")
  3191. },
  3192. {
  3193. name: "Normal",
  3194. height: math.unit(63, "inches"),
  3195. default: true
  3196. },
  3197. {
  3198. name: "Macro",
  3199. height: math.unit(6300.0, "inches")
  3200. },
  3201. {
  3202. name: "Megamacro",
  3203. height: math.unit(315000.0, "inches")
  3204. },
  3205. {
  3206. name: "Gigamacro",
  3207. height: math.unit(630000000.0, "inches")
  3208. }
  3209. ]
  3210. )
  3211. };
  3212. pokemonMakers["Bounsweet"] = () => {
  3213. return makeCharacter(
  3214. { name: "Bounsweet" },
  3215. {
  3216. "Bounsweet": {
  3217. height: math.unit("12", "inches"),
  3218. weight: math.unit("7.1", "lbs"),
  3219. name: "Bounsweet",
  3220. image: {
  3221. source: "./media/pokemon/Bounsweet.svg"
  3222. },
  3223. rename: true
  3224. }
  3225. },
  3226. [
  3227. {
  3228. name: "Micro",
  3229. height: math.unit(1.2, "inches")
  3230. },
  3231. {
  3232. name: "Normal",
  3233. height: math.unit(12, "inches"),
  3234. default: true
  3235. },
  3236. {
  3237. name: "Macro",
  3238. height: math.unit(1200.0, "inches")
  3239. },
  3240. {
  3241. name: "Megamacro",
  3242. height: math.unit(60000.0, "inches")
  3243. },
  3244. {
  3245. name: "Gigamacro",
  3246. height: math.unit(120000000.0, "inches")
  3247. }
  3248. ]
  3249. )
  3250. };
  3251. pokemonMakers["Braixen"] = () => {
  3252. return makeCharacter(
  3253. { name: "Braixen" },
  3254. {
  3255. "Braixen": {
  3256. height: math.unit("39", "inches"),
  3257. weight: math.unit("32.0", "lbs"),
  3258. name: "Braixen",
  3259. image: {
  3260. source: "./media/pokemon/Braixen.svg"
  3261. },
  3262. rename: true
  3263. }
  3264. },
  3265. [
  3266. {
  3267. name: "Micro",
  3268. height: math.unit(3.9, "inches")
  3269. },
  3270. {
  3271. name: "Normal",
  3272. height: math.unit(39, "inches"),
  3273. default: true
  3274. },
  3275. {
  3276. name: "Macro",
  3277. height: math.unit(3900.0, "inches")
  3278. },
  3279. {
  3280. name: "Megamacro",
  3281. height: math.unit(195000.0, "inches")
  3282. },
  3283. {
  3284. name: "Gigamacro",
  3285. height: math.unit(390000000.0, "inches")
  3286. }
  3287. ]
  3288. )
  3289. };
  3290. pokemonMakers["Braviary"] = () => {
  3291. return makeCharacter(
  3292. { name: "Braviary" },
  3293. {
  3294. "Braviary": {
  3295. height: math.unit("59", "inches"),
  3296. weight: math.unit("90.4", "lbs"),
  3297. name: "Braviary",
  3298. image: {
  3299. source: "./media/pokemon/Braviary.svg"
  3300. },
  3301. rename: true
  3302. }
  3303. },
  3304. [
  3305. {
  3306. name: "Micro",
  3307. height: math.unit(5.9, "inches")
  3308. },
  3309. {
  3310. name: "Normal",
  3311. height: math.unit(59, "inches"),
  3312. default: true
  3313. },
  3314. {
  3315. name: "Macro",
  3316. height: math.unit(5900.0, "inches")
  3317. },
  3318. {
  3319. name: "Megamacro",
  3320. height: math.unit(295000.0, "inches")
  3321. },
  3322. {
  3323. name: "Gigamacro",
  3324. height: math.unit(590000000.0, "inches")
  3325. }
  3326. ]
  3327. )
  3328. };
  3329. pokemonMakers["Breloom"] = () => {
  3330. return makeCharacter(
  3331. { name: "Breloom" },
  3332. {
  3333. "Breloom": {
  3334. height: math.unit("47", "inches"),
  3335. weight: math.unit("86.4", "lbs"),
  3336. name: "Breloom",
  3337. image: {
  3338. source: "./media/pokemon/Breloom.svg"
  3339. },
  3340. rename: true
  3341. }
  3342. },
  3343. [
  3344. {
  3345. name: "Micro",
  3346. height: math.unit(4.7, "inches")
  3347. },
  3348. {
  3349. name: "Normal",
  3350. height: math.unit(47, "inches"),
  3351. default: true
  3352. },
  3353. {
  3354. name: "Macro",
  3355. height: math.unit(4700.0, "inches")
  3356. },
  3357. {
  3358. name: "Megamacro",
  3359. height: math.unit(235000.0, "inches")
  3360. },
  3361. {
  3362. name: "Gigamacro",
  3363. height: math.unit(470000000.0, "inches")
  3364. }
  3365. ]
  3366. )
  3367. };
  3368. pokemonMakers["Brionne"] = () => {
  3369. return makeCharacter(
  3370. { name: "Brionne" },
  3371. {
  3372. "Brionne": {
  3373. height: math.unit("24", "inches"),
  3374. weight: math.unit("38.6", "lbs"),
  3375. name: "Brionne",
  3376. image: {
  3377. source: "./media/pokemon/Brionne.svg"
  3378. },
  3379. rename: true
  3380. }
  3381. },
  3382. [
  3383. {
  3384. name: "Micro",
  3385. height: math.unit(2.4, "inches")
  3386. },
  3387. {
  3388. name: "Normal",
  3389. height: math.unit(24, "inches"),
  3390. default: true
  3391. },
  3392. {
  3393. name: "Macro",
  3394. height: math.unit(2400.0, "inches")
  3395. },
  3396. {
  3397. name: "Megamacro",
  3398. height: math.unit(120000.0, "inches")
  3399. },
  3400. {
  3401. name: "Gigamacro",
  3402. height: math.unit(240000000.0, "inches")
  3403. }
  3404. ]
  3405. )
  3406. };
  3407. pokemonMakers["Bronzong"] = () => {
  3408. return makeCharacter(
  3409. { name: "Bronzong" },
  3410. {
  3411. "Bronzong": {
  3412. height: math.unit("51", "inches"),
  3413. weight: math.unit("412.3", "lbs"),
  3414. name: "Bronzong",
  3415. image: {
  3416. source: "./media/pokemon/Bronzong.svg"
  3417. },
  3418. rename: true
  3419. }
  3420. },
  3421. [
  3422. {
  3423. name: "Micro",
  3424. height: math.unit(5.1, "inches")
  3425. },
  3426. {
  3427. name: "Normal",
  3428. height: math.unit(51, "inches"),
  3429. default: true
  3430. },
  3431. {
  3432. name: "Macro",
  3433. height: math.unit(5100.0, "inches")
  3434. },
  3435. {
  3436. name: "Megamacro",
  3437. height: math.unit(255000.0, "inches")
  3438. },
  3439. {
  3440. name: "Gigamacro",
  3441. height: math.unit(510000000.0, "inches")
  3442. }
  3443. ]
  3444. )
  3445. };
  3446. pokemonMakers["Bronzor"] = () => {
  3447. return makeCharacter(
  3448. { name: "Bronzor" },
  3449. {
  3450. "Bronzor": {
  3451. height: math.unit("20", "inches"),
  3452. weight: math.unit("133.4", "lbs"),
  3453. name: "Bronzor",
  3454. image: {
  3455. source: "./media/pokemon/Bronzor.svg"
  3456. },
  3457. rename: true
  3458. }
  3459. },
  3460. [
  3461. {
  3462. name: "Micro",
  3463. height: math.unit(2.0, "inches")
  3464. },
  3465. {
  3466. name: "Normal",
  3467. height: math.unit(20, "inches"),
  3468. default: true
  3469. },
  3470. {
  3471. name: "Macro",
  3472. height: math.unit(2000.0, "inches")
  3473. },
  3474. {
  3475. name: "Megamacro",
  3476. height: math.unit(100000.0, "inches")
  3477. },
  3478. {
  3479. name: "Gigamacro",
  3480. height: math.unit(200000000.0, "inches")
  3481. }
  3482. ]
  3483. )
  3484. };
  3485. pokemonMakers["Bruxish"] = () => {
  3486. return makeCharacter(
  3487. { name: "Bruxish" },
  3488. {
  3489. "Bruxish": {
  3490. height: math.unit("35", "inches"),
  3491. weight: math.unit("41.9", "lbs"),
  3492. name: "Bruxish",
  3493. image: {
  3494. source: "./media/pokemon/Bruxish.svg"
  3495. },
  3496. rename: true
  3497. }
  3498. },
  3499. [
  3500. {
  3501. name: "Micro",
  3502. height: math.unit(3.5, "inches")
  3503. },
  3504. {
  3505. name: "Normal",
  3506. height: math.unit(35, "inches"),
  3507. default: true
  3508. },
  3509. {
  3510. name: "Macro",
  3511. height: math.unit(3500.0, "inches")
  3512. },
  3513. {
  3514. name: "Megamacro",
  3515. height: math.unit(175000.0, "inches")
  3516. },
  3517. {
  3518. name: "Gigamacro",
  3519. height: math.unit(350000000.0, "inches")
  3520. }
  3521. ]
  3522. )
  3523. };
  3524. pokemonMakers["Budew"] = () => {
  3525. return makeCharacter(
  3526. { name: "Budew" },
  3527. {
  3528. "Budew": {
  3529. height: math.unit("8", "inches"),
  3530. weight: math.unit("2.6", "lbs"),
  3531. name: "Budew",
  3532. image: {
  3533. source: "./media/pokemon/Budew.svg"
  3534. },
  3535. rename: true
  3536. }
  3537. },
  3538. [
  3539. {
  3540. name: "Micro",
  3541. height: math.unit(0.8, "inches")
  3542. },
  3543. {
  3544. name: "Normal",
  3545. height: math.unit(8, "inches"),
  3546. default: true
  3547. },
  3548. {
  3549. name: "Macro",
  3550. height: math.unit(800.0, "inches")
  3551. },
  3552. {
  3553. name: "Megamacro",
  3554. height: math.unit(40000.0, "inches")
  3555. },
  3556. {
  3557. name: "Gigamacro",
  3558. height: math.unit(80000000.0, "inches")
  3559. }
  3560. ]
  3561. )
  3562. };
  3563. pokemonMakers["Buizel"] = () => {
  3564. return makeCharacter(
  3565. { name: "Buizel" },
  3566. {
  3567. "Buizel": {
  3568. height: math.unit("28", "inches"),
  3569. weight: math.unit("65.0", "lbs"),
  3570. name: "Buizel",
  3571. image: {
  3572. source: "./media/pokemon/Buizel.svg"
  3573. },
  3574. rename: true
  3575. }
  3576. },
  3577. [
  3578. {
  3579. name: "Micro",
  3580. height: math.unit(2.8, "inches")
  3581. },
  3582. {
  3583. name: "Normal",
  3584. height: math.unit(28, "inches"),
  3585. default: true
  3586. },
  3587. {
  3588. name: "Macro",
  3589. height: math.unit(2800.0, "inches")
  3590. },
  3591. {
  3592. name: "Megamacro",
  3593. height: math.unit(140000.0, "inches")
  3594. },
  3595. {
  3596. name: "Gigamacro",
  3597. height: math.unit(280000000.0, "inches")
  3598. }
  3599. ]
  3600. )
  3601. };
  3602. pokemonMakers["Bulbasaur"] = () => {
  3603. return makeCharacter(
  3604. { name: "Bulbasaur" },
  3605. {
  3606. "Bulbasaur": {
  3607. height: math.unit("28", "inches"),
  3608. weight: math.unit("15.2", "lbs"),
  3609. name: "Bulbasaur",
  3610. image: {
  3611. source: "./media/pokemon/Bulbasaur.svg"
  3612. },
  3613. rename: true
  3614. }
  3615. },
  3616. [
  3617. {
  3618. name: "Micro",
  3619. height: math.unit(2.8, "inches")
  3620. },
  3621. {
  3622. name: "Normal",
  3623. height: math.unit(28, "inches"),
  3624. default: true
  3625. },
  3626. {
  3627. name: "Macro",
  3628. height: math.unit(2800.0, "inches")
  3629. },
  3630. {
  3631. name: "Megamacro",
  3632. height: math.unit(140000.0, "inches")
  3633. },
  3634. {
  3635. name: "Gigamacro",
  3636. height: math.unit(280000000.0, "inches")
  3637. }
  3638. ]
  3639. )
  3640. };
  3641. pokemonMakers["Buneary"] = () => {
  3642. return makeCharacter(
  3643. { name: "Buneary" },
  3644. {
  3645. "Buneary": {
  3646. height: math.unit("16", "inches"),
  3647. weight: math.unit("12.1", "lbs"),
  3648. name: "Buneary",
  3649. image: {
  3650. source: "./media/pokemon/Buneary.svg"
  3651. },
  3652. rename: true
  3653. }
  3654. },
  3655. [
  3656. {
  3657. name: "Micro",
  3658. height: math.unit(1.6, "inches")
  3659. },
  3660. {
  3661. name: "Normal",
  3662. height: math.unit(16, "inches"),
  3663. default: true
  3664. },
  3665. {
  3666. name: "Macro",
  3667. height: math.unit(1600.0, "inches")
  3668. },
  3669. {
  3670. name: "Megamacro",
  3671. height: math.unit(80000.0, "inches")
  3672. },
  3673. {
  3674. name: "Gigamacro",
  3675. height: math.unit(160000000.0, "inches")
  3676. }
  3677. ]
  3678. )
  3679. };
  3680. pokemonMakers["Bunnelby"] = () => {
  3681. return makeCharacter(
  3682. { name: "Bunnelby" },
  3683. {
  3684. "Bunnelby": {
  3685. height: math.unit("16", "inches"),
  3686. weight: math.unit("11.0", "lbs"),
  3687. name: "Bunnelby",
  3688. image: {
  3689. source: "./media/pokemon/Bunnelby.svg"
  3690. },
  3691. rename: true
  3692. }
  3693. },
  3694. [
  3695. {
  3696. name: "Micro",
  3697. height: math.unit(1.6, "inches")
  3698. },
  3699. {
  3700. name: "Normal",
  3701. height: math.unit(16, "inches"),
  3702. default: true
  3703. },
  3704. {
  3705. name: "Macro",
  3706. height: math.unit(1600.0, "inches")
  3707. },
  3708. {
  3709. name: "Megamacro",
  3710. height: math.unit(80000.0, "inches")
  3711. },
  3712. {
  3713. name: "Gigamacro",
  3714. height: math.unit(160000000.0, "inches")
  3715. }
  3716. ]
  3717. )
  3718. };
  3719. pokemonMakers["Burmy"] = () => {
  3720. return makeCharacter(
  3721. { name: "Burmy" },
  3722. {
  3723. "Plant Cloak": {
  3724. height: math.unit("8", "inches"),
  3725. weight: math.unit("7.5", "lbs"),
  3726. name: "Plant Cloak",
  3727. image: {
  3728. source: "./media/pokemon/Burmy - Plant Cloak.svg"
  3729. },
  3730. rename: true
  3731. },
  3732. "Sandy Cloak": {
  3733. height: math.unit("8", "inches"),
  3734. weight: math.unit("7.5", "lbs"),
  3735. name: "Sandy Cloak",
  3736. image: {
  3737. source: "./media/pokemon/Burmy - Sandy Cloak.svg"
  3738. },
  3739. rename: true
  3740. },
  3741. "Trash Cloak": {
  3742. height: math.unit("8", "inches"),
  3743. weight: math.unit("7.5", "lbs"),
  3744. name: "Trash Cloak",
  3745. image: {
  3746. source: "./media/pokemon/Burmy - Trash Cloak.svg"
  3747. },
  3748. rename: true
  3749. }
  3750. },
  3751. [
  3752. {
  3753. name: "Micro",
  3754. height: math.unit(0.8, "inches")
  3755. },
  3756. {
  3757. name: "Normal",
  3758. height: math.unit(8, "inches"),
  3759. default: true
  3760. },
  3761. {
  3762. name: "Macro",
  3763. height: math.unit(800.0, "inches")
  3764. },
  3765. {
  3766. name: "Megamacro",
  3767. height: math.unit(40000.0, "inches")
  3768. },
  3769. {
  3770. name: "Gigamacro",
  3771. height: math.unit(80000000.0, "inches")
  3772. }
  3773. ]
  3774. )
  3775. };
  3776. pokemonMakers["Butterfree"] = () => {
  3777. return makeCharacter(
  3778. { name: "Butterfree" },
  3779. {
  3780. "Butterfree": {
  3781. height: math.unit("43", "inches"),
  3782. weight: math.unit("70.5", "lbs"),
  3783. name: "Butterfree",
  3784. image: {
  3785. source: "./media/pokemon/Butterfree.svg"
  3786. },
  3787. rename: true
  3788. },
  3789. "Gigantamax Butterfree": {
  3790. height: math.unit("669", "inches"),
  3791. weight: math.unit("265498.5194322512", "lbs"),
  3792. name: "Gigantamax Butterfree",
  3793. image: {
  3794. source: "./media/pokemon/Gigantamax Butterfree.svg"
  3795. },
  3796. rename: true
  3797. }
  3798. },
  3799. [
  3800. {
  3801. name: "Micro",
  3802. height: math.unit(4.3, "inches")
  3803. },
  3804. {
  3805. name: "Normal",
  3806. height: math.unit(43, "inches"),
  3807. default: true
  3808. },
  3809. {
  3810. name: "Macro",
  3811. height: math.unit(4300.0, "inches")
  3812. },
  3813. {
  3814. name: "Megamacro",
  3815. height: math.unit(215000.0, "inches")
  3816. },
  3817. {
  3818. name: "Gigamacro",
  3819. height: math.unit(430000000.0, "inches")
  3820. }
  3821. ]
  3822. )
  3823. };
  3824. pokemonMakers["Buzzwole"] = () => {
  3825. return makeCharacter(
  3826. { name: "Buzzwole" },
  3827. {
  3828. "Buzzwole": {
  3829. height: math.unit("94", "inches"),
  3830. weight: math.unit("735.5", "lbs"),
  3831. name: "Buzzwole",
  3832. image: {
  3833. source: "./media/pokemon/Buzzwole.svg"
  3834. },
  3835. rename: true
  3836. }
  3837. },
  3838. [
  3839. {
  3840. name: "Micro",
  3841. height: math.unit(9.4, "inches")
  3842. },
  3843. {
  3844. name: "Normal",
  3845. height: math.unit(94, "inches"),
  3846. default: true
  3847. },
  3848. {
  3849. name: "Macro",
  3850. height: math.unit(9400.0, "inches")
  3851. },
  3852. {
  3853. name: "Megamacro",
  3854. height: math.unit(470000.0, "inches")
  3855. },
  3856. {
  3857. name: "Gigamacro",
  3858. height: math.unit(940000000.0, "inches")
  3859. }
  3860. ]
  3861. )
  3862. };
  3863. pokemonMakers["Cacnea"] = () => {
  3864. return makeCharacter(
  3865. { name: "Cacnea" },
  3866. {
  3867. "Cacnea": {
  3868. height: math.unit("16", "inches"),
  3869. weight: math.unit("113.1", "lbs"),
  3870. name: "Cacnea",
  3871. image: {
  3872. source: "./media/pokemon/Cacnea.svg"
  3873. },
  3874. rename: true
  3875. }
  3876. },
  3877. [
  3878. {
  3879. name: "Micro",
  3880. height: math.unit(1.6, "inches")
  3881. },
  3882. {
  3883. name: "Normal",
  3884. height: math.unit(16, "inches"),
  3885. default: true
  3886. },
  3887. {
  3888. name: "Macro",
  3889. height: math.unit(1600.0, "inches")
  3890. },
  3891. {
  3892. name: "Megamacro",
  3893. height: math.unit(80000.0, "inches")
  3894. },
  3895. {
  3896. name: "Gigamacro",
  3897. height: math.unit(160000000.0, "inches")
  3898. }
  3899. ]
  3900. )
  3901. };
  3902. pokemonMakers["Cacturne"] = () => {
  3903. return makeCharacter(
  3904. { name: "Cacturne" },
  3905. {
  3906. "Cacturne": {
  3907. height: math.unit("51", "inches"),
  3908. weight: math.unit("170.6", "lbs"),
  3909. name: "Cacturne",
  3910. image: {
  3911. source: "./media/pokemon/Cacturne.svg"
  3912. },
  3913. rename: true
  3914. }
  3915. },
  3916. [
  3917. {
  3918. name: "Micro",
  3919. height: math.unit(5.1, "inches")
  3920. },
  3921. {
  3922. name: "Normal",
  3923. height: math.unit(51, "inches"),
  3924. default: true
  3925. },
  3926. {
  3927. name: "Macro",
  3928. height: math.unit(5100.0, "inches")
  3929. },
  3930. {
  3931. name: "Megamacro",
  3932. height: math.unit(255000.0, "inches")
  3933. },
  3934. {
  3935. name: "Gigamacro",
  3936. height: math.unit(510000000.0, "inches")
  3937. }
  3938. ]
  3939. )
  3940. };
  3941. pokemonMakers["Camerupt"] = () => {
  3942. return makeCharacter(
  3943. { name: "Camerupt" },
  3944. {
  3945. "Camerupt": {
  3946. height: math.unit("75", "inches"),
  3947. weight: math.unit("485.0", "lbs"),
  3948. name: "Camerupt",
  3949. image: {
  3950. source: "./media/pokemon/Camerupt.svg"
  3951. },
  3952. rename: true
  3953. },
  3954. "Mega Camerupt": {
  3955. height: math.unit("98", "inches"),
  3956. weight: math.unit("706.6", "lbs"),
  3957. name: "Mega Camerupt",
  3958. image: {
  3959. source: "./media/pokemon/Mega Camerupt.svg"
  3960. },
  3961. rename: true
  3962. }
  3963. },
  3964. [
  3965. {
  3966. name: "Micro",
  3967. height: math.unit(7.5, "inches")
  3968. },
  3969. {
  3970. name: "Normal",
  3971. height: math.unit(75, "inches"),
  3972. default: true
  3973. },
  3974. {
  3975. name: "Macro",
  3976. height: math.unit(7500.0, "inches")
  3977. },
  3978. {
  3979. name: "Megamacro",
  3980. height: math.unit(375000.0, "inches")
  3981. },
  3982. {
  3983. name: "Gigamacro",
  3984. height: math.unit(750000000.0, "inches")
  3985. }
  3986. ]
  3987. )
  3988. };
  3989. pokemonMakers["Carbink"] = () => {
  3990. return makeCharacter(
  3991. { name: "Carbink" },
  3992. {
  3993. "Carbink": {
  3994. height: math.unit("12", "inches"),
  3995. weight: math.unit("12.6", "lbs"),
  3996. name: "Carbink",
  3997. image: {
  3998. source: "./media/pokemon/Carbink.svg"
  3999. },
  4000. rename: true
  4001. }
  4002. },
  4003. [
  4004. {
  4005. name: "Micro",
  4006. height: math.unit(1.2, "inches")
  4007. },
  4008. {
  4009. name: "Normal",
  4010. height: math.unit(12, "inches"),
  4011. default: true
  4012. },
  4013. {
  4014. name: "Macro",
  4015. height: math.unit(1200.0, "inches")
  4016. },
  4017. {
  4018. name: "Megamacro",
  4019. height: math.unit(60000.0, "inches")
  4020. },
  4021. {
  4022. name: "Gigamacro",
  4023. height: math.unit(120000000.0, "inches")
  4024. }
  4025. ]
  4026. )
  4027. };
  4028. pokemonMakers["Carkol"] = () => {
  4029. return makeCharacter(
  4030. { name: "Carkol" },
  4031. {
  4032. "Carkol": {
  4033. height: math.unit("43", "inches"),
  4034. weight: math.unit("172.0", "lbs"),
  4035. name: "Carkol",
  4036. image: {
  4037. source: "./media/pokemon/Carkol.svg"
  4038. },
  4039. rename: true
  4040. }
  4041. },
  4042. [
  4043. {
  4044. name: "Micro",
  4045. height: math.unit(4.3, "inches")
  4046. },
  4047. {
  4048. name: "Normal",
  4049. height: math.unit(43, "inches"),
  4050. default: true
  4051. },
  4052. {
  4053. name: "Macro",
  4054. height: math.unit(4300.0, "inches")
  4055. },
  4056. {
  4057. name: "Megamacro",
  4058. height: math.unit(215000.0, "inches")
  4059. },
  4060. {
  4061. name: "Gigamacro",
  4062. height: math.unit(430000000.0, "inches")
  4063. }
  4064. ]
  4065. )
  4066. };
  4067. pokemonMakers["Carnivine"] = () => {
  4068. return makeCharacter(
  4069. { name: "Carnivine" },
  4070. {
  4071. "Carnivine": {
  4072. height: math.unit("55", "inches"),
  4073. weight: math.unit("59.5", "lbs"),
  4074. name: "Carnivine",
  4075. image: {
  4076. source: "./media/pokemon/Carnivine.svg"
  4077. },
  4078. rename: true
  4079. }
  4080. },
  4081. [
  4082. {
  4083. name: "Micro",
  4084. height: math.unit(5.5, "inches")
  4085. },
  4086. {
  4087. name: "Normal",
  4088. height: math.unit(55, "inches"),
  4089. default: true
  4090. },
  4091. {
  4092. name: "Macro",
  4093. height: math.unit(5500.0, "inches")
  4094. },
  4095. {
  4096. name: "Megamacro",
  4097. height: math.unit(275000.0, "inches")
  4098. },
  4099. {
  4100. name: "Gigamacro",
  4101. height: math.unit(550000000.0, "inches")
  4102. }
  4103. ]
  4104. )
  4105. };
  4106. pokemonMakers["Carracosta"] = () => {
  4107. return makeCharacter(
  4108. { name: "Carracosta" },
  4109. {
  4110. "Carracosta": {
  4111. height: math.unit("47", "inches"),
  4112. weight: math.unit("178.6", "lbs"),
  4113. name: "Carracosta",
  4114. image: {
  4115. source: "./media/pokemon/Carracosta.svg"
  4116. },
  4117. rename: true
  4118. }
  4119. },
  4120. [
  4121. {
  4122. name: "Micro",
  4123. height: math.unit(4.7, "inches")
  4124. },
  4125. {
  4126. name: "Normal",
  4127. height: math.unit(47, "inches"),
  4128. default: true
  4129. },
  4130. {
  4131. name: "Macro",
  4132. height: math.unit(4700.0, "inches")
  4133. },
  4134. {
  4135. name: "Megamacro",
  4136. height: math.unit(235000.0, "inches")
  4137. },
  4138. {
  4139. name: "Gigamacro",
  4140. height: math.unit(470000000.0, "inches")
  4141. }
  4142. ]
  4143. )
  4144. };
  4145. pokemonMakers["Carvanha"] = () => {
  4146. return makeCharacter(
  4147. { name: "Carvanha" },
  4148. {
  4149. "Carvanha": {
  4150. height: math.unit("31", "inches"),
  4151. weight: math.unit("45.9", "lbs"),
  4152. name: "Carvanha",
  4153. image: {
  4154. source: "./media/pokemon/Carvanha.svg"
  4155. },
  4156. rename: true
  4157. }
  4158. },
  4159. [
  4160. {
  4161. name: "Micro",
  4162. height: math.unit(3.1, "inches")
  4163. },
  4164. {
  4165. name: "Normal",
  4166. height: math.unit(31, "inches"),
  4167. default: true
  4168. },
  4169. {
  4170. name: "Macro",
  4171. height: math.unit(3100.0, "inches")
  4172. },
  4173. {
  4174. name: "Megamacro",
  4175. height: math.unit(155000.0, "inches")
  4176. },
  4177. {
  4178. name: "Gigamacro",
  4179. height: math.unit(310000000.0, "inches")
  4180. }
  4181. ]
  4182. )
  4183. };
  4184. pokemonMakers["Cascoon"] = () => {
  4185. return makeCharacter(
  4186. { name: "Cascoon" },
  4187. {
  4188. "Cascoon": {
  4189. height: math.unit("28", "inches"),
  4190. weight: math.unit("25.4", "lbs"),
  4191. name: "Cascoon",
  4192. image: {
  4193. source: "./media/pokemon/Cascoon.svg"
  4194. },
  4195. rename: true
  4196. }
  4197. },
  4198. [
  4199. {
  4200. name: "Micro",
  4201. height: math.unit(2.8, "inches")
  4202. },
  4203. {
  4204. name: "Normal",
  4205. height: math.unit(28, "inches"),
  4206. default: true
  4207. },
  4208. {
  4209. name: "Macro",
  4210. height: math.unit(2800.0, "inches")
  4211. },
  4212. {
  4213. name: "Megamacro",
  4214. height: math.unit(140000.0, "inches")
  4215. },
  4216. {
  4217. name: "Gigamacro",
  4218. height: math.unit(280000000.0, "inches")
  4219. }
  4220. ]
  4221. )
  4222. };
  4223. pokemonMakers["Castform"] = () => {
  4224. return makeCharacter(
  4225. { name: "Castform" },
  4226. {
  4227. "Rainy Form": {
  4228. height: math.unit("12", "inches"),
  4229. weight: math.unit("1.8", "lbs"),
  4230. name: "Rainy Form",
  4231. image: {
  4232. source: "./media/pokemon/Castform - Rainy Form.svg"
  4233. },
  4234. rename: true
  4235. },
  4236. "Snowy Form": {
  4237. height: math.unit("12", "inches"),
  4238. weight: math.unit("1.8", "lbs"),
  4239. name: "Snowy Form",
  4240. image: {
  4241. source: "./media/pokemon/Castform - Snowy Form.svg"
  4242. },
  4243. rename: true
  4244. },
  4245. "Sunny Form": {
  4246. height: math.unit("12", "inches"),
  4247. weight: math.unit("1.8", "lbs"),
  4248. name: "Sunny Form",
  4249. image: {
  4250. source: "./media/pokemon/Castform - Sunny Form.svg"
  4251. },
  4252. rename: true
  4253. },
  4254. "Castform": {
  4255. height: math.unit("12", "inches"),
  4256. weight: math.unit("1.8", "lbs"),
  4257. name: "Castform",
  4258. image: {
  4259. source: "./media/pokemon/Castform.svg"
  4260. },
  4261. rename: true
  4262. }
  4263. },
  4264. [
  4265. {
  4266. name: "Micro",
  4267. height: math.unit(1.2, "inches")
  4268. },
  4269. {
  4270. name: "Normal",
  4271. height: math.unit(12, "inches"),
  4272. default: true
  4273. },
  4274. {
  4275. name: "Macro",
  4276. height: math.unit(1200.0, "inches")
  4277. },
  4278. {
  4279. name: "Megamacro",
  4280. height: math.unit(60000.0, "inches")
  4281. },
  4282. {
  4283. name: "Gigamacro",
  4284. height: math.unit(120000000.0, "inches")
  4285. }
  4286. ]
  4287. )
  4288. };
  4289. pokemonMakers["Caterpie"] = () => {
  4290. return makeCharacter(
  4291. { name: "Caterpie" },
  4292. {
  4293. "Caterpie": {
  4294. height: math.unit("12", "inches"),
  4295. weight: math.unit("6.4", "lbs"),
  4296. name: "Caterpie",
  4297. image: {
  4298. source: "./media/pokemon/Caterpie.svg"
  4299. },
  4300. rename: true
  4301. }
  4302. },
  4303. [
  4304. {
  4305. name: "Micro",
  4306. height: math.unit(1.2, "inches")
  4307. },
  4308. {
  4309. name: "Normal",
  4310. height: math.unit(12, "inches"),
  4311. default: true
  4312. },
  4313. {
  4314. name: "Macro",
  4315. height: math.unit(1200.0, "inches")
  4316. },
  4317. {
  4318. name: "Megamacro",
  4319. height: math.unit(60000.0, "inches")
  4320. },
  4321. {
  4322. name: "Gigamacro",
  4323. height: math.unit(120000000.0, "inches")
  4324. }
  4325. ]
  4326. )
  4327. };
  4328. pokemonMakers["Celebi"] = () => {
  4329. return makeCharacter(
  4330. { name: "Celebi" },
  4331. {
  4332. "Celebi": {
  4333. height: math.unit("24", "inches"),
  4334. weight: math.unit("11.0", "lbs"),
  4335. name: "Celebi",
  4336. image: {
  4337. source: "./media/pokemon/Celebi.svg"
  4338. },
  4339. rename: true
  4340. }
  4341. },
  4342. [
  4343. {
  4344. name: "Micro",
  4345. height: math.unit(2.4, "inches")
  4346. },
  4347. {
  4348. name: "Normal",
  4349. height: math.unit(24, "inches"),
  4350. default: true
  4351. },
  4352. {
  4353. name: "Macro",
  4354. height: math.unit(2400.0, "inches")
  4355. },
  4356. {
  4357. name: "Megamacro",
  4358. height: math.unit(120000.0, "inches")
  4359. },
  4360. {
  4361. name: "Gigamacro",
  4362. height: math.unit(240000000.0, "inches")
  4363. }
  4364. ]
  4365. )
  4366. };
  4367. pokemonMakers["Celesteela"] = () => {
  4368. return makeCharacter(
  4369. { name: "Celesteela" },
  4370. {
  4371. "Celesteela": {
  4372. height: math.unit("362", "inches"),
  4373. weight: math.unit("2204.4", "lbs"),
  4374. name: "Celesteela",
  4375. image: {
  4376. source: "./media/pokemon/Celesteela.svg"
  4377. },
  4378. rename: true
  4379. }
  4380. },
  4381. [
  4382. {
  4383. name: "Micro",
  4384. height: math.unit(36.2, "inches")
  4385. },
  4386. {
  4387. name: "Normal",
  4388. height: math.unit(362, "inches"),
  4389. default: true
  4390. },
  4391. {
  4392. name: "Macro",
  4393. height: math.unit(36200.0, "inches")
  4394. },
  4395. {
  4396. name: "Megamacro",
  4397. height: math.unit(1810000.0, "inches")
  4398. },
  4399. {
  4400. name: "Gigamacro",
  4401. height: math.unit(3620000000.0, "inches")
  4402. }
  4403. ]
  4404. )
  4405. };
  4406. pokemonMakers["Centiskorch"] = () => {
  4407. return makeCharacter(
  4408. { name: "Centiskorch" },
  4409. {
  4410. "Centiskorch": {
  4411. height: math.unit("118", "inches"),
  4412. weight: math.unit("264.6", "lbs"),
  4413. name: "Centiskorch",
  4414. image: {
  4415. source: "./media/pokemon/Centiskorch.svg"
  4416. },
  4417. rename: true
  4418. },
  4419. "Gigantamax Centiskorch": {
  4420. height: math.unit("2953", "inches"),
  4421. weight: math.unit("4147001.178938817", "lbs"),
  4422. name: "Gigantamax Centiskorch",
  4423. image: {
  4424. source: "./media/pokemon/Gigantamax Centiskorch.svg"
  4425. },
  4426. rename: true
  4427. }
  4428. },
  4429. [
  4430. {
  4431. name: "Micro",
  4432. height: math.unit(11.8, "inches")
  4433. },
  4434. {
  4435. name: "Normal",
  4436. height: math.unit(118, "inches"),
  4437. default: true
  4438. },
  4439. {
  4440. name: "Macro",
  4441. height: math.unit(11800.0, "inches")
  4442. },
  4443. {
  4444. name: "Megamacro",
  4445. height: math.unit(590000.0, "inches")
  4446. },
  4447. {
  4448. name: "Gigamacro",
  4449. height: math.unit(1180000000.0, "inches")
  4450. }
  4451. ]
  4452. )
  4453. };
  4454. pokemonMakers["Chandelure"] = () => {
  4455. return makeCharacter(
  4456. { name: "Chandelure" },
  4457. {
  4458. "Chandelure": {
  4459. height: math.unit("39", "inches"),
  4460. weight: math.unit("75.6", "lbs"),
  4461. name: "Chandelure",
  4462. image: {
  4463. source: "./media/pokemon/Chandelure.svg"
  4464. },
  4465. rename: true
  4466. }
  4467. },
  4468. [
  4469. {
  4470. name: "Micro",
  4471. height: math.unit(3.9, "inches")
  4472. },
  4473. {
  4474. name: "Normal",
  4475. height: math.unit(39, "inches"),
  4476. default: true
  4477. },
  4478. {
  4479. name: "Macro",
  4480. height: math.unit(3900.0, "inches")
  4481. },
  4482. {
  4483. name: "Megamacro",
  4484. height: math.unit(195000.0, "inches")
  4485. },
  4486. {
  4487. name: "Gigamacro",
  4488. height: math.unit(390000000.0, "inches")
  4489. }
  4490. ]
  4491. )
  4492. };
  4493. pokemonMakers["Chansey"] = () => {
  4494. return makeCharacter(
  4495. { name: "Chansey" },
  4496. {
  4497. "Chansey": {
  4498. height: math.unit("43", "inches"),
  4499. weight: math.unit("76.3", "lbs"),
  4500. name: "Chansey",
  4501. image: {
  4502. source: "./media/pokemon/Chansey.svg"
  4503. },
  4504. rename: true
  4505. }
  4506. },
  4507. [
  4508. {
  4509. name: "Micro",
  4510. height: math.unit(4.3, "inches")
  4511. },
  4512. {
  4513. name: "Normal",
  4514. height: math.unit(43, "inches"),
  4515. default: true
  4516. },
  4517. {
  4518. name: "Macro",
  4519. height: math.unit(4300.0, "inches")
  4520. },
  4521. {
  4522. name: "Megamacro",
  4523. height: math.unit(215000.0, "inches")
  4524. },
  4525. {
  4526. name: "Gigamacro",
  4527. height: math.unit(430000000.0, "inches")
  4528. }
  4529. ]
  4530. )
  4531. };
  4532. pokemonMakers["Charizard"] = () => {
  4533. return makeCharacter(
  4534. { name: "Charizard" },
  4535. {
  4536. "Charizard": {
  4537. height: math.unit("67", "inches"),
  4538. weight: math.unit("199.5", "lbs"),
  4539. name: "Charizard",
  4540. image: {
  4541. source: "./media/pokemon/Charizard.svg"
  4542. },
  4543. rename: true
  4544. },
  4545. "Mega Charizard X": {
  4546. height: math.unit("67", "inches"),
  4547. weight: math.unit("243.6", "lbs"),
  4548. name: "Mega Charizard X",
  4549. image: {
  4550. source: "./media/pokemon/Mega Charizard X.svg"
  4551. },
  4552. rename: true
  4553. },
  4554. "Mega Charizard Y": {
  4555. height: math.unit("67", "inches"),
  4556. weight: math.unit("221.6", "lbs"),
  4557. name: "Mega Charizard Y",
  4558. image: {
  4559. source: "./media/pokemon/Mega Charizard Y.svg"
  4560. },
  4561. rename: true
  4562. },
  4563. "Gigantamax Charizard": {
  4564. height: math.unit("1102", "inches"),
  4565. weight: math.unit("887693.9816267294", "lbs"),
  4566. name: "Gigantamax Charizard",
  4567. image: {
  4568. source: "./media/pokemon/Gigantamax Charizard.svg"
  4569. },
  4570. rename: true
  4571. }
  4572. },
  4573. [
  4574. {
  4575. name: "Micro",
  4576. height: math.unit(6.7, "inches")
  4577. },
  4578. {
  4579. name: "Normal",
  4580. height: math.unit(67, "inches"),
  4581. default: true
  4582. },
  4583. {
  4584. name: "Macro",
  4585. height: math.unit(6700.0, "inches")
  4586. },
  4587. {
  4588. name: "Megamacro",
  4589. height: math.unit(335000.0, "inches")
  4590. },
  4591. {
  4592. name: "Gigamacro",
  4593. height: math.unit(670000000.0, "inches")
  4594. }
  4595. ]
  4596. )
  4597. };
  4598. pokemonMakers["Charjabug"] = () => {
  4599. return makeCharacter(
  4600. { name: "Charjabug" },
  4601. {
  4602. "Charjabug": {
  4603. height: math.unit("20", "inches"),
  4604. weight: math.unit("23.1", "lbs"),
  4605. name: "Charjabug",
  4606. image: {
  4607. source: "./media/pokemon/Charjabug.svg"
  4608. },
  4609. rename: true
  4610. }
  4611. },
  4612. [
  4613. {
  4614. name: "Micro",
  4615. height: math.unit(2.0, "inches")
  4616. },
  4617. {
  4618. name: "Normal",
  4619. height: math.unit(20, "inches"),
  4620. default: true
  4621. },
  4622. {
  4623. name: "Macro",
  4624. height: math.unit(2000.0, "inches")
  4625. },
  4626. {
  4627. name: "Megamacro",
  4628. height: math.unit(100000.0, "inches")
  4629. },
  4630. {
  4631. name: "Gigamacro",
  4632. height: math.unit(200000000.0, "inches")
  4633. }
  4634. ]
  4635. )
  4636. };
  4637. pokemonMakers["Charmander"] = () => {
  4638. return makeCharacter(
  4639. { name: "Charmander" },
  4640. {
  4641. "Charmander": {
  4642. height: math.unit("24", "inches"),
  4643. weight: math.unit("18.7", "lbs"),
  4644. name: "Charmander",
  4645. image: {
  4646. source: "./media/pokemon/Charmander.svg"
  4647. },
  4648. rename: true
  4649. }
  4650. },
  4651. [
  4652. {
  4653. name: "Micro",
  4654. height: math.unit(2.4, "inches")
  4655. },
  4656. {
  4657. name: "Normal",
  4658. height: math.unit(24, "inches"),
  4659. default: true
  4660. },
  4661. {
  4662. name: "Macro",
  4663. height: math.unit(2400.0, "inches")
  4664. },
  4665. {
  4666. name: "Megamacro",
  4667. height: math.unit(120000.0, "inches")
  4668. },
  4669. {
  4670. name: "Gigamacro",
  4671. height: math.unit(240000000.0, "inches")
  4672. }
  4673. ]
  4674. )
  4675. };
  4676. pokemonMakers["Charmeleon"] = () => {
  4677. return makeCharacter(
  4678. { name: "Charmeleon" },
  4679. {
  4680. "Charmeleon": {
  4681. height: math.unit("43", "inches"),
  4682. weight: math.unit("41.9", "lbs"),
  4683. name: "Charmeleon",
  4684. image: {
  4685. source: "./media/pokemon/Charmeleon.svg"
  4686. },
  4687. rename: true
  4688. }
  4689. },
  4690. [
  4691. {
  4692. name: "Micro",
  4693. height: math.unit(4.3, "inches")
  4694. },
  4695. {
  4696. name: "Normal",
  4697. height: math.unit(43, "inches"),
  4698. default: true
  4699. },
  4700. {
  4701. name: "Macro",
  4702. height: math.unit(4300.0, "inches")
  4703. },
  4704. {
  4705. name: "Megamacro",
  4706. height: math.unit(215000.0, "inches")
  4707. },
  4708. {
  4709. name: "Gigamacro",
  4710. height: math.unit(430000000.0, "inches")
  4711. }
  4712. ]
  4713. )
  4714. };
  4715. pokemonMakers["Chatot"] = () => {
  4716. return makeCharacter(
  4717. { name: "Chatot" },
  4718. {
  4719. "Chatot": {
  4720. height: math.unit("20", "inches"),
  4721. weight: math.unit("4.2", "lbs"),
  4722. name: "Chatot",
  4723. image: {
  4724. source: "./media/pokemon/Chatot.svg"
  4725. },
  4726. rename: true
  4727. }
  4728. },
  4729. [
  4730. {
  4731. name: "Micro",
  4732. height: math.unit(2.0, "inches")
  4733. },
  4734. {
  4735. name: "Normal",
  4736. height: math.unit(20, "inches"),
  4737. default: true
  4738. },
  4739. {
  4740. name: "Macro",
  4741. height: math.unit(2000.0, "inches")
  4742. },
  4743. {
  4744. name: "Megamacro",
  4745. height: math.unit(100000.0, "inches")
  4746. },
  4747. {
  4748. name: "Gigamacro",
  4749. height: math.unit(200000000.0, "inches")
  4750. }
  4751. ]
  4752. )
  4753. };
  4754. pokemonMakers["Cherrim"] = () => {
  4755. return makeCharacter(
  4756. { name: "Cherrim" },
  4757. {
  4758. "Overcast Form": {
  4759. height: math.unit("20", "inches"),
  4760. weight: math.unit("20.5", "lbs"),
  4761. name: "Overcast Form",
  4762. image: {
  4763. source: "./media/pokemon/Cherrim - Overcast Form.svg"
  4764. },
  4765. rename: true
  4766. },
  4767. "Sunshine Form": {
  4768. height: math.unit("20", "inches"),
  4769. weight: math.unit("20.5", "lbs"),
  4770. name: "Sunshine Form",
  4771. image: {
  4772. source: "./media/pokemon/Cherrim - Sunshine Form.svg"
  4773. },
  4774. rename: true
  4775. }
  4776. },
  4777. [
  4778. {
  4779. name: "Micro",
  4780. height: math.unit(2.0, "inches")
  4781. },
  4782. {
  4783. name: "Normal",
  4784. height: math.unit(20, "inches"),
  4785. default: true
  4786. },
  4787. {
  4788. name: "Macro",
  4789. height: math.unit(2000.0, "inches")
  4790. },
  4791. {
  4792. name: "Megamacro",
  4793. height: math.unit(100000.0, "inches")
  4794. },
  4795. {
  4796. name: "Gigamacro",
  4797. height: math.unit(200000000.0, "inches")
  4798. }
  4799. ]
  4800. )
  4801. };
  4802. pokemonMakers["Cherubi"] = () => {
  4803. return makeCharacter(
  4804. { name: "Cherubi" },
  4805. {
  4806. "Cherubi": {
  4807. height: math.unit("16", "inches"),
  4808. weight: math.unit("7.3", "lbs"),
  4809. name: "Cherubi",
  4810. image: {
  4811. source: "./media/pokemon/Cherubi.svg"
  4812. },
  4813. rename: true
  4814. }
  4815. },
  4816. [
  4817. {
  4818. name: "Micro",
  4819. height: math.unit(1.6, "inches")
  4820. },
  4821. {
  4822. name: "Normal",
  4823. height: math.unit(16, "inches"),
  4824. default: true
  4825. },
  4826. {
  4827. name: "Macro",
  4828. height: math.unit(1600.0, "inches")
  4829. },
  4830. {
  4831. name: "Megamacro",
  4832. height: math.unit(80000.0, "inches")
  4833. },
  4834. {
  4835. name: "Gigamacro",
  4836. height: math.unit(160000000.0, "inches")
  4837. }
  4838. ]
  4839. )
  4840. };
  4841. pokemonMakers["Chesnaught"] = () => {
  4842. return makeCharacter(
  4843. { name: "Chesnaught" },
  4844. {
  4845. "Chesnaught": {
  4846. height: math.unit("63", "inches"),
  4847. weight: math.unit("198.4", "lbs"),
  4848. name: "Chesnaught",
  4849. image: {
  4850. source: "./media/pokemon/Chesnaught.svg"
  4851. },
  4852. rename: true
  4853. }
  4854. },
  4855. [
  4856. {
  4857. name: "Micro",
  4858. height: math.unit(6.3, "inches")
  4859. },
  4860. {
  4861. name: "Normal",
  4862. height: math.unit(63, "inches"),
  4863. default: true
  4864. },
  4865. {
  4866. name: "Macro",
  4867. height: math.unit(6300.0, "inches")
  4868. },
  4869. {
  4870. name: "Megamacro",
  4871. height: math.unit(315000.0, "inches")
  4872. },
  4873. {
  4874. name: "Gigamacro",
  4875. height: math.unit(630000000.0, "inches")
  4876. }
  4877. ]
  4878. )
  4879. };
  4880. pokemonMakers["Chespin"] = () => {
  4881. return makeCharacter(
  4882. { name: "Chespin" },
  4883. {
  4884. "Chespin": {
  4885. height: math.unit("16", "inches"),
  4886. weight: math.unit("19.8", "lbs"),
  4887. name: "Chespin",
  4888. image: {
  4889. source: "./media/pokemon/Chespin.svg"
  4890. },
  4891. rename: true
  4892. }
  4893. },
  4894. [
  4895. {
  4896. name: "Micro",
  4897. height: math.unit(1.6, "inches")
  4898. },
  4899. {
  4900. name: "Normal",
  4901. height: math.unit(16, "inches"),
  4902. default: true
  4903. },
  4904. {
  4905. name: "Macro",
  4906. height: math.unit(1600.0, "inches")
  4907. },
  4908. {
  4909. name: "Megamacro",
  4910. height: math.unit(80000.0, "inches")
  4911. },
  4912. {
  4913. name: "Gigamacro",
  4914. height: math.unit(160000000.0, "inches")
  4915. }
  4916. ]
  4917. )
  4918. };
  4919. pokemonMakers["Chewtle"] = () => {
  4920. return makeCharacter(
  4921. { name: "Chewtle" },
  4922. {
  4923. "Chewtle": {
  4924. height: math.unit("12", "inches"),
  4925. weight: math.unit("18.7", "lbs"),
  4926. name: "Chewtle",
  4927. image: {
  4928. source: "./media/pokemon/Chewtle.svg"
  4929. },
  4930. rename: true
  4931. }
  4932. },
  4933. [
  4934. {
  4935. name: "Micro",
  4936. height: math.unit(1.2, "inches")
  4937. },
  4938. {
  4939. name: "Normal",
  4940. height: math.unit(12, "inches"),
  4941. default: true
  4942. },
  4943. {
  4944. name: "Macro",
  4945. height: math.unit(1200.0, "inches")
  4946. },
  4947. {
  4948. name: "Megamacro",
  4949. height: math.unit(60000.0, "inches")
  4950. },
  4951. {
  4952. name: "Gigamacro",
  4953. height: math.unit(120000000.0, "inches")
  4954. }
  4955. ]
  4956. )
  4957. };
  4958. pokemonMakers["Chikorita"] = () => {
  4959. return makeCharacter(
  4960. { name: "Chikorita" },
  4961. {
  4962. "Chikorita": {
  4963. height: math.unit("35", "inches"),
  4964. weight: math.unit("14.1", "lbs"),
  4965. name: "Chikorita",
  4966. image: {
  4967. source: "./media/pokemon/Chikorita.svg"
  4968. },
  4969. rename: true
  4970. }
  4971. },
  4972. [
  4973. {
  4974. name: "Micro",
  4975. height: math.unit(3.5, "inches")
  4976. },
  4977. {
  4978. name: "Normal",
  4979. height: math.unit(35, "inches"),
  4980. default: true
  4981. },
  4982. {
  4983. name: "Macro",
  4984. height: math.unit(3500.0, "inches")
  4985. },
  4986. {
  4987. name: "Megamacro",
  4988. height: math.unit(175000.0, "inches")
  4989. },
  4990. {
  4991. name: "Gigamacro",
  4992. height: math.unit(350000000.0, "inches")
  4993. }
  4994. ]
  4995. )
  4996. };
  4997. pokemonMakers["Chimchar"] = () => {
  4998. return makeCharacter(
  4999. { name: "Chimchar" },
  5000. {
  5001. "Chimchar": {
  5002. height: math.unit("20", "inches"),
  5003. weight: math.unit("13.7", "lbs"),
  5004. name: "Chimchar",
  5005. image: {
  5006. source: "./media/pokemon/Chimchar.svg"
  5007. },
  5008. rename: true
  5009. }
  5010. },
  5011. [
  5012. {
  5013. name: "Micro",
  5014. height: math.unit(2.0, "inches")
  5015. },
  5016. {
  5017. name: "Normal",
  5018. height: math.unit(20, "inches"),
  5019. default: true
  5020. },
  5021. {
  5022. name: "Macro",
  5023. height: math.unit(2000.0, "inches")
  5024. },
  5025. {
  5026. name: "Megamacro",
  5027. height: math.unit(100000.0, "inches")
  5028. },
  5029. {
  5030. name: "Gigamacro",
  5031. height: math.unit(200000000.0, "inches")
  5032. }
  5033. ]
  5034. )
  5035. };
  5036. pokemonMakers["Chimecho"] = () => {
  5037. return makeCharacter(
  5038. { name: "Chimecho" },
  5039. {
  5040. "Chimecho": {
  5041. height: math.unit("24", "inches"),
  5042. weight: math.unit("2.2", "lbs"),
  5043. name: "Chimecho",
  5044. image: {
  5045. source: "./media/pokemon/Chimecho.svg"
  5046. },
  5047. rename: true
  5048. }
  5049. },
  5050. [
  5051. {
  5052. name: "Micro",
  5053. height: math.unit(2.4, "inches")
  5054. },
  5055. {
  5056. name: "Normal",
  5057. height: math.unit(24, "inches"),
  5058. default: true
  5059. },
  5060. {
  5061. name: "Macro",
  5062. height: math.unit(2400.0, "inches")
  5063. },
  5064. {
  5065. name: "Megamacro",
  5066. height: math.unit(120000.0, "inches")
  5067. },
  5068. {
  5069. name: "Gigamacro",
  5070. height: math.unit(240000000.0, "inches")
  5071. }
  5072. ]
  5073. )
  5074. };
  5075. pokemonMakers["Chinchou"] = () => {
  5076. return makeCharacter(
  5077. { name: "Chinchou" },
  5078. {
  5079. "Chinchou": {
  5080. height: math.unit("20", "inches"),
  5081. weight: math.unit("26.5", "lbs"),
  5082. name: "Chinchou",
  5083. image: {
  5084. source: "./media/pokemon/Chinchou.svg"
  5085. },
  5086. rename: true
  5087. }
  5088. },
  5089. [
  5090. {
  5091. name: "Micro",
  5092. height: math.unit(2.0, "inches")
  5093. },
  5094. {
  5095. name: "Normal",
  5096. height: math.unit(20, "inches"),
  5097. default: true
  5098. },
  5099. {
  5100. name: "Macro",
  5101. height: math.unit(2000.0, "inches")
  5102. },
  5103. {
  5104. name: "Megamacro",
  5105. height: math.unit(100000.0, "inches")
  5106. },
  5107. {
  5108. name: "Gigamacro",
  5109. height: math.unit(200000000.0, "inches")
  5110. }
  5111. ]
  5112. )
  5113. };
  5114. pokemonMakers["Chingling"] = () => {
  5115. return makeCharacter(
  5116. { name: "Chingling" },
  5117. {
  5118. "Chingling": {
  5119. height: math.unit("8", "inches"),
  5120. weight: math.unit("1.3", "lbs"),
  5121. name: "Chingling",
  5122. image: {
  5123. source: "./media/pokemon/Chingling.svg"
  5124. },
  5125. rename: true
  5126. }
  5127. },
  5128. [
  5129. {
  5130. name: "Micro",
  5131. height: math.unit(0.8, "inches")
  5132. },
  5133. {
  5134. name: "Normal",
  5135. height: math.unit(8, "inches"),
  5136. default: true
  5137. },
  5138. {
  5139. name: "Macro",
  5140. height: math.unit(800.0, "inches")
  5141. },
  5142. {
  5143. name: "Megamacro",
  5144. height: math.unit(40000.0, "inches")
  5145. },
  5146. {
  5147. name: "Gigamacro",
  5148. height: math.unit(80000000.0, "inches")
  5149. }
  5150. ]
  5151. )
  5152. };
  5153. pokemonMakers["Cinccino"] = () => {
  5154. return makeCharacter(
  5155. { name: "Cinccino" },
  5156. {
  5157. "Cinccino": {
  5158. height: math.unit("20", "inches"),
  5159. weight: math.unit("16.5", "lbs"),
  5160. name: "Cinccino",
  5161. image: {
  5162. source: "./media/pokemon/Cinccino.svg"
  5163. },
  5164. rename: true
  5165. }
  5166. },
  5167. [
  5168. {
  5169. name: "Micro",
  5170. height: math.unit(2.0, "inches")
  5171. },
  5172. {
  5173. name: "Normal",
  5174. height: math.unit(20, "inches"),
  5175. default: true
  5176. },
  5177. {
  5178. name: "Macro",
  5179. height: math.unit(2000.0, "inches")
  5180. },
  5181. {
  5182. name: "Megamacro",
  5183. height: math.unit(100000.0, "inches")
  5184. },
  5185. {
  5186. name: "Gigamacro",
  5187. height: math.unit(200000000.0, "inches")
  5188. }
  5189. ]
  5190. )
  5191. };
  5192. pokemonMakers["Cinderace"] = () => {
  5193. return makeCharacter(
  5194. { name: "Cinderace" },
  5195. {
  5196. "Cinderace": {
  5197. height: math.unit("55", "inches"),
  5198. weight: math.unit("72.8", "lbs"),
  5199. name: "Cinderace",
  5200. image: {
  5201. source: "./media/pokemon/Cinderace.svg"
  5202. },
  5203. rename: true
  5204. }
  5205. },
  5206. [
  5207. {
  5208. name: "Micro",
  5209. height: math.unit(5.5, "inches")
  5210. },
  5211. {
  5212. name: "Normal",
  5213. height: math.unit(55, "inches"),
  5214. default: true
  5215. },
  5216. {
  5217. name: "Macro",
  5218. height: math.unit(5500.0, "inches")
  5219. },
  5220. {
  5221. name: "Megamacro",
  5222. height: math.unit(275000.0, "inches")
  5223. },
  5224. {
  5225. name: "Gigamacro",
  5226. height: math.unit(550000000.0, "inches")
  5227. }
  5228. ]
  5229. )
  5230. };
  5231. pokemonMakers["Clamperl"] = () => {
  5232. return makeCharacter(
  5233. { name: "Clamperl" },
  5234. {
  5235. "Clamperl": {
  5236. height: math.unit("16", "inches"),
  5237. weight: math.unit("115.7", "lbs"),
  5238. name: "Clamperl",
  5239. image: {
  5240. source: "./media/pokemon/Clamperl.svg"
  5241. },
  5242. rename: true
  5243. }
  5244. },
  5245. [
  5246. {
  5247. name: "Micro",
  5248. height: math.unit(1.6, "inches")
  5249. },
  5250. {
  5251. name: "Normal",
  5252. height: math.unit(16, "inches"),
  5253. default: true
  5254. },
  5255. {
  5256. name: "Macro",
  5257. height: math.unit(1600.0, "inches")
  5258. },
  5259. {
  5260. name: "Megamacro",
  5261. height: math.unit(80000.0, "inches")
  5262. },
  5263. {
  5264. name: "Gigamacro",
  5265. height: math.unit(160000000.0, "inches")
  5266. }
  5267. ]
  5268. )
  5269. };
  5270. pokemonMakers["Clauncher"] = () => {
  5271. return makeCharacter(
  5272. { name: "Clauncher" },
  5273. {
  5274. "Clauncher": {
  5275. height: math.unit("20", "inches"),
  5276. weight: math.unit("18.3", "lbs"),
  5277. name: "Clauncher",
  5278. image: {
  5279. source: "./media/pokemon/Clauncher.svg"
  5280. },
  5281. rename: true
  5282. }
  5283. },
  5284. [
  5285. {
  5286. name: "Micro",
  5287. height: math.unit(2.0, "inches")
  5288. },
  5289. {
  5290. name: "Normal",
  5291. height: math.unit(20, "inches"),
  5292. default: true
  5293. },
  5294. {
  5295. name: "Macro",
  5296. height: math.unit(2000.0, "inches")
  5297. },
  5298. {
  5299. name: "Megamacro",
  5300. height: math.unit(100000.0, "inches")
  5301. },
  5302. {
  5303. name: "Gigamacro",
  5304. height: math.unit(200000000.0, "inches")
  5305. }
  5306. ]
  5307. )
  5308. };
  5309. pokemonMakers["Clawitzer"] = () => {
  5310. return makeCharacter(
  5311. { name: "Clawitzer" },
  5312. {
  5313. "Clawitzer": {
  5314. height: math.unit("51", "inches"),
  5315. weight: math.unit("77.8", "lbs"),
  5316. name: "Clawitzer",
  5317. image: {
  5318. source: "./media/pokemon/Clawitzer.svg"
  5319. },
  5320. rename: true
  5321. }
  5322. },
  5323. [
  5324. {
  5325. name: "Micro",
  5326. height: math.unit(5.1, "inches")
  5327. },
  5328. {
  5329. name: "Normal",
  5330. height: math.unit(51, "inches"),
  5331. default: true
  5332. },
  5333. {
  5334. name: "Macro",
  5335. height: math.unit(5100.0, "inches")
  5336. },
  5337. {
  5338. name: "Megamacro",
  5339. height: math.unit(255000.0, "inches")
  5340. },
  5341. {
  5342. name: "Gigamacro",
  5343. height: math.unit(510000000.0, "inches")
  5344. }
  5345. ]
  5346. )
  5347. };
  5348. pokemonMakers["Claydol"] = () => {
  5349. return makeCharacter(
  5350. { name: "Claydol" },
  5351. {
  5352. "Claydol": {
  5353. height: math.unit("59", "inches"),
  5354. weight: math.unit("238.1", "lbs"),
  5355. name: "Claydol",
  5356. image: {
  5357. source: "./media/pokemon/Claydol.svg"
  5358. },
  5359. rename: true
  5360. }
  5361. },
  5362. [
  5363. {
  5364. name: "Micro",
  5365. height: math.unit(5.9, "inches")
  5366. },
  5367. {
  5368. name: "Normal",
  5369. height: math.unit(59, "inches"),
  5370. default: true
  5371. },
  5372. {
  5373. name: "Macro",
  5374. height: math.unit(5900.0, "inches")
  5375. },
  5376. {
  5377. name: "Megamacro",
  5378. height: math.unit(295000.0, "inches")
  5379. },
  5380. {
  5381. name: "Gigamacro",
  5382. height: math.unit(590000000.0, "inches")
  5383. }
  5384. ]
  5385. )
  5386. };
  5387. pokemonMakers["Clefable"] = () => {
  5388. return makeCharacter(
  5389. { name: "Clefable" },
  5390. {
  5391. "Clefable": {
  5392. height: math.unit("51", "inches"),
  5393. weight: math.unit("88.2", "lbs"),
  5394. name: "Clefable",
  5395. image: {
  5396. source: "./media/pokemon/Clefable.svg"
  5397. },
  5398. rename: true
  5399. }
  5400. },
  5401. [
  5402. {
  5403. name: "Micro",
  5404. height: math.unit(5.1, "inches")
  5405. },
  5406. {
  5407. name: "Normal",
  5408. height: math.unit(51, "inches"),
  5409. default: true
  5410. },
  5411. {
  5412. name: "Macro",
  5413. height: math.unit(5100.0, "inches")
  5414. },
  5415. {
  5416. name: "Megamacro",
  5417. height: math.unit(255000.0, "inches")
  5418. },
  5419. {
  5420. name: "Gigamacro",
  5421. height: math.unit(510000000.0, "inches")
  5422. }
  5423. ]
  5424. )
  5425. };
  5426. pokemonMakers["Clefairy"] = () => {
  5427. return makeCharacter(
  5428. { name: "Clefairy" },
  5429. {
  5430. "Clefairy": {
  5431. height: math.unit("24", "inches"),
  5432. weight: math.unit("16.5", "lbs"),
  5433. name: "Clefairy",
  5434. image: {
  5435. source: "./media/pokemon/Clefairy.svg"
  5436. },
  5437. rename: true
  5438. }
  5439. },
  5440. [
  5441. {
  5442. name: "Micro",
  5443. height: math.unit(2.4, "inches")
  5444. },
  5445. {
  5446. name: "Normal",
  5447. height: math.unit(24, "inches"),
  5448. default: true
  5449. },
  5450. {
  5451. name: "Macro",
  5452. height: math.unit(2400.0, "inches")
  5453. },
  5454. {
  5455. name: "Megamacro",
  5456. height: math.unit(120000.0, "inches")
  5457. },
  5458. {
  5459. name: "Gigamacro",
  5460. height: math.unit(240000000.0, "inches")
  5461. }
  5462. ]
  5463. )
  5464. };
  5465. pokemonMakers["Cleffa"] = () => {
  5466. return makeCharacter(
  5467. { name: "Cleffa" },
  5468. {
  5469. "Cleffa": {
  5470. height: math.unit("12", "inches"),
  5471. weight: math.unit("6.6", "lbs"),
  5472. name: "Cleffa",
  5473. image: {
  5474. source: "./media/pokemon/Cleffa.svg"
  5475. },
  5476. rename: true
  5477. }
  5478. },
  5479. [
  5480. {
  5481. name: "Micro",
  5482. height: math.unit(1.2, "inches")
  5483. },
  5484. {
  5485. name: "Normal",
  5486. height: math.unit(12, "inches"),
  5487. default: true
  5488. },
  5489. {
  5490. name: "Macro",
  5491. height: math.unit(1200.0, "inches")
  5492. },
  5493. {
  5494. name: "Megamacro",
  5495. height: math.unit(60000.0, "inches")
  5496. },
  5497. {
  5498. name: "Gigamacro",
  5499. height: math.unit(120000000.0, "inches")
  5500. }
  5501. ]
  5502. )
  5503. };
  5504. pokemonMakers["Clobbopus"] = () => {
  5505. return makeCharacter(
  5506. { name: "Clobbopus" },
  5507. {
  5508. "Clobbopus": {
  5509. height: math.unit("24", "inches"),
  5510. weight: math.unit("8.8", "lbs"),
  5511. name: "Clobbopus",
  5512. image: {
  5513. source: "./media/pokemon/Clobbopus.svg"
  5514. },
  5515. rename: true
  5516. }
  5517. },
  5518. [
  5519. {
  5520. name: "Micro",
  5521. height: math.unit(2.4, "inches")
  5522. },
  5523. {
  5524. name: "Normal",
  5525. height: math.unit(24, "inches"),
  5526. default: true
  5527. },
  5528. {
  5529. name: "Macro",
  5530. height: math.unit(2400.0, "inches")
  5531. },
  5532. {
  5533. name: "Megamacro",
  5534. height: math.unit(120000.0, "inches")
  5535. },
  5536. {
  5537. name: "Gigamacro",
  5538. height: math.unit(240000000.0, "inches")
  5539. }
  5540. ]
  5541. )
  5542. };
  5543. pokemonMakers["Cloyster"] = () => {
  5544. return makeCharacter(
  5545. { name: "Cloyster" },
  5546. {
  5547. "Cloyster": {
  5548. height: math.unit("59", "inches"),
  5549. weight: math.unit("292.1", "lbs"),
  5550. name: "Cloyster",
  5551. image: {
  5552. source: "./media/pokemon/Cloyster.svg"
  5553. },
  5554. rename: true
  5555. }
  5556. },
  5557. [
  5558. {
  5559. name: "Micro",
  5560. height: math.unit(5.9, "inches")
  5561. },
  5562. {
  5563. name: "Normal",
  5564. height: math.unit(59, "inches"),
  5565. default: true
  5566. },
  5567. {
  5568. name: "Macro",
  5569. height: math.unit(5900.0, "inches")
  5570. },
  5571. {
  5572. name: "Megamacro",
  5573. height: math.unit(295000.0, "inches")
  5574. },
  5575. {
  5576. name: "Gigamacro",
  5577. height: math.unit(590000000.0, "inches")
  5578. }
  5579. ]
  5580. )
  5581. };
  5582. pokemonMakers["Coalossal"] = () => {
  5583. return makeCharacter(
  5584. { name: "Coalossal" },
  5585. {
  5586. "Coalossal": {
  5587. height: math.unit("110", "inches"),
  5588. weight: math.unit("684.5", "lbs"),
  5589. name: "Coalossal",
  5590. image: {
  5591. source: "./media/pokemon/Coalossal.svg"
  5592. },
  5593. rename: true
  5594. },
  5595. "Gigantamax Coalossal": {
  5596. height: math.unit("1654", "inches"),
  5597. weight: math.unit("2327029.627128475", "lbs"),
  5598. name: "Gigantamax Coalossal",
  5599. image: {
  5600. source: "./media/pokemon/Gigantamax Coalossal.svg"
  5601. },
  5602. rename: true
  5603. }
  5604. },
  5605. [
  5606. {
  5607. name: "Micro",
  5608. height: math.unit(11.0, "inches")
  5609. },
  5610. {
  5611. name: "Normal",
  5612. height: math.unit(110, "inches"),
  5613. default: true
  5614. },
  5615. {
  5616. name: "Macro",
  5617. height: math.unit(11000.0, "inches")
  5618. },
  5619. {
  5620. name: "Megamacro",
  5621. height: math.unit(550000.0, "inches")
  5622. },
  5623. {
  5624. name: "Gigamacro",
  5625. height: math.unit(1100000000.0, "inches")
  5626. }
  5627. ]
  5628. )
  5629. };
  5630. pokemonMakers["Cobalion"] = () => {
  5631. return makeCharacter(
  5632. { name: "Cobalion" },
  5633. {
  5634. "Cobalion": {
  5635. height: math.unit("83", "inches"),
  5636. weight: math.unit("551.2", "lbs"),
  5637. name: "Cobalion",
  5638. image: {
  5639. source: "./media/pokemon/Cobalion.svg"
  5640. },
  5641. rename: true
  5642. }
  5643. },
  5644. [
  5645. {
  5646. name: "Micro",
  5647. height: math.unit(8.3, "inches")
  5648. },
  5649. {
  5650. name: "Normal",
  5651. height: math.unit(83, "inches"),
  5652. default: true
  5653. },
  5654. {
  5655. name: "Macro",
  5656. height: math.unit(8300.0, "inches")
  5657. },
  5658. {
  5659. name: "Megamacro",
  5660. height: math.unit(415000.0, "inches")
  5661. },
  5662. {
  5663. name: "Gigamacro",
  5664. height: math.unit(830000000.0, "inches")
  5665. }
  5666. ]
  5667. )
  5668. };
  5669. pokemonMakers["Cofagrigus"] = () => {
  5670. return makeCharacter(
  5671. { name: "Cofagrigus" },
  5672. {
  5673. "Cofagrigus": {
  5674. height: math.unit("67", "inches"),
  5675. weight: math.unit("168.7", "lbs"),
  5676. name: "Cofagrigus",
  5677. image: {
  5678. source: "./media/pokemon/Cofagrigus.svg"
  5679. },
  5680. rename: true
  5681. }
  5682. },
  5683. [
  5684. {
  5685. name: "Micro",
  5686. height: math.unit(6.7, "inches")
  5687. },
  5688. {
  5689. name: "Normal",
  5690. height: math.unit(67, "inches"),
  5691. default: true
  5692. },
  5693. {
  5694. name: "Macro",
  5695. height: math.unit(6700.0, "inches")
  5696. },
  5697. {
  5698. name: "Megamacro",
  5699. height: math.unit(335000.0, "inches")
  5700. },
  5701. {
  5702. name: "Gigamacro",
  5703. height: math.unit(670000000.0, "inches")
  5704. }
  5705. ]
  5706. )
  5707. };
  5708. pokemonMakers["Combee"] = () => {
  5709. return makeCharacter(
  5710. { name: "Combee" },
  5711. {
  5712. "Combee": {
  5713. height: math.unit("12", "inches"),
  5714. weight: math.unit("12.1", "lbs"),
  5715. name: "Combee",
  5716. image: {
  5717. source: "./media/pokemon/Combee.svg"
  5718. },
  5719. rename: true
  5720. }
  5721. },
  5722. [
  5723. {
  5724. name: "Micro",
  5725. height: math.unit(1.2, "inches")
  5726. },
  5727. {
  5728. name: "Normal",
  5729. height: math.unit(12, "inches"),
  5730. default: true
  5731. },
  5732. {
  5733. name: "Macro",
  5734. height: math.unit(1200.0, "inches")
  5735. },
  5736. {
  5737. name: "Megamacro",
  5738. height: math.unit(60000.0, "inches")
  5739. },
  5740. {
  5741. name: "Gigamacro",
  5742. height: math.unit(120000000.0, "inches")
  5743. }
  5744. ]
  5745. )
  5746. };
  5747. pokemonMakers["Combusken"] = () => {
  5748. return makeCharacter(
  5749. { name: "Combusken" },
  5750. {
  5751. "Combusken": {
  5752. height: math.unit("35", "inches"),
  5753. weight: math.unit("43.0", "lbs"),
  5754. name: "Combusken",
  5755. image: {
  5756. source: "./media/pokemon/Combusken.svg"
  5757. },
  5758. rename: true
  5759. }
  5760. },
  5761. [
  5762. {
  5763. name: "Micro",
  5764. height: math.unit(3.5, "inches")
  5765. },
  5766. {
  5767. name: "Normal",
  5768. height: math.unit(35, "inches"),
  5769. default: true
  5770. },
  5771. {
  5772. name: "Macro",
  5773. height: math.unit(3500.0, "inches")
  5774. },
  5775. {
  5776. name: "Megamacro",
  5777. height: math.unit(175000.0, "inches")
  5778. },
  5779. {
  5780. name: "Gigamacro",
  5781. height: math.unit(350000000.0, "inches")
  5782. }
  5783. ]
  5784. )
  5785. };
  5786. pokemonMakers["Comfey"] = () => {
  5787. return makeCharacter(
  5788. { name: "Comfey" },
  5789. {
  5790. "Comfey": {
  5791. height: math.unit("4", "inches"),
  5792. weight: math.unit("0.7", "lbs"),
  5793. name: "Comfey",
  5794. image: {
  5795. source: "./media/pokemon/Comfey.svg"
  5796. },
  5797. rename: true
  5798. }
  5799. },
  5800. [
  5801. {
  5802. name: "Micro",
  5803. height: math.unit(0.4, "inches")
  5804. },
  5805. {
  5806. name: "Normal",
  5807. height: math.unit(4, "inches"),
  5808. default: true
  5809. },
  5810. {
  5811. name: "Macro",
  5812. height: math.unit(400.0, "inches")
  5813. },
  5814. {
  5815. name: "Megamacro",
  5816. height: math.unit(20000.0, "inches")
  5817. },
  5818. {
  5819. name: "Gigamacro",
  5820. height: math.unit(40000000.0, "inches")
  5821. }
  5822. ]
  5823. )
  5824. };
  5825. pokemonMakers["Conkeldurr"] = () => {
  5826. return makeCharacter(
  5827. { name: "Conkeldurr" },
  5828. {
  5829. "Conkeldurr": {
  5830. height: math.unit("55", "inches"),
  5831. weight: math.unit("191.8", "lbs"),
  5832. name: "Conkeldurr",
  5833. image: {
  5834. source: "./media/pokemon/Conkeldurr.svg"
  5835. },
  5836. rename: true
  5837. }
  5838. },
  5839. [
  5840. {
  5841. name: "Micro",
  5842. height: math.unit(5.5, "inches")
  5843. },
  5844. {
  5845. name: "Normal",
  5846. height: math.unit(55, "inches"),
  5847. default: true
  5848. },
  5849. {
  5850. name: "Macro",
  5851. height: math.unit(5500.0, "inches")
  5852. },
  5853. {
  5854. name: "Megamacro",
  5855. height: math.unit(275000.0, "inches")
  5856. },
  5857. {
  5858. name: "Gigamacro",
  5859. height: math.unit(550000000.0, "inches")
  5860. }
  5861. ]
  5862. )
  5863. };
  5864. pokemonMakers["Copperajah"] = () => {
  5865. return makeCharacter(
  5866. { name: "Copperajah" },
  5867. {
  5868. "Copperajah": {
  5869. height: math.unit("118", "inches"),
  5870. weight: math.unit("1433.0", "lbs"),
  5871. name: "Copperajah",
  5872. image: {
  5873. source: "./media/pokemon/Copperajah.svg"
  5874. },
  5875. rename: true
  5876. },
  5877. "Gigantamax Copperajah": {
  5878. height: math.unit("906", "inches"),
  5879. weight: math.unit("648611.6747135783", "lbs"),
  5880. name: "Gigantamax Copperajah",
  5881. image: {
  5882. source: "./media/pokemon/Gigantamax Copperajah.svg"
  5883. },
  5884. rename: true
  5885. }
  5886. },
  5887. [
  5888. {
  5889. name: "Micro",
  5890. height: math.unit(11.8, "inches")
  5891. },
  5892. {
  5893. name: "Normal",
  5894. height: math.unit(118, "inches"),
  5895. default: true
  5896. },
  5897. {
  5898. name: "Macro",
  5899. height: math.unit(11800.0, "inches")
  5900. },
  5901. {
  5902. name: "Megamacro",
  5903. height: math.unit(590000.0, "inches")
  5904. },
  5905. {
  5906. name: "Gigamacro",
  5907. height: math.unit(1180000000.0, "inches")
  5908. }
  5909. ]
  5910. )
  5911. };
  5912. pokemonMakers["Corphish"] = () => {
  5913. return makeCharacter(
  5914. { name: "Corphish" },
  5915. {
  5916. "Corphish": {
  5917. height: math.unit("24", "inches"),
  5918. weight: math.unit("25.4", "lbs"),
  5919. name: "Corphish",
  5920. image: {
  5921. source: "./media/pokemon/Corphish.svg"
  5922. },
  5923. rename: true
  5924. }
  5925. },
  5926. [
  5927. {
  5928. name: "Micro",
  5929. height: math.unit(2.4, "inches")
  5930. },
  5931. {
  5932. name: "Normal",
  5933. height: math.unit(24, "inches"),
  5934. default: true
  5935. },
  5936. {
  5937. name: "Macro",
  5938. height: math.unit(2400.0, "inches")
  5939. },
  5940. {
  5941. name: "Megamacro",
  5942. height: math.unit(120000.0, "inches")
  5943. },
  5944. {
  5945. name: "Gigamacro",
  5946. height: math.unit(240000000.0, "inches")
  5947. }
  5948. ]
  5949. )
  5950. };
  5951. pokemonMakers["Corsola"] = () => {
  5952. return makeCharacter(
  5953. { name: "Corsola" },
  5954. {
  5955. "Galarian Form": {
  5956. height: math.unit("24", "inches"),
  5957. weight: math.unit("1.1", "lbs"),
  5958. name: "Galarian Form",
  5959. image: {
  5960. source: "./media/pokemon/Corsola - Galarian Form.svg"
  5961. },
  5962. rename: true
  5963. },
  5964. "Corsola": {
  5965. height: math.unit("24", "inches"),
  5966. weight: math.unit("11.0", "lbs"),
  5967. name: "Corsola",
  5968. image: {
  5969. source: "./media/pokemon/Corsola.svg"
  5970. },
  5971. rename: true
  5972. }
  5973. },
  5974. [
  5975. {
  5976. name: "Micro",
  5977. height: math.unit(2.4, "inches")
  5978. },
  5979. {
  5980. name: "Normal",
  5981. height: math.unit(24, "inches"),
  5982. default: true
  5983. },
  5984. {
  5985. name: "Macro",
  5986. height: math.unit(2400.0, "inches")
  5987. },
  5988. {
  5989. name: "Megamacro",
  5990. height: math.unit(120000.0, "inches")
  5991. },
  5992. {
  5993. name: "Gigamacro",
  5994. height: math.unit(240000000.0, "inches")
  5995. }
  5996. ]
  5997. )
  5998. };
  5999. pokemonMakers["Corviknight"] = () => {
  6000. return makeCharacter(
  6001. { name: "Corviknight" },
  6002. {
  6003. "Corviknight": {
  6004. height: math.unit("87", "inches"),
  6005. weight: math.unit("165.3", "lbs"),
  6006. name: "Corviknight",
  6007. image: {
  6008. source: "./media/pokemon/Corviknight.svg"
  6009. },
  6010. rename: true
  6011. },
  6012. "Gigantamax Corviknight": {
  6013. height: math.unit("551", "inches"),
  6014. weight: math.unit("41992.32222222222", "lbs"),
  6015. name: "Gigantamax Corviknight",
  6016. image: {
  6017. source: "./media/pokemon/Gigantamax Corviknight.svg"
  6018. },
  6019. rename: true
  6020. }
  6021. },
  6022. [
  6023. {
  6024. name: "Micro",
  6025. height: math.unit(8.7, "inches")
  6026. },
  6027. {
  6028. name: "Normal",
  6029. height: math.unit(87, "inches"),
  6030. default: true
  6031. },
  6032. {
  6033. name: "Macro",
  6034. height: math.unit(8700.0, "inches")
  6035. },
  6036. {
  6037. name: "Megamacro",
  6038. height: math.unit(435000.0, "inches")
  6039. },
  6040. {
  6041. name: "Gigamacro",
  6042. height: math.unit(870000000.0, "inches")
  6043. }
  6044. ]
  6045. )
  6046. };
  6047. pokemonMakers["Corvisquire"] = () => {
  6048. return makeCharacter(
  6049. { name: "Corvisquire" },
  6050. {
  6051. "Corvisquire": {
  6052. height: math.unit("31", "inches"),
  6053. weight: math.unit("35.3", "lbs"),
  6054. name: "Corvisquire",
  6055. image: {
  6056. source: "./media/pokemon/Corvisquire.svg"
  6057. },
  6058. rename: true
  6059. }
  6060. },
  6061. [
  6062. {
  6063. name: "Micro",
  6064. height: math.unit(3.1, "inches")
  6065. },
  6066. {
  6067. name: "Normal",
  6068. height: math.unit(31, "inches"),
  6069. default: true
  6070. },
  6071. {
  6072. name: "Macro",
  6073. height: math.unit(3100.0, "inches")
  6074. },
  6075. {
  6076. name: "Megamacro",
  6077. height: math.unit(155000.0, "inches")
  6078. },
  6079. {
  6080. name: "Gigamacro",
  6081. height: math.unit(310000000.0, "inches")
  6082. }
  6083. ]
  6084. )
  6085. };
  6086. pokemonMakers["Cosmoem"] = () => {
  6087. return makeCharacter(
  6088. { name: "Cosmoem" },
  6089. {
  6090. "Cosmoem": {
  6091. height: math.unit("4", "inches"),
  6092. weight: math.unit("2204.4", "lbs"),
  6093. name: "Cosmoem",
  6094. image: {
  6095. source: "./media/pokemon/Cosmoem.svg"
  6096. },
  6097. rename: true
  6098. }
  6099. },
  6100. [
  6101. {
  6102. name: "Micro",
  6103. height: math.unit(0.4, "inches")
  6104. },
  6105. {
  6106. name: "Normal",
  6107. height: math.unit(4, "inches"),
  6108. default: true
  6109. },
  6110. {
  6111. name: "Macro",
  6112. height: math.unit(400.0, "inches")
  6113. },
  6114. {
  6115. name: "Megamacro",
  6116. height: math.unit(20000.0, "inches")
  6117. },
  6118. {
  6119. name: "Gigamacro",
  6120. height: math.unit(40000000.0, "inches")
  6121. }
  6122. ]
  6123. )
  6124. };
  6125. pokemonMakers["Cosmog"] = () => {
  6126. return makeCharacter(
  6127. { name: "Cosmog" },
  6128. {
  6129. "Cosmog": {
  6130. height: math.unit("8", "inches"),
  6131. weight: math.unit("0.2", "lbs"),
  6132. name: "Cosmog",
  6133. image: {
  6134. source: "./media/pokemon/Cosmog.svg"
  6135. },
  6136. rename: true
  6137. }
  6138. },
  6139. [
  6140. {
  6141. name: "Micro",
  6142. height: math.unit(0.8, "inches")
  6143. },
  6144. {
  6145. name: "Normal",
  6146. height: math.unit(8, "inches"),
  6147. default: true
  6148. },
  6149. {
  6150. name: "Macro",
  6151. height: math.unit(800.0, "inches")
  6152. },
  6153. {
  6154. name: "Megamacro",
  6155. height: math.unit(40000.0, "inches")
  6156. },
  6157. {
  6158. name: "Gigamacro",
  6159. height: math.unit(80000000.0, "inches")
  6160. }
  6161. ]
  6162. )
  6163. };
  6164. pokemonMakers["Cottonee"] = () => {
  6165. return makeCharacter(
  6166. { name: "Cottonee" },
  6167. {
  6168. "Cottonee": {
  6169. height: math.unit("12", "inches"),
  6170. weight: math.unit("1.3", "lbs"),
  6171. name: "Cottonee",
  6172. image: {
  6173. source: "./media/pokemon/Cottonee.svg"
  6174. },
  6175. rename: true
  6176. }
  6177. },
  6178. [
  6179. {
  6180. name: "Micro",
  6181. height: math.unit(1.2, "inches")
  6182. },
  6183. {
  6184. name: "Normal",
  6185. height: math.unit(12, "inches"),
  6186. default: true
  6187. },
  6188. {
  6189. name: "Macro",
  6190. height: math.unit(1200.0, "inches")
  6191. },
  6192. {
  6193. name: "Megamacro",
  6194. height: math.unit(60000.0, "inches")
  6195. },
  6196. {
  6197. name: "Gigamacro",
  6198. height: math.unit(120000000.0, "inches")
  6199. }
  6200. ]
  6201. )
  6202. };
  6203. pokemonMakers["Crabominable"] = () => {
  6204. return makeCharacter(
  6205. { name: "Crabominable" },
  6206. {
  6207. "Crabominable": {
  6208. height: math.unit("67", "inches"),
  6209. weight: math.unit("396.8", "lbs"),
  6210. name: "Crabominable",
  6211. image: {
  6212. source: "./media/pokemon/Crabominable.svg"
  6213. },
  6214. rename: true
  6215. }
  6216. },
  6217. [
  6218. {
  6219. name: "Micro",
  6220. height: math.unit(6.7, "inches")
  6221. },
  6222. {
  6223. name: "Normal",
  6224. height: math.unit(67, "inches"),
  6225. default: true
  6226. },
  6227. {
  6228. name: "Macro",
  6229. height: math.unit(6700.0, "inches")
  6230. },
  6231. {
  6232. name: "Megamacro",
  6233. height: math.unit(335000.0, "inches")
  6234. },
  6235. {
  6236. name: "Gigamacro",
  6237. height: math.unit(670000000.0, "inches")
  6238. }
  6239. ]
  6240. )
  6241. };
  6242. pokemonMakers["Crabrawler"] = () => {
  6243. return makeCharacter(
  6244. { name: "Crabrawler" },
  6245. {
  6246. "Crabrawler": {
  6247. height: math.unit("24", "inches"),
  6248. weight: math.unit("15.4", "lbs"),
  6249. name: "Crabrawler",
  6250. image: {
  6251. source: "./media/pokemon/Crabrawler.svg"
  6252. },
  6253. rename: true
  6254. }
  6255. },
  6256. [
  6257. {
  6258. name: "Micro",
  6259. height: math.unit(2.4, "inches")
  6260. },
  6261. {
  6262. name: "Normal",
  6263. height: math.unit(24, "inches"),
  6264. default: true
  6265. },
  6266. {
  6267. name: "Macro",
  6268. height: math.unit(2400.0, "inches")
  6269. },
  6270. {
  6271. name: "Megamacro",
  6272. height: math.unit(120000.0, "inches")
  6273. },
  6274. {
  6275. name: "Gigamacro",
  6276. height: math.unit(240000000.0, "inches")
  6277. }
  6278. ]
  6279. )
  6280. };
  6281. pokemonMakers["Cradily"] = () => {
  6282. return makeCharacter(
  6283. { name: "Cradily" },
  6284. {
  6285. "Cradily": {
  6286. height: math.unit("59", "inches"),
  6287. weight: math.unit("133.2", "lbs"),
  6288. name: "Cradily",
  6289. image: {
  6290. source: "./media/pokemon/Cradily.svg"
  6291. },
  6292. rename: true
  6293. }
  6294. },
  6295. [
  6296. {
  6297. name: "Micro",
  6298. height: math.unit(5.9, "inches")
  6299. },
  6300. {
  6301. name: "Normal",
  6302. height: math.unit(59, "inches"),
  6303. default: true
  6304. },
  6305. {
  6306. name: "Macro",
  6307. height: math.unit(5900.0, "inches")
  6308. },
  6309. {
  6310. name: "Megamacro",
  6311. height: math.unit(295000.0, "inches")
  6312. },
  6313. {
  6314. name: "Gigamacro",
  6315. height: math.unit(590000000.0, "inches")
  6316. }
  6317. ]
  6318. )
  6319. };
  6320. pokemonMakers["Cramorant"] = () => {
  6321. return makeCharacter(
  6322. { name: "Cramorant" },
  6323. {
  6324. "Cramorant": {
  6325. height: math.unit("31", "inches"),
  6326. weight: math.unit("39.7", "lbs"),
  6327. name: "Cramorant",
  6328. image: {
  6329. source: "./media/pokemon/Cramorant.svg"
  6330. },
  6331. rename: true
  6332. }
  6333. },
  6334. [
  6335. {
  6336. name: "Micro",
  6337. height: math.unit(3.1, "inches")
  6338. },
  6339. {
  6340. name: "Normal",
  6341. height: math.unit(31, "inches"),
  6342. default: true
  6343. },
  6344. {
  6345. name: "Macro",
  6346. height: math.unit(3100.0, "inches")
  6347. },
  6348. {
  6349. name: "Megamacro",
  6350. height: math.unit(155000.0, "inches")
  6351. },
  6352. {
  6353. name: "Gigamacro",
  6354. height: math.unit(310000000.0, "inches")
  6355. }
  6356. ]
  6357. )
  6358. };
  6359. pokemonMakers["Cranidos"] = () => {
  6360. return makeCharacter(
  6361. { name: "Cranidos" },
  6362. {
  6363. "Cranidos": {
  6364. height: math.unit("35", "inches"),
  6365. weight: math.unit("69.4", "lbs"),
  6366. name: "Cranidos",
  6367. image: {
  6368. source: "./media/pokemon/Cranidos.svg"
  6369. },
  6370. rename: true
  6371. }
  6372. },
  6373. [
  6374. {
  6375. name: "Micro",
  6376. height: math.unit(3.5, "inches")
  6377. },
  6378. {
  6379. name: "Normal",
  6380. height: math.unit(35, "inches"),
  6381. default: true
  6382. },
  6383. {
  6384. name: "Macro",
  6385. height: math.unit(3500.0, "inches")
  6386. },
  6387. {
  6388. name: "Megamacro",
  6389. height: math.unit(175000.0, "inches")
  6390. },
  6391. {
  6392. name: "Gigamacro",
  6393. height: math.unit(350000000.0, "inches")
  6394. }
  6395. ]
  6396. )
  6397. };
  6398. pokemonMakers["Crawdaunt"] = () => {
  6399. return makeCharacter(
  6400. { name: "Crawdaunt" },
  6401. {
  6402. "Crawdaunt": {
  6403. height: math.unit("43", "inches"),
  6404. weight: math.unit("72.3", "lbs"),
  6405. name: "Crawdaunt",
  6406. image: {
  6407. source: "./media/pokemon/Crawdaunt.svg"
  6408. },
  6409. rename: true
  6410. }
  6411. },
  6412. [
  6413. {
  6414. name: "Micro",
  6415. height: math.unit(4.3, "inches")
  6416. },
  6417. {
  6418. name: "Normal",
  6419. height: math.unit(43, "inches"),
  6420. default: true
  6421. },
  6422. {
  6423. name: "Macro",
  6424. height: math.unit(4300.0, "inches")
  6425. },
  6426. {
  6427. name: "Megamacro",
  6428. height: math.unit(215000.0, "inches")
  6429. },
  6430. {
  6431. name: "Gigamacro",
  6432. height: math.unit(430000000.0, "inches")
  6433. }
  6434. ]
  6435. )
  6436. };
  6437. pokemonMakers["Cresselia"] = () => {
  6438. return makeCharacter(
  6439. { name: "Cresselia" },
  6440. {
  6441. "Cresselia": {
  6442. height: math.unit("59", "inches"),
  6443. weight: math.unit("188.7", "lbs"),
  6444. name: "Cresselia",
  6445. image: {
  6446. source: "./media/pokemon/Cresselia.svg"
  6447. },
  6448. rename: true
  6449. }
  6450. },
  6451. [
  6452. {
  6453. name: "Micro",
  6454. height: math.unit(5.9, "inches")
  6455. },
  6456. {
  6457. name: "Normal",
  6458. height: math.unit(59, "inches"),
  6459. default: true
  6460. },
  6461. {
  6462. name: "Macro",
  6463. height: math.unit(5900.0, "inches")
  6464. },
  6465. {
  6466. name: "Megamacro",
  6467. height: math.unit(295000.0, "inches")
  6468. },
  6469. {
  6470. name: "Gigamacro",
  6471. height: math.unit(590000000.0, "inches")
  6472. }
  6473. ]
  6474. )
  6475. };
  6476. pokemonMakers["Croagunk"] = () => {
  6477. return makeCharacter(
  6478. { name: "Croagunk" },
  6479. {
  6480. "Croagunk": {
  6481. height: math.unit("28", "inches"),
  6482. weight: math.unit("50.7", "lbs"),
  6483. name: "Croagunk",
  6484. image: {
  6485. source: "./media/pokemon/Croagunk.svg"
  6486. },
  6487. rename: true
  6488. }
  6489. },
  6490. [
  6491. {
  6492. name: "Micro",
  6493. height: math.unit(2.8, "inches")
  6494. },
  6495. {
  6496. name: "Normal",
  6497. height: math.unit(28, "inches"),
  6498. default: true
  6499. },
  6500. {
  6501. name: "Macro",
  6502. height: math.unit(2800.0, "inches")
  6503. },
  6504. {
  6505. name: "Megamacro",
  6506. height: math.unit(140000.0, "inches")
  6507. },
  6508. {
  6509. name: "Gigamacro",
  6510. height: math.unit(280000000.0, "inches")
  6511. }
  6512. ]
  6513. )
  6514. };
  6515. pokemonMakers["Crobat"] = () => {
  6516. return makeCharacter(
  6517. { name: "Crobat" },
  6518. {
  6519. "Crobat": {
  6520. height: math.unit("71", "inches"),
  6521. weight: math.unit("165.3", "lbs"),
  6522. name: "Crobat",
  6523. image: {
  6524. source: "./media/pokemon/Crobat.svg"
  6525. },
  6526. rename: true
  6527. }
  6528. },
  6529. [
  6530. {
  6531. name: "Micro",
  6532. height: math.unit(7.1, "inches")
  6533. },
  6534. {
  6535. name: "Normal",
  6536. height: math.unit(71, "inches"),
  6537. default: true
  6538. },
  6539. {
  6540. name: "Macro",
  6541. height: math.unit(7100.0, "inches")
  6542. },
  6543. {
  6544. name: "Megamacro",
  6545. height: math.unit(355000.0, "inches")
  6546. },
  6547. {
  6548. name: "Gigamacro",
  6549. height: math.unit(710000000.0, "inches")
  6550. }
  6551. ]
  6552. )
  6553. };
  6554. pokemonMakers["Croconaw"] = () => {
  6555. return makeCharacter(
  6556. { name: "Croconaw" },
  6557. {
  6558. "Croconaw": {
  6559. height: math.unit("43", "inches"),
  6560. weight: math.unit("55.1", "lbs"),
  6561. name: "Croconaw",
  6562. image: {
  6563. source: "./media/pokemon/Croconaw.svg"
  6564. },
  6565. rename: true
  6566. }
  6567. },
  6568. [
  6569. {
  6570. name: "Micro",
  6571. height: math.unit(4.3, "inches")
  6572. },
  6573. {
  6574. name: "Normal",
  6575. height: math.unit(43, "inches"),
  6576. default: true
  6577. },
  6578. {
  6579. name: "Macro",
  6580. height: math.unit(4300.0, "inches")
  6581. },
  6582. {
  6583. name: "Megamacro",
  6584. height: math.unit(215000.0, "inches")
  6585. },
  6586. {
  6587. name: "Gigamacro",
  6588. height: math.unit(430000000.0, "inches")
  6589. }
  6590. ]
  6591. )
  6592. };
  6593. pokemonMakers["Crustle"] = () => {
  6594. return makeCharacter(
  6595. { name: "Crustle" },
  6596. {
  6597. "Crustle": {
  6598. height: math.unit("55", "inches"),
  6599. weight: math.unit("440.9", "lbs"),
  6600. name: "Crustle",
  6601. image: {
  6602. source: "./media/pokemon/Crustle.svg"
  6603. },
  6604. rename: true
  6605. }
  6606. },
  6607. [
  6608. {
  6609. name: "Micro",
  6610. height: math.unit(5.5, "inches")
  6611. },
  6612. {
  6613. name: "Normal",
  6614. height: math.unit(55, "inches"),
  6615. default: true
  6616. },
  6617. {
  6618. name: "Macro",
  6619. height: math.unit(5500.0, "inches")
  6620. },
  6621. {
  6622. name: "Megamacro",
  6623. height: math.unit(275000.0, "inches")
  6624. },
  6625. {
  6626. name: "Gigamacro",
  6627. height: math.unit(550000000.0, "inches")
  6628. }
  6629. ]
  6630. )
  6631. };
  6632. pokemonMakers["Cryogonal"] = () => {
  6633. return makeCharacter(
  6634. { name: "Cryogonal" },
  6635. {
  6636. "Cryogonal": {
  6637. height: math.unit("43", "inches"),
  6638. weight: math.unit("326.3", "lbs"),
  6639. name: "Cryogonal",
  6640. image: {
  6641. source: "./media/pokemon/Cryogonal.svg"
  6642. },
  6643. rename: true
  6644. }
  6645. },
  6646. [
  6647. {
  6648. name: "Micro",
  6649. height: math.unit(4.3, "inches")
  6650. },
  6651. {
  6652. name: "Normal",
  6653. height: math.unit(43, "inches"),
  6654. default: true
  6655. },
  6656. {
  6657. name: "Macro",
  6658. height: math.unit(4300.0, "inches")
  6659. },
  6660. {
  6661. name: "Megamacro",
  6662. height: math.unit(215000.0, "inches")
  6663. },
  6664. {
  6665. name: "Gigamacro",
  6666. height: math.unit(430000000.0, "inches")
  6667. }
  6668. ]
  6669. )
  6670. };
  6671. pokemonMakers["Cubchoo"] = () => {
  6672. return makeCharacter(
  6673. { name: "Cubchoo" },
  6674. {
  6675. "Cubchoo": {
  6676. height: math.unit("20", "inches"),
  6677. weight: math.unit("18.7", "lbs"),
  6678. name: "Cubchoo",
  6679. image: {
  6680. source: "./media/pokemon/Cubchoo.svg"
  6681. },
  6682. rename: true
  6683. }
  6684. },
  6685. [
  6686. {
  6687. name: "Micro",
  6688. height: math.unit(2.0, "inches")
  6689. },
  6690. {
  6691. name: "Normal",
  6692. height: math.unit(20, "inches"),
  6693. default: true
  6694. },
  6695. {
  6696. name: "Macro",
  6697. height: math.unit(2000.0, "inches")
  6698. },
  6699. {
  6700. name: "Megamacro",
  6701. height: math.unit(100000.0, "inches")
  6702. },
  6703. {
  6704. name: "Gigamacro",
  6705. height: math.unit(200000000.0, "inches")
  6706. }
  6707. ]
  6708. )
  6709. };
  6710. pokemonMakers["Cubone"] = () => {
  6711. return makeCharacter(
  6712. { name: "Cubone" },
  6713. {
  6714. "Cubone": {
  6715. height: math.unit("16", "inches"),
  6716. weight: math.unit("14.3", "lbs"),
  6717. name: "Cubone",
  6718. image: {
  6719. source: "./media/pokemon/Cubone.svg"
  6720. },
  6721. rename: true
  6722. }
  6723. },
  6724. [
  6725. {
  6726. name: "Micro",
  6727. height: math.unit(1.6, "inches")
  6728. },
  6729. {
  6730. name: "Normal",
  6731. height: math.unit(16, "inches"),
  6732. default: true
  6733. },
  6734. {
  6735. name: "Macro",
  6736. height: math.unit(1600.0, "inches")
  6737. },
  6738. {
  6739. name: "Megamacro",
  6740. height: math.unit(80000.0, "inches")
  6741. },
  6742. {
  6743. name: "Gigamacro",
  6744. height: math.unit(160000000.0, "inches")
  6745. }
  6746. ]
  6747. )
  6748. };
  6749. pokemonMakers["Cufant"] = () => {
  6750. return makeCharacter(
  6751. { name: "Cufant" },
  6752. {
  6753. "Cufant": {
  6754. height: math.unit("47", "inches"),
  6755. weight: math.unit("220.5", "lbs"),
  6756. name: "Cufant",
  6757. image: {
  6758. source: "./media/pokemon/Cufant.svg"
  6759. },
  6760. rename: true
  6761. }
  6762. },
  6763. [
  6764. {
  6765. name: "Micro",
  6766. height: math.unit(4.7, "inches")
  6767. },
  6768. {
  6769. name: "Normal",
  6770. height: math.unit(47, "inches"),
  6771. default: true
  6772. },
  6773. {
  6774. name: "Macro",
  6775. height: math.unit(4700.0, "inches")
  6776. },
  6777. {
  6778. name: "Megamacro",
  6779. height: math.unit(235000.0, "inches")
  6780. },
  6781. {
  6782. name: "Gigamacro",
  6783. height: math.unit(470000000.0, "inches")
  6784. }
  6785. ]
  6786. )
  6787. };
  6788. pokemonMakers["Cursola"] = () => {
  6789. return makeCharacter(
  6790. { name: "Cursola" },
  6791. {
  6792. "Cursola": {
  6793. height: math.unit("39", "inches"),
  6794. weight: math.unit("0.9", "lbs"),
  6795. name: "Cursola",
  6796. image: {
  6797. source: "./media/pokemon/Cursola.svg"
  6798. },
  6799. rename: true
  6800. }
  6801. },
  6802. [
  6803. {
  6804. name: "Micro",
  6805. height: math.unit(3.9, "inches")
  6806. },
  6807. {
  6808. name: "Normal",
  6809. height: math.unit(39, "inches"),
  6810. default: true
  6811. },
  6812. {
  6813. name: "Macro",
  6814. height: math.unit(3900.0, "inches")
  6815. },
  6816. {
  6817. name: "Megamacro",
  6818. height: math.unit(195000.0, "inches")
  6819. },
  6820. {
  6821. name: "Gigamacro",
  6822. height: math.unit(390000000.0, "inches")
  6823. }
  6824. ]
  6825. )
  6826. };
  6827. pokemonMakers["Cutiefly"] = () => {
  6828. return makeCharacter(
  6829. { name: "Cutiefly" },
  6830. {
  6831. "Cutiefly": {
  6832. height: math.unit("4", "inches"),
  6833. weight: math.unit("0.4", "lbs"),
  6834. name: "Cutiefly",
  6835. image: {
  6836. source: "./media/pokemon/Cutiefly.svg"
  6837. },
  6838. rename: true
  6839. }
  6840. },
  6841. [
  6842. {
  6843. name: "Micro",
  6844. height: math.unit(0.4, "inches")
  6845. },
  6846. {
  6847. name: "Normal",
  6848. height: math.unit(4, "inches"),
  6849. default: true
  6850. },
  6851. {
  6852. name: "Macro",
  6853. height: math.unit(400.0, "inches")
  6854. },
  6855. {
  6856. name: "Megamacro",
  6857. height: math.unit(20000.0, "inches")
  6858. },
  6859. {
  6860. name: "Gigamacro",
  6861. height: math.unit(40000000.0, "inches")
  6862. }
  6863. ]
  6864. )
  6865. };
  6866. pokemonMakers["Cyndaquil"] = () => {
  6867. return makeCharacter(
  6868. { name: "Cyndaquil" },
  6869. {
  6870. "Cyndaquil": {
  6871. height: math.unit("20", "inches"),
  6872. weight: math.unit("17.4", "lbs"),
  6873. name: "Cyndaquil",
  6874. image: {
  6875. source: "./media/pokemon/Cyndaquil.svg"
  6876. },
  6877. rename: true
  6878. }
  6879. },
  6880. [
  6881. {
  6882. name: "Micro",
  6883. height: math.unit(2.0, "inches")
  6884. },
  6885. {
  6886. name: "Normal",
  6887. height: math.unit(20, "inches"),
  6888. default: true
  6889. },
  6890. {
  6891. name: "Macro",
  6892. height: math.unit(2000.0, "inches")
  6893. },
  6894. {
  6895. name: "Megamacro",
  6896. height: math.unit(100000.0, "inches")
  6897. },
  6898. {
  6899. name: "Gigamacro",
  6900. height: math.unit(200000000.0, "inches")
  6901. }
  6902. ]
  6903. )
  6904. };
  6905. pokemonMakers["Darkrai"] = () => {
  6906. return makeCharacter(
  6907. { name: "Darkrai" },
  6908. {
  6909. "Darkrai": {
  6910. height: math.unit("59", "inches"),
  6911. weight: math.unit("111.3", "lbs"),
  6912. name: "Darkrai",
  6913. image: {
  6914. source: "./media/pokemon/Darkrai.svg"
  6915. },
  6916. rename: true
  6917. }
  6918. },
  6919. [
  6920. {
  6921. name: "Micro",
  6922. height: math.unit(5.9, "inches")
  6923. },
  6924. {
  6925. name: "Normal",
  6926. height: math.unit(59, "inches"),
  6927. default: true
  6928. },
  6929. {
  6930. name: "Macro",
  6931. height: math.unit(5900.0, "inches")
  6932. },
  6933. {
  6934. name: "Megamacro",
  6935. height: math.unit(295000.0, "inches")
  6936. },
  6937. {
  6938. name: "Gigamacro",
  6939. height: math.unit(590000000.0, "inches")
  6940. }
  6941. ]
  6942. )
  6943. };
  6944. pokemonMakers["Darmanitan"] = () => {
  6945. return makeCharacter(
  6946. { name: "Darmanitan" },
  6947. {
  6948. "Galarian Form": {
  6949. height: math.unit("67", "inches"),
  6950. weight: math.unit("264.6", "lbs"),
  6951. name: "Galarian Form",
  6952. image: {
  6953. source: "./media/pokemon/Darmanitan - Galarian Form.svg"
  6954. },
  6955. rename: true
  6956. },
  6957. "Standard Mode": {
  6958. height: math.unit("51", "inches"),
  6959. weight: math.unit("204.8", "lbs"),
  6960. name: "Standard Mode",
  6961. image: {
  6962. source: "./media/pokemon/Darmanitan - Standard Mode.svg"
  6963. },
  6964. rename: true
  6965. },
  6966. "Zen Mode": {
  6967. height: math.unit("51", "inches"),
  6968. weight: math.unit("204.8", "lbs"),
  6969. name: "Zen Mode",
  6970. image: {
  6971. source: "./media/pokemon/Darmanitan - Zen Mode.svg"
  6972. },
  6973. rename: true
  6974. }
  6975. },
  6976. [
  6977. {
  6978. name: "Micro",
  6979. height: math.unit(6.7, "inches")
  6980. },
  6981. {
  6982. name: "Normal",
  6983. height: math.unit(67, "inches"),
  6984. default: true
  6985. },
  6986. {
  6987. name: "Macro",
  6988. height: math.unit(6700.0, "inches")
  6989. },
  6990. {
  6991. name: "Megamacro",
  6992. height: math.unit(335000.0, "inches")
  6993. },
  6994. {
  6995. name: "Gigamacro",
  6996. height: math.unit(670000000.0, "inches")
  6997. }
  6998. ]
  6999. )
  7000. };
  7001. pokemonMakers["Dartrix"] = () => {
  7002. return makeCharacter(
  7003. { name: "Dartrix" },
  7004. {
  7005. "Dartrix": {
  7006. height: math.unit("28", "inches"),
  7007. weight: math.unit("35.3", "lbs"),
  7008. name: "Dartrix",
  7009. image: {
  7010. source: "./media/pokemon/Dartrix.svg"
  7011. },
  7012. rename: true
  7013. }
  7014. },
  7015. [
  7016. {
  7017. name: "Micro",
  7018. height: math.unit(2.8, "inches")
  7019. },
  7020. {
  7021. name: "Normal",
  7022. height: math.unit(28, "inches"),
  7023. default: true
  7024. },
  7025. {
  7026. name: "Macro",
  7027. height: math.unit(2800.0, "inches")
  7028. },
  7029. {
  7030. name: "Megamacro",
  7031. height: math.unit(140000.0, "inches")
  7032. },
  7033. {
  7034. name: "Gigamacro",
  7035. height: math.unit(280000000.0, "inches")
  7036. }
  7037. ]
  7038. )
  7039. };
  7040. pokemonMakers["Darumaka"] = () => {
  7041. return makeCharacter(
  7042. { name: "Darumaka" },
  7043. {
  7044. "Galarian Form": {
  7045. height: math.unit("28", "inches"),
  7046. weight: math.unit("88.2", "lbs"),
  7047. name: "Galarian Form",
  7048. image: {
  7049. source: "./media/pokemon/Darumaka - Galarian Form.svg"
  7050. },
  7051. rename: true
  7052. },
  7053. "Darumaka": {
  7054. height: math.unit("24", "inches"),
  7055. weight: math.unit("82.7", "lbs"),
  7056. name: "Darumaka",
  7057. image: {
  7058. source: "./media/pokemon/Darumaka.svg"
  7059. },
  7060. rename: true
  7061. }
  7062. },
  7063. [
  7064. {
  7065. name: "Micro",
  7066. height: math.unit(2.8, "inches")
  7067. },
  7068. {
  7069. name: "Normal",
  7070. height: math.unit(28, "inches"),
  7071. default: true
  7072. },
  7073. {
  7074. name: "Macro",
  7075. height: math.unit(2800.0, "inches")
  7076. },
  7077. {
  7078. name: "Megamacro",
  7079. height: math.unit(140000.0, "inches")
  7080. },
  7081. {
  7082. name: "Gigamacro",
  7083. height: math.unit(280000000.0, "inches")
  7084. }
  7085. ]
  7086. )
  7087. };
  7088. pokemonMakers["Decidueye"] = () => {
  7089. return makeCharacter(
  7090. { name: "Decidueye" },
  7091. {
  7092. "Decidueye": {
  7093. height: math.unit("63", "inches"),
  7094. weight: math.unit("80.7", "lbs"),
  7095. name: "Decidueye",
  7096. image: {
  7097. source: "./media/pokemon/Decidueye.svg"
  7098. },
  7099. rename: true
  7100. }
  7101. },
  7102. [
  7103. {
  7104. name: "Micro",
  7105. height: math.unit(6.3, "inches")
  7106. },
  7107. {
  7108. name: "Normal",
  7109. height: math.unit(63, "inches"),
  7110. default: true
  7111. },
  7112. {
  7113. name: "Macro",
  7114. height: math.unit(6300.0, "inches")
  7115. },
  7116. {
  7117. name: "Megamacro",
  7118. height: math.unit(315000.0, "inches")
  7119. },
  7120. {
  7121. name: "Gigamacro",
  7122. height: math.unit(630000000.0, "inches")
  7123. }
  7124. ]
  7125. )
  7126. };
  7127. pokemonMakers["Dedenne"] = () => {
  7128. return makeCharacter(
  7129. { name: "Dedenne" },
  7130. {
  7131. "Dedenne": {
  7132. height: math.unit("8", "inches"),
  7133. weight: math.unit("4.9", "lbs"),
  7134. name: "Dedenne",
  7135. image: {
  7136. source: "./media/pokemon/Dedenne.svg"
  7137. },
  7138. rename: true
  7139. }
  7140. },
  7141. [
  7142. {
  7143. name: "Micro",
  7144. height: math.unit(0.8, "inches")
  7145. },
  7146. {
  7147. name: "Normal",
  7148. height: math.unit(8, "inches"),
  7149. default: true
  7150. },
  7151. {
  7152. name: "Macro",
  7153. height: math.unit(800.0, "inches")
  7154. },
  7155. {
  7156. name: "Megamacro",
  7157. height: math.unit(40000.0, "inches")
  7158. },
  7159. {
  7160. name: "Gigamacro",
  7161. height: math.unit(80000000.0, "inches")
  7162. }
  7163. ]
  7164. )
  7165. };
  7166. pokemonMakers["Deerling"] = () => {
  7167. return makeCharacter(
  7168. { name: "Deerling" },
  7169. {
  7170. "Autumn Form": {
  7171. height: math.unit("24", "inches"),
  7172. weight: math.unit("43.0", "lbs"),
  7173. name: "Autumn Form",
  7174. image: {
  7175. source: "./media/pokemon/Deerling - Autumn Form.svg"
  7176. },
  7177. rename: true
  7178. },
  7179. "Spring Form": {
  7180. height: math.unit("24", "inches"),
  7181. weight: math.unit("43.0", "lbs"),
  7182. name: "Spring Form",
  7183. image: {
  7184. source: "./media/pokemon/Deerling - Spring Form.svg"
  7185. },
  7186. rename: true
  7187. },
  7188. "Summer Form": {
  7189. height: math.unit("24", "inches"),
  7190. weight: math.unit("43.0", "lbs"),
  7191. name: "Summer Form",
  7192. image: {
  7193. source: "./media/pokemon/Deerling - Summer Form.svg"
  7194. },
  7195. rename: true
  7196. },
  7197. "Winter Form": {
  7198. height: math.unit("24", "inches"),
  7199. weight: math.unit("43.0", "lbs"),
  7200. name: "Winter Form",
  7201. image: {
  7202. source: "./media/pokemon/Deerling - Winter Form.svg"
  7203. },
  7204. rename: true
  7205. }
  7206. },
  7207. [
  7208. {
  7209. name: "Micro",
  7210. height: math.unit(2.4, "inches")
  7211. },
  7212. {
  7213. name: "Normal",
  7214. height: math.unit(24, "inches"),
  7215. default: true
  7216. },
  7217. {
  7218. name: "Macro",
  7219. height: math.unit(2400.0, "inches")
  7220. },
  7221. {
  7222. name: "Megamacro",
  7223. height: math.unit(120000.0, "inches")
  7224. },
  7225. {
  7226. name: "Gigamacro",
  7227. height: math.unit(240000000.0, "inches")
  7228. }
  7229. ]
  7230. )
  7231. };
  7232. pokemonMakers["Deino"] = () => {
  7233. return makeCharacter(
  7234. { name: "Deino" },
  7235. {
  7236. "Deino": {
  7237. height: math.unit("31", "inches"),
  7238. weight: math.unit("38.1", "lbs"),
  7239. name: "Deino",
  7240. image: {
  7241. source: "./media/pokemon/Deino.svg"
  7242. },
  7243. rename: true
  7244. }
  7245. },
  7246. [
  7247. {
  7248. name: "Micro",
  7249. height: math.unit(3.1, "inches")
  7250. },
  7251. {
  7252. name: "Normal",
  7253. height: math.unit(31, "inches"),
  7254. default: true
  7255. },
  7256. {
  7257. name: "Macro",
  7258. height: math.unit(3100.0, "inches")
  7259. },
  7260. {
  7261. name: "Megamacro",
  7262. height: math.unit(155000.0, "inches")
  7263. },
  7264. {
  7265. name: "Gigamacro",
  7266. height: math.unit(310000000.0, "inches")
  7267. }
  7268. ]
  7269. )
  7270. };
  7271. pokemonMakers["Delcatty"] = () => {
  7272. return makeCharacter(
  7273. { name: "Delcatty" },
  7274. {
  7275. "Delcatty": {
  7276. height: math.unit("43", "inches"),
  7277. weight: math.unit("71.9", "lbs"),
  7278. name: "Delcatty",
  7279. image: {
  7280. source: "./media/pokemon/Delcatty.svg"
  7281. },
  7282. rename: true
  7283. }
  7284. },
  7285. [
  7286. {
  7287. name: "Micro",
  7288. height: math.unit(4.3, "inches")
  7289. },
  7290. {
  7291. name: "Normal",
  7292. height: math.unit(43, "inches"),
  7293. default: true
  7294. },
  7295. {
  7296. name: "Macro",
  7297. height: math.unit(4300.0, "inches")
  7298. },
  7299. {
  7300. name: "Megamacro",
  7301. height: math.unit(215000.0, "inches")
  7302. },
  7303. {
  7304. name: "Gigamacro",
  7305. height: math.unit(430000000.0, "inches")
  7306. }
  7307. ]
  7308. )
  7309. };
  7310. pokemonMakers["Delibird"] = () => {
  7311. return makeCharacter(
  7312. { name: "Delibird" },
  7313. {
  7314. "Delibird": {
  7315. height: math.unit("35", "inches"),
  7316. weight: math.unit("35.3", "lbs"),
  7317. name: "Delibird",
  7318. image: {
  7319. source: "./media/pokemon/Delibird.svg"
  7320. },
  7321. rename: true
  7322. }
  7323. },
  7324. [
  7325. {
  7326. name: "Micro",
  7327. height: math.unit(3.5, "inches")
  7328. },
  7329. {
  7330. name: "Normal",
  7331. height: math.unit(35, "inches"),
  7332. default: true
  7333. },
  7334. {
  7335. name: "Macro",
  7336. height: math.unit(3500.0, "inches")
  7337. },
  7338. {
  7339. name: "Megamacro",
  7340. height: math.unit(175000.0, "inches")
  7341. },
  7342. {
  7343. name: "Gigamacro",
  7344. height: math.unit(350000000.0, "inches")
  7345. }
  7346. ]
  7347. )
  7348. };
  7349. pokemonMakers["Delphox"] = () => {
  7350. return makeCharacter(
  7351. { name: "Delphox" },
  7352. {
  7353. "Delphox": {
  7354. height: math.unit("59", "inches"),
  7355. weight: math.unit("86.0", "lbs"),
  7356. name: "Delphox",
  7357. image: {
  7358. source: "./media/pokemon/Delphox.svg"
  7359. },
  7360. rename: true
  7361. }
  7362. },
  7363. [
  7364. {
  7365. name: "Micro",
  7366. height: math.unit(5.9, "inches")
  7367. },
  7368. {
  7369. name: "Normal",
  7370. height: math.unit(59, "inches"),
  7371. default: true
  7372. },
  7373. {
  7374. name: "Macro",
  7375. height: math.unit(5900.0, "inches")
  7376. },
  7377. {
  7378. name: "Megamacro",
  7379. height: math.unit(295000.0, "inches")
  7380. },
  7381. {
  7382. name: "Gigamacro",
  7383. height: math.unit(590000000.0, "inches")
  7384. }
  7385. ]
  7386. )
  7387. };
  7388. pokemonMakers["Deoxys"] = () => {
  7389. return makeCharacter(
  7390. { name: "Deoxys" },
  7391. {
  7392. "Attack Forme": {
  7393. height: math.unit("67", "inches"),
  7394. weight: math.unit("134.0", "lbs"),
  7395. name: "Attack Forme",
  7396. image: {
  7397. source: "./media/pokemon/Deoxys - Attack Forme.svg"
  7398. },
  7399. rename: true
  7400. },
  7401. "Defense Forme": {
  7402. height: math.unit("67", "inches"),
  7403. weight: math.unit("134.0", "lbs"),
  7404. name: "Defense Forme",
  7405. image: {
  7406. source: "./media/pokemon/Deoxys - Defense Forme.svg"
  7407. },
  7408. rename: true
  7409. },
  7410. "Speed Forme": {
  7411. height: math.unit("67", "inches"),
  7412. weight: math.unit("134.0", "lbs"),
  7413. name: "Speed Forme",
  7414. image: {
  7415. source: "./media/pokemon/Deoxys - Speed Forme.svg"
  7416. },
  7417. rename: true
  7418. },
  7419. "Deoxys": {
  7420. height: math.unit("67", "inches"),
  7421. weight: math.unit("134.0", "lbs"),
  7422. name: "Deoxys",
  7423. image: {
  7424. source: "./media/pokemon/Deoxys.svg"
  7425. },
  7426. rename: true
  7427. }
  7428. },
  7429. [
  7430. {
  7431. name: "Micro",
  7432. height: math.unit(6.7, "inches")
  7433. },
  7434. {
  7435. name: "Normal",
  7436. height: math.unit(67, "inches"),
  7437. default: true
  7438. },
  7439. {
  7440. name: "Macro",
  7441. height: math.unit(6700.0, "inches")
  7442. },
  7443. {
  7444. name: "Megamacro",
  7445. height: math.unit(335000.0, "inches")
  7446. },
  7447. {
  7448. name: "Gigamacro",
  7449. height: math.unit(670000000.0, "inches")
  7450. }
  7451. ]
  7452. )
  7453. };
  7454. pokemonMakers["Dewgong"] = () => {
  7455. return makeCharacter(
  7456. { name: "Dewgong" },
  7457. {
  7458. "Dewgong": {
  7459. height: math.unit("67", "inches"),
  7460. weight: math.unit("264.6", "lbs"),
  7461. name: "Dewgong",
  7462. image: {
  7463. source: "./media/pokemon/Dewgong.svg"
  7464. },
  7465. rename: true
  7466. }
  7467. },
  7468. [
  7469. {
  7470. name: "Micro",
  7471. height: math.unit(6.7, "inches")
  7472. },
  7473. {
  7474. name: "Normal",
  7475. height: math.unit(67, "inches"),
  7476. default: true
  7477. },
  7478. {
  7479. name: "Macro",
  7480. height: math.unit(6700.0, "inches")
  7481. },
  7482. {
  7483. name: "Megamacro",
  7484. height: math.unit(335000.0, "inches")
  7485. },
  7486. {
  7487. name: "Gigamacro",
  7488. height: math.unit(670000000.0, "inches")
  7489. }
  7490. ]
  7491. )
  7492. };
  7493. pokemonMakers["Dewott"] = () => {
  7494. return makeCharacter(
  7495. { name: "Dewott" },
  7496. {
  7497. "Dewott": {
  7498. height: math.unit("31", "inches"),
  7499. weight: math.unit("54.0", "lbs"),
  7500. name: "Dewott",
  7501. image: {
  7502. source: "./media/pokemon/Dewott.svg"
  7503. },
  7504. rename: true
  7505. }
  7506. },
  7507. [
  7508. {
  7509. name: "Micro",
  7510. height: math.unit(3.1, "inches")
  7511. },
  7512. {
  7513. name: "Normal",
  7514. height: math.unit(31, "inches"),
  7515. default: true
  7516. },
  7517. {
  7518. name: "Macro",
  7519. height: math.unit(3100.0, "inches")
  7520. },
  7521. {
  7522. name: "Megamacro",
  7523. height: math.unit(155000.0, "inches")
  7524. },
  7525. {
  7526. name: "Gigamacro",
  7527. height: math.unit(310000000.0, "inches")
  7528. }
  7529. ]
  7530. )
  7531. };
  7532. pokemonMakers["Dewpider"] = () => {
  7533. return makeCharacter(
  7534. { name: "Dewpider" },
  7535. {
  7536. "Dewpider": {
  7537. height: math.unit("12", "inches"),
  7538. weight: math.unit("8.8", "lbs"),
  7539. name: "Dewpider",
  7540. image: {
  7541. source: "./media/pokemon/Dewpider.svg"
  7542. },
  7543. rename: true
  7544. }
  7545. },
  7546. [
  7547. {
  7548. name: "Micro",
  7549. height: math.unit(1.2, "inches")
  7550. },
  7551. {
  7552. name: "Normal",
  7553. height: math.unit(12, "inches"),
  7554. default: true
  7555. },
  7556. {
  7557. name: "Macro",
  7558. height: math.unit(1200.0, "inches")
  7559. },
  7560. {
  7561. name: "Megamacro",
  7562. height: math.unit(60000.0, "inches")
  7563. },
  7564. {
  7565. name: "Gigamacro",
  7566. height: math.unit(120000000.0, "inches")
  7567. }
  7568. ]
  7569. )
  7570. };
  7571. pokemonMakers["Dhelmise"] = () => {
  7572. return makeCharacter(
  7573. { name: "Dhelmise" },
  7574. {
  7575. "Dhelmise": {
  7576. height: math.unit("154", "inches"),
  7577. weight: math.unit("463.0", "lbs"),
  7578. name: "Dhelmise",
  7579. image: {
  7580. source: "./media/pokemon/Dhelmise.svg"
  7581. },
  7582. rename: true
  7583. }
  7584. },
  7585. [
  7586. {
  7587. name: "Micro",
  7588. height: math.unit(15.4, "inches")
  7589. },
  7590. {
  7591. name: "Normal",
  7592. height: math.unit(154, "inches"),
  7593. default: true
  7594. },
  7595. {
  7596. name: "Macro",
  7597. height: math.unit(15400.0, "inches")
  7598. },
  7599. {
  7600. name: "Megamacro",
  7601. height: math.unit(770000.0, "inches")
  7602. },
  7603. {
  7604. name: "Gigamacro",
  7605. height: math.unit(1540000000.0, "inches")
  7606. }
  7607. ]
  7608. )
  7609. };
  7610. pokemonMakers["Dialga"] = () => {
  7611. return makeCharacter(
  7612. { name: "Dialga" },
  7613. {
  7614. "Dialga": {
  7615. height: math.unit("213", "inches"),
  7616. weight: math.unit("1505.8", "lbs"),
  7617. name: "Dialga",
  7618. image: {
  7619. source: "./media/pokemon/Dialga.svg"
  7620. },
  7621. rename: true
  7622. }
  7623. },
  7624. [
  7625. {
  7626. name: "Micro",
  7627. height: math.unit(21.3, "inches")
  7628. },
  7629. {
  7630. name: "Normal",
  7631. height: math.unit(213, "inches"),
  7632. default: true
  7633. },
  7634. {
  7635. name: "Macro",
  7636. height: math.unit(21300.0, "inches")
  7637. },
  7638. {
  7639. name: "Megamacro",
  7640. height: math.unit(1065000.0, "inches")
  7641. },
  7642. {
  7643. name: "Gigamacro",
  7644. height: math.unit(2130000000.0, "inches")
  7645. }
  7646. ]
  7647. )
  7648. };
  7649. pokemonMakers["Diancie"] = () => {
  7650. return makeCharacter(
  7651. { name: "Diancie" },
  7652. {
  7653. "Diancie": {
  7654. height: math.unit("28", "inches"),
  7655. weight: math.unit("19.4", "lbs"),
  7656. name: "Diancie",
  7657. image: {
  7658. source: "./media/pokemon/Diancie.svg"
  7659. },
  7660. rename: true
  7661. },
  7662. "Mega Diancie": {
  7663. height: math.unit("43", "inches"),
  7664. weight: math.unit("61.3", "lbs"),
  7665. name: "Mega Diancie",
  7666. image: {
  7667. source: "./media/pokemon/Mega Diancie.svg"
  7668. },
  7669. rename: true
  7670. }
  7671. },
  7672. [
  7673. {
  7674. name: "Micro",
  7675. height: math.unit(2.8, "inches")
  7676. },
  7677. {
  7678. name: "Normal",
  7679. height: math.unit(28, "inches"),
  7680. default: true
  7681. },
  7682. {
  7683. name: "Macro",
  7684. height: math.unit(2800.0, "inches")
  7685. },
  7686. {
  7687. name: "Megamacro",
  7688. height: math.unit(140000.0, "inches")
  7689. },
  7690. {
  7691. name: "Gigamacro",
  7692. height: math.unit(280000000.0, "inches")
  7693. }
  7694. ]
  7695. )
  7696. };
  7697. pokemonMakers["Diggersby"] = () => {
  7698. return makeCharacter(
  7699. { name: "Diggersby" },
  7700. {
  7701. "Diggersby": {
  7702. height: math.unit("39", "inches"),
  7703. weight: math.unit("93.5", "lbs"),
  7704. name: "Diggersby",
  7705. image: {
  7706. source: "./media/pokemon/Diggersby.svg"
  7707. },
  7708. rename: true
  7709. }
  7710. },
  7711. [
  7712. {
  7713. name: "Micro",
  7714. height: math.unit(3.9, "inches")
  7715. },
  7716. {
  7717. name: "Normal",
  7718. height: math.unit(39, "inches"),
  7719. default: true
  7720. },
  7721. {
  7722. name: "Macro",
  7723. height: math.unit(3900.0, "inches")
  7724. },
  7725. {
  7726. name: "Megamacro",
  7727. height: math.unit(195000.0, "inches")
  7728. },
  7729. {
  7730. name: "Gigamacro",
  7731. height: math.unit(390000000.0, "inches")
  7732. }
  7733. ]
  7734. )
  7735. };
  7736. pokemonMakers["Diglett"] = () => {
  7737. return makeCharacter(
  7738. { name: "Diglett" },
  7739. {
  7740. "Alola Form": {
  7741. height: math.unit("8", "inches"),
  7742. weight: math.unit("2.2", "lbs"),
  7743. name: "Alola Form",
  7744. image: {
  7745. source: "./media/pokemon/Diglett - Alola Form.svg"
  7746. },
  7747. rename: true
  7748. },
  7749. "Diglett": {
  7750. height: math.unit("8", "inches"),
  7751. weight: math.unit("1.8", "lbs"),
  7752. name: "Diglett",
  7753. image: {
  7754. source: "./media/pokemon/Diglett.svg"
  7755. },
  7756. rename: true
  7757. }
  7758. },
  7759. [
  7760. {
  7761. name: "Micro",
  7762. height: math.unit(0.8, "inches")
  7763. },
  7764. {
  7765. name: "Normal",
  7766. height: math.unit(8, "inches"),
  7767. default: true
  7768. },
  7769. {
  7770. name: "Macro",
  7771. height: math.unit(800.0, "inches")
  7772. },
  7773. {
  7774. name: "Megamacro",
  7775. height: math.unit(40000.0, "inches")
  7776. },
  7777. {
  7778. name: "Gigamacro",
  7779. height: math.unit(80000000.0, "inches")
  7780. }
  7781. ]
  7782. )
  7783. };
  7784. pokemonMakers["Ditto"] = () => {
  7785. return makeCharacter(
  7786. { name: "Ditto" },
  7787. {
  7788. "Ditto": {
  7789. height: math.unit("12", "inches"),
  7790. weight: math.unit("8.8", "lbs"),
  7791. name: "Ditto",
  7792. image: {
  7793. source: "./media/pokemon/Ditto.svg"
  7794. },
  7795. rename: true
  7796. }
  7797. },
  7798. [
  7799. {
  7800. name: "Micro",
  7801. height: math.unit(1.2, "inches")
  7802. },
  7803. {
  7804. name: "Normal",
  7805. height: math.unit(12, "inches"),
  7806. default: true
  7807. },
  7808. {
  7809. name: "Macro",
  7810. height: math.unit(1200.0, "inches")
  7811. },
  7812. {
  7813. name: "Megamacro",
  7814. height: math.unit(60000.0, "inches")
  7815. },
  7816. {
  7817. name: "Gigamacro",
  7818. height: math.unit(120000000.0, "inches")
  7819. }
  7820. ]
  7821. )
  7822. };
  7823. pokemonMakers["Dodrio"] = () => {
  7824. return makeCharacter(
  7825. { name: "Dodrio" },
  7826. {
  7827. "Dodrio": {
  7828. height: math.unit("71", "inches"),
  7829. weight: math.unit("187.8", "lbs"),
  7830. name: "Dodrio",
  7831. image: {
  7832. source: "./media/pokemon/Dodrio.svg"
  7833. },
  7834. rename: true
  7835. }
  7836. },
  7837. [
  7838. {
  7839. name: "Micro",
  7840. height: math.unit(7.1, "inches")
  7841. },
  7842. {
  7843. name: "Normal",
  7844. height: math.unit(71, "inches"),
  7845. default: true
  7846. },
  7847. {
  7848. name: "Macro",
  7849. height: math.unit(7100.0, "inches")
  7850. },
  7851. {
  7852. name: "Megamacro",
  7853. height: math.unit(355000.0, "inches")
  7854. },
  7855. {
  7856. name: "Gigamacro",
  7857. height: math.unit(710000000.0, "inches")
  7858. }
  7859. ]
  7860. )
  7861. };
  7862. pokemonMakers["Doduo"] = () => {
  7863. return makeCharacter(
  7864. { name: "Doduo" },
  7865. {
  7866. "Doduo": {
  7867. height: math.unit("55", "inches"),
  7868. weight: math.unit("86.4", "lbs"),
  7869. name: "Doduo",
  7870. image: {
  7871. source: "./media/pokemon/Doduo.svg"
  7872. },
  7873. rename: true
  7874. }
  7875. },
  7876. [
  7877. {
  7878. name: "Micro",
  7879. height: math.unit(5.5, "inches")
  7880. },
  7881. {
  7882. name: "Normal",
  7883. height: math.unit(55, "inches"),
  7884. default: true
  7885. },
  7886. {
  7887. name: "Macro",
  7888. height: math.unit(5500.0, "inches")
  7889. },
  7890. {
  7891. name: "Megamacro",
  7892. height: math.unit(275000.0, "inches")
  7893. },
  7894. {
  7895. name: "Gigamacro",
  7896. height: math.unit(550000000.0, "inches")
  7897. }
  7898. ]
  7899. )
  7900. };
  7901. pokemonMakers["Donphan"] = () => {
  7902. return makeCharacter(
  7903. { name: "Donphan" },
  7904. {
  7905. "Donphan": {
  7906. height: math.unit("43", "inches"),
  7907. weight: math.unit("264.6", "lbs"),
  7908. name: "Donphan",
  7909. image: {
  7910. source: "./media/pokemon/Donphan.svg"
  7911. },
  7912. rename: true
  7913. }
  7914. },
  7915. [
  7916. {
  7917. name: "Micro",
  7918. height: math.unit(4.3, "inches")
  7919. },
  7920. {
  7921. name: "Normal",
  7922. height: math.unit(43, "inches"),
  7923. default: true
  7924. },
  7925. {
  7926. name: "Macro",
  7927. height: math.unit(4300.0, "inches")
  7928. },
  7929. {
  7930. name: "Megamacro",
  7931. height: math.unit(215000.0, "inches")
  7932. },
  7933. {
  7934. name: "Gigamacro",
  7935. height: math.unit(430000000.0, "inches")
  7936. }
  7937. ]
  7938. )
  7939. };
  7940. pokemonMakers["Dottler"] = () => {
  7941. return makeCharacter(
  7942. { name: "Dottler" },
  7943. {
  7944. "Dottler": {
  7945. height: math.unit("16", "inches"),
  7946. weight: math.unit("43.0", "lbs"),
  7947. name: "Dottler",
  7948. image: {
  7949. source: "./media/pokemon/Dottler.svg"
  7950. },
  7951. rename: true
  7952. }
  7953. },
  7954. [
  7955. {
  7956. name: "Micro",
  7957. height: math.unit(1.6, "inches")
  7958. },
  7959. {
  7960. name: "Normal",
  7961. height: math.unit(16, "inches"),
  7962. default: true
  7963. },
  7964. {
  7965. name: "Macro",
  7966. height: math.unit(1600.0, "inches")
  7967. },
  7968. {
  7969. name: "Megamacro",
  7970. height: math.unit(80000.0, "inches")
  7971. },
  7972. {
  7973. name: "Gigamacro",
  7974. height: math.unit(160000000.0, "inches")
  7975. }
  7976. ]
  7977. )
  7978. };
  7979. pokemonMakers["Doublade"] = () => {
  7980. return makeCharacter(
  7981. { name: "Doublade" },
  7982. {
  7983. "Doublade": {
  7984. height: math.unit("31", "inches"),
  7985. weight: math.unit("9.9", "lbs"),
  7986. name: "Doublade",
  7987. image: {
  7988. source: "./media/pokemon/Doublade.svg"
  7989. },
  7990. rename: true
  7991. }
  7992. },
  7993. [
  7994. {
  7995. name: "Micro",
  7996. height: math.unit(3.1, "inches")
  7997. },
  7998. {
  7999. name: "Normal",
  8000. height: math.unit(31, "inches"),
  8001. default: true
  8002. },
  8003. {
  8004. name: "Macro",
  8005. height: math.unit(3100.0, "inches")
  8006. },
  8007. {
  8008. name: "Megamacro",
  8009. height: math.unit(155000.0, "inches")
  8010. },
  8011. {
  8012. name: "Gigamacro",
  8013. height: math.unit(310000000.0, "inches")
  8014. }
  8015. ]
  8016. )
  8017. };
  8018. pokemonMakers["Dracovish"] = () => {
  8019. return makeCharacter(
  8020. { name: "Dracovish" },
  8021. {
  8022. "Dracovish": {
  8023. height: math.unit("91", "inches"),
  8024. weight: math.unit("474.0", "lbs"),
  8025. name: "Dracovish",
  8026. image: {
  8027. source: "./media/pokemon/Dracovish.svg"
  8028. },
  8029. rename: true
  8030. }
  8031. },
  8032. [
  8033. {
  8034. name: "Micro",
  8035. height: math.unit(9.1, "inches")
  8036. },
  8037. {
  8038. name: "Normal",
  8039. height: math.unit(91, "inches"),
  8040. default: true
  8041. },
  8042. {
  8043. name: "Macro",
  8044. height: math.unit(9100.0, "inches")
  8045. },
  8046. {
  8047. name: "Megamacro",
  8048. height: math.unit(455000.0, "inches")
  8049. },
  8050. {
  8051. name: "Gigamacro",
  8052. height: math.unit(910000000.0, "inches")
  8053. }
  8054. ]
  8055. )
  8056. };
  8057. pokemonMakers["Dracozolt"] = () => {
  8058. return makeCharacter(
  8059. { name: "Dracozolt" },
  8060. {
  8061. "Dracozolt": {
  8062. height: math.unit("71", "inches"),
  8063. weight: math.unit("418.9", "lbs"),
  8064. name: "Dracozolt",
  8065. image: {
  8066. source: "./media/pokemon/Dracozolt.svg"
  8067. },
  8068. rename: true
  8069. }
  8070. },
  8071. [
  8072. {
  8073. name: "Micro",
  8074. height: math.unit(7.1, "inches")
  8075. },
  8076. {
  8077. name: "Normal",
  8078. height: math.unit(71, "inches"),
  8079. default: true
  8080. },
  8081. {
  8082. name: "Macro",
  8083. height: math.unit(7100.0, "inches")
  8084. },
  8085. {
  8086. name: "Megamacro",
  8087. height: math.unit(355000.0, "inches")
  8088. },
  8089. {
  8090. name: "Gigamacro",
  8091. height: math.unit(710000000.0, "inches")
  8092. }
  8093. ]
  8094. )
  8095. };
  8096. pokemonMakers["Dragalge"] = () => {
  8097. return makeCharacter(
  8098. { name: "Dragalge" },
  8099. {
  8100. "Dragalge": {
  8101. height: math.unit("71", "inches"),
  8102. weight: math.unit("179.7", "lbs"),
  8103. name: "Dragalge",
  8104. image: {
  8105. source: "./media/pokemon/Dragalge.svg"
  8106. },
  8107. rename: true
  8108. }
  8109. },
  8110. [
  8111. {
  8112. name: "Micro",
  8113. height: math.unit(7.1, "inches")
  8114. },
  8115. {
  8116. name: "Normal",
  8117. height: math.unit(71, "inches"),
  8118. default: true
  8119. },
  8120. {
  8121. name: "Macro",
  8122. height: math.unit(7100.0, "inches")
  8123. },
  8124. {
  8125. name: "Megamacro",
  8126. height: math.unit(355000.0, "inches")
  8127. },
  8128. {
  8129. name: "Gigamacro",
  8130. height: math.unit(710000000.0, "inches")
  8131. }
  8132. ]
  8133. )
  8134. };
  8135. pokemonMakers["Dragapult"] = () => {
  8136. return makeCharacter(
  8137. { name: "Dragapult" },
  8138. {
  8139. "Dragapult": {
  8140. height: math.unit("118", "inches"),
  8141. weight: math.unit("110.2", "lbs"),
  8142. name: "Dragapult",
  8143. image: {
  8144. source: "./media/pokemon/Dragapult.svg"
  8145. },
  8146. rename: true
  8147. }
  8148. },
  8149. [
  8150. {
  8151. name: "Micro",
  8152. height: math.unit(11.8, "inches")
  8153. },
  8154. {
  8155. name: "Normal",
  8156. height: math.unit(118, "inches"),
  8157. default: true
  8158. },
  8159. {
  8160. name: "Macro",
  8161. height: math.unit(11800.0, "inches")
  8162. },
  8163. {
  8164. name: "Megamacro",
  8165. height: math.unit(590000.0, "inches")
  8166. },
  8167. {
  8168. name: "Gigamacro",
  8169. height: math.unit(1180000000.0, "inches")
  8170. }
  8171. ]
  8172. )
  8173. };
  8174. pokemonMakers["Dragonair"] = () => {
  8175. return makeCharacter(
  8176. { name: "Dragonair" },
  8177. {
  8178. "Dragonair": {
  8179. height: math.unit("157", "inches"),
  8180. weight: math.unit("36.4", "lbs"),
  8181. name: "Dragonair",
  8182. image: {
  8183. source: "./media/pokemon/Dragonair.svg"
  8184. },
  8185. rename: true
  8186. }
  8187. },
  8188. [
  8189. {
  8190. name: "Micro",
  8191. height: math.unit(15.7, "inches")
  8192. },
  8193. {
  8194. name: "Normal",
  8195. height: math.unit(157, "inches"),
  8196. default: true
  8197. },
  8198. {
  8199. name: "Macro",
  8200. height: math.unit(15700.0, "inches")
  8201. },
  8202. {
  8203. name: "Megamacro",
  8204. height: math.unit(785000.0, "inches")
  8205. },
  8206. {
  8207. name: "Gigamacro",
  8208. height: math.unit(1570000000.0, "inches")
  8209. }
  8210. ]
  8211. )
  8212. };
  8213. pokemonMakers["Dragonite"] = () => {
  8214. return makeCharacter(
  8215. { name: "Dragonite" },
  8216. {
  8217. "Dragonite": {
  8218. height: math.unit("87", "inches"),
  8219. weight: math.unit("463.0", "lbs"),
  8220. name: "Dragonite",
  8221. image: {
  8222. source: "./media/pokemon/Dragonite.svg"
  8223. },
  8224. rename: true
  8225. }
  8226. },
  8227. [
  8228. {
  8229. name: "Micro",
  8230. height: math.unit(8.7, "inches")
  8231. },
  8232. {
  8233. name: "Normal",
  8234. height: math.unit(87, "inches"),
  8235. default: true
  8236. },
  8237. {
  8238. name: "Macro",
  8239. height: math.unit(8700.0, "inches")
  8240. },
  8241. {
  8242. name: "Megamacro",
  8243. height: math.unit(435000.0, "inches")
  8244. },
  8245. {
  8246. name: "Gigamacro",
  8247. height: math.unit(870000000.0, "inches")
  8248. }
  8249. ]
  8250. )
  8251. };
  8252. pokemonMakers["Drakloak"] = () => {
  8253. return makeCharacter(
  8254. { name: "Drakloak" },
  8255. {
  8256. "Drakloak": {
  8257. height: math.unit("55", "inches"),
  8258. weight: math.unit("24.3", "lbs"),
  8259. name: "Drakloak",
  8260. image: {
  8261. source: "./media/pokemon/Drakloak.svg"
  8262. },
  8263. rename: true
  8264. }
  8265. },
  8266. [
  8267. {
  8268. name: "Micro",
  8269. height: math.unit(5.5, "inches")
  8270. },
  8271. {
  8272. name: "Normal",
  8273. height: math.unit(55, "inches"),
  8274. default: true
  8275. },
  8276. {
  8277. name: "Macro",
  8278. height: math.unit(5500.0, "inches")
  8279. },
  8280. {
  8281. name: "Megamacro",
  8282. height: math.unit(275000.0, "inches")
  8283. },
  8284. {
  8285. name: "Gigamacro",
  8286. height: math.unit(550000000.0, "inches")
  8287. }
  8288. ]
  8289. )
  8290. };
  8291. pokemonMakers["Drampa"] = () => {
  8292. return makeCharacter(
  8293. { name: "Drampa" },
  8294. {
  8295. "Drampa": {
  8296. height: math.unit("118", "inches"),
  8297. weight: math.unit("407.9", "lbs"),
  8298. name: "Drampa",
  8299. image: {
  8300. source: "./media/pokemon/Drampa.svg"
  8301. },
  8302. rename: true
  8303. }
  8304. },
  8305. [
  8306. {
  8307. name: "Micro",
  8308. height: math.unit(11.8, "inches")
  8309. },
  8310. {
  8311. name: "Normal",
  8312. height: math.unit(118, "inches"),
  8313. default: true
  8314. },
  8315. {
  8316. name: "Macro",
  8317. height: math.unit(11800.0, "inches")
  8318. },
  8319. {
  8320. name: "Megamacro",
  8321. height: math.unit(590000.0, "inches")
  8322. },
  8323. {
  8324. name: "Gigamacro",
  8325. height: math.unit(1180000000.0, "inches")
  8326. }
  8327. ]
  8328. )
  8329. };
  8330. pokemonMakers["Drapion"] = () => {
  8331. return makeCharacter(
  8332. { name: "Drapion" },
  8333. {
  8334. "Drapion": {
  8335. height: math.unit("51", "inches"),
  8336. weight: math.unit("135.6", "lbs"),
  8337. name: "Drapion",
  8338. image: {
  8339. source: "./media/pokemon/Drapion.svg"
  8340. },
  8341. rename: true
  8342. }
  8343. },
  8344. [
  8345. {
  8346. name: "Micro",
  8347. height: math.unit(5.1, "inches")
  8348. },
  8349. {
  8350. name: "Normal",
  8351. height: math.unit(51, "inches"),
  8352. default: true
  8353. },
  8354. {
  8355. name: "Macro",
  8356. height: math.unit(5100.0, "inches")
  8357. },
  8358. {
  8359. name: "Megamacro",
  8360. height: math.unit(255000.0, "inches")
  8361. },
  8362. {
  8363. name: "Gigamacro",
  8364. height: math.unit(510000000.0, "inches")
  8365. }
  8366. ]
  8367. )
  8368. };
  8369. pokemonMakers["Dratini"] = () => {
  8370. return makeCharacter(
  8371. { name: "Dratini" },
  8372. {
  8373. "Dratini": {
  8374. height: math.unit("71", "inches"),
  8375. weight: math.unit("7.3", "lbs"),
  8376. name: "Dratini",
  8377. image: {
  8378. source: "./media/pokemon/Dratini.svg"
  8379. },
  8380. rename: true
  8381. }
  8382. },
  8383. [
  8384. {
  8385. name: "Micro",
  8386. height: math.unit(7.1, "inches")
  8387. },
  8388. {
  8389. name: "Normal",
  8390. height: math.unit(71, "inches"),
  8391. default: true
  8392. },
  8393. {
  8394. name: "Macro",
  8395. height: math.unit(7100.0, "inches")
  8396. },
  8397. {
  8398. name: "Megamacro",
  8399. height: math.unit(355000.0, "inches")
  8400. },
  8401. {
  8402. name: "Gigamacro",
  8403. height: math.unit(710000000.0, "inches")
  8404. }
  8405. ]
  8406. )
  8407. };
  8408. pokemonMakers["Drednaw"] = () => {
  8409. return makeCharacter(
  8410. { name: "Drednaw" },
  8411. {
  8412. "Drednaw": {
  8413. height: math.unit("39", "inches"),
  8414. weight: math.unit("254.6", "lbs"),
  8415. name: "Drednaw",
  8416. image: {
  8417. source: "./media/pokemon/Drednaw.svg"
  8418. },
  8419. rename: true
  8420. },
  8421. "Gigantamax Drednaw": {
  8422. height: math.unit("945", "inches"),
  8423. weight: math.unit("3622096.3928083745", "lbs"),
  8424. name: "Gigantamax Drednaw",
  8425. image: {
  8426. source: "./media/pokemon/Gigantamax Drednaw.svg"
  8427. },
  8428. rename: true
  8429. }
  8430. },
  8431. [
  8432. {
  8433. name: "Micro",
  8434. height: math.unit(3.9, "inches")
  8435. },
  8436. {
  8437. name: "Normal",
  8438. height: math.unit(39, "inches"),
  8439. default: true
  8440. },
  8441. {
  8442. name: "Macro",
  8443. height: math.unit(3900.0, "inches")
  8444. },
  8445. {
  8446. name: "Megamacro",
  8447. height: math.unit(195000.0, "inches")
  8448. },
  8449. {
  8450. name: "Gigamacro",
  8451. height: math.unit(390000000.0, "inches")
  8452. }
  8453. ]
  8454. )
  8455. };
  8456. pokemonMakers["Dreepy"] = () => {
  8457. return makeCharacter(
  8458. { name: "Dreepy" },
  8459. {
  8460. "Dreepy": {
  8461. height: math.unit("20", "inches"),
  8462. weight: math.unit("4.4", "lbs"),
  8463. name: "Dreepy",
  8464. image: {
  8465. source: "./media/pokemon/Dreepy.svg"
  8466. },
  8467. rename: true
  8468. }
  8469. },
  8470. [
  8471. {
  8472. name: "Micro",
  8473. height: math.unit(2.0, "inches")
  8474. },
  8475. {
  8476. name: "Normal",
  8477. height: math.unit(20, "inches"),
  8478. default: true
  8479. },
  8480. {
  8481. name: "Macro",
  8482. height: math.unit(2000.0, "inches")
  8483. },
  8484. {
  8485. name: "Megamacro",
  8486. height: math.unit(100000.0, "inches")
  8487. },
  8488. {
  8489. name: "Gigamacro",
  8490. height: math.unit(200000000.0, "inches")
  8491. }
  8492. ]
  8493. )
  8494. };
  8495. pokemonMakers["Drifblim"] = () => {
  8496. return makeCharacter(
  8497. { name: "Drifblim" },
  8498. {
  8499. "Drifblim": {
  8500. height: math.unit("47", "inches"),
  8501. weight: math.unit("33.1", "lbs"),
  8502. name: "Drifblim",
  8503. image: {
  8504. source: "./media/pokemon/Drifblim.svg"
  8505. },
  8506. rename: true
  8507. }
  8508. },
  8509. [
  8510. {
  8511. name: "Micro",
  8512. height: math.unit(4.7, "inches")
  8513. },
  8514. {
  8515. name: "Normal",
  8516. height: math.unit(47, "inches"),
  8517. default: true
  8518. },
  8519. {
  8520. name: "Macro",
  8521. height: math.unit(4700.0, "inches")
  8522. },
  8523. {
  8524. name: "Megamacro",
  8525. height: math.unit(235000.0, "inches")
  8526. },
  8527. {
  8528. name: "Gigamacro",
  8529. height: math.unit(470000000.0, "inches")
  8530. }
  8531. ]
  8532. )
  8533. };
  8534. pokemonMakers["Drifloon"] = () => {
  8535. return makeCharacter(
  8536. { name: "Drifloon" },
  8537. {
  8538. "Drifloon": {
  8539. height: math.unit("16", "inches"),
  8540. weight: math.unit("2.6", "lbs"),
  8541. name: "Drifloon",
  8542. image: {
  8543. source: "./media/pokemon/Drifloon.svg"
  8544. },
  8545. rename: true
  8546. }
  8547. },
  8548. [
  8549. {
  8550. name: "Micro",
  8551. height: math.unit(1.6, "inches")
  8552. },
  8553. {
  8554. name: "Normal",
  8555. height: math.unit(16, "inches"),
  8556. default: true
  8557. },
  8558. {
  8559. name: "Macro",
  8560. height: math.unit(1600.0, "inches")
  8561. },
  8562. {
  8563. name: "Megamacro",
  8564. height: math.unit(80000.0, "inches")
  8565. },
  8566. {
  8567. name: "Gigamacro",
  8568. height: math.unit(160000000.0, "inches")
  8569. }
  8570. ]
  8571. )
  8572. };
  8573. pokemonMakers["Drilbur"] = () => {
  8574. return makeCharacter(
  8575. { name: "Drilbur" },
  8576. {
  8577. "Drilbur": {
  8578. height: math.unit("12", "inches"),
  8579. weight: math.unit("18.7", "lbs"),
  8580. name: "Drilbur",
  8581. image: {
  8582. source: "./media/pokemon/Drilbur.svg"
  8583. },
  8584. rename: true
  8585. }
  8586. },
  8587. [
  8588. {
  8589. name: "Micro",
  8590. height: math.unit(1.2, "inches")
  8591. },
  8592. {
  8593. name: "Normal",
  8594. height: math.unit(12, "inches"),
  8595. default: true
  8596. },
  8597. {
  8598. name: "Macro",
  8599. height: math.unit(1200.0, "inches")
  8600. },
  8601. {
  8602. name: "Megamacro",
  8603. height: math.unit(60000.0, "inches")
  8604. },
  8605. {
  8606. name: "Gigamacro",
  8607. height: math.unit(120000000.0, "inches")
  8608. }
  8609. ]
  8610. )
  8611. };
  8612. pokemonMakers["Drizzile"] = () => {
  8613. return makeCharacter(
  8614. { name: "Drizzile" },
  8615. {
  8616. "Drizzile": {
  8617. height: math.unit("28", "inches"),
  8618. weight: math.unit("25.4", "lbs"),
  8619. name: "Drizzile",
  8620. image: {
  8621. source: "./media/pokemon/Drizzile.svg"
  8622. },
  8623. rename: true
  8624. }
  8625. },
  8626. [
  8627. {
  8628. name: "Micro",
  8629. height: math.unit(2.8, "inches")
  8630. },
  8631. {
  8632. name: "Normal",
  8633. height: math.unit(28, "inches"),
  8634. default: true
  8635. },
  8636. {
  8637. name: "Macro",
  8638. height: math.unit(2800.0, "inches")
  8639. },
  8640. {
  8641. name: "Megamacro",
  8642. height: math.unit(140000.0, "inches")
  8643. },
  8644. {
  8645. name: "Gigamacro",
  8646. height: math.unit(280000000.0, "inches")
  8647. }
  8648. ]
  8649. )
  8650. };
  8651. pokemonMakers["Drowzee"] = () => {
  8652. return makeCharacter(
  8653. { name: "Drowzee" },
  8654. {
  8655. "Drowzee": {
  8656. height: math.unit("39", "inches"),
  8657. weight: math.unit("71.4", "lbs"),
  8658. name: "Drowzee",
  8659. image: {
  8660. source: "./media/pokemon/Drowzee.svg"
  8661. },
  8662. rename: true
  8663. }
  8664. },
  8665. [
  8666. {
  8667. name: "Micro",
  8668. height: math.unit(3.9, "inches")
  8669. },
  8670. {
  8671. name: "Normal",
  8672. height: math.unit(39, "inches"),
  8673. default: true
  8674. },
  8675. {
  8676. name: "Macro",
  8677. height: math.unit(3900.0, "inches")
  8678. },
  8679. {
  8680. name: "Megamacro",
  8681. height: math.unit(195000.0, "inches")
  8682. },
  8683. {
  8684. name: "Gigamacro",
  8685. height: math.unit(390000000.0, "inches")
  8686. }
  8687. ]
  8688. )
  8689. };
  8690. pokemonMakers["Druddigon"] = () => {
  8691. return makeCharacter(
  8692. { name: "Druddigon" },
  8693. {
  8694. "Druddigon": {
  8695. height: math.unit("63", "inches"),
  8696. weight: math.unit("306.4", "lbs"),
  8697. name: "Druddigon",
  8698. image: {
  8699. source: "./media/pokemon/Druddigon.svg"
  8700. },
  8701. rename: true
  8702. }
  8703. },
  8704. [
  8705. {
  8706. name: "Micro",
  8707. height: math.unit(6.3, "inches")
  8708. },
  8709. {
  8710. name: "Normal",
  8711. height: math.unit(63, "inches"),
  8712. default: true
  8713. },
  8714. {
  8715. name: "Macro",
  8716. height: math.unit(6300.0, "inches")
  8717. },
  8718. {
  8719. name: "Megamacro",
  8720. height: math.unit(315000.0, "inches")
  8721. },
  8722. {
  8723. name: "Gigamacro",
  8724. height: math.unit(630000000.0, "inches")
  8725. }
  8726. ]
  8727. )
  8728. };
  8729. pokemonMakers["Dubwool"] = () => {
  8730. return makeCharacter(
  8731. { name: "Dubwool" },
  8732. {
  8733. "Dubwool": {
  8734. height: math.unit("51", "inches"),
  8735. weight: math.unit("94.8", "lbs"),
  8736. name: "Dubwool",
  8737. image: {
  8738. source: "./media/pokemon/Dubwool.svg"
  8739. },
  8740. rename: true
  8741. }
  8742. },
  8743. [
  8744. {
  8745. name: "Micro",
  8746. height: math.unit(5.1, "inches")
  8747. },
  8748. {
  8749. name: "Normal",
  8750. height: math.unit(51, "inches"),
  8751. default: true
  8752. },
  8753. {
  8754. name: "Macro",
  8755. height: math.unit(5100.0, "inches")
  8756. },
  8757. {
  8758. name: "Megamacro",
  8759. height: math.unit(255000.0, "inches")
  8760. },
  8761. {
  8762. name: "Gigamacro",
  8763. height: math.unit(510000000.0, "inches")
  8764. }
  8765. ]
  8766. )
  8767. };
  8768. pokemonMakers["Ducklett"] = () => {
  8769. return makeCharacter(
  8770. { name: "Ducklett" },
  8771. {
  8772. "Ducklett": {
  8773. height: math.unit("20", "inches"),
  8774. weight: math.unit("12.1", "lbs"),
  8775. name: "Ducklett",
  8776. image: {
  8777. source: "./media/pokemon/Ducklett.svg"
  8778. },
  8779. rename: true
  8780. }
  8781. },
  8782. [
  8783. {
  8784. name: "Micro",
  8785. height: math.unit(2.0, "inches")
  8786. },
  8787. {
  8788. name: "Normal",
  8789. height: math.unit(20, "inches"),
  8790. default: true
  8791. },
  8792. {
  8793. name: "Macro",
  8794. height: math.unit(2000.0, "inches")
  8795. },
  8796. {
  8797. name: "Megamacro",
  8798. height: math.unit(100000.0, "inches")
  8799. },
  8800. {
  8801. name: "Gigamacro",
  8802. height: math.unit(200000000.0, "inches")
  8803. }
  8804. ]
  8805. )
  8806. };
  8807. pokemonMakers["Dugtrio"] = () => {
  8808. return makeCharacter(
  8809. { name: "Dugtrio" },
  8810. {
  8811. "Alola Form": {
  8812. height: math.unit("28", "inches"),
  8813. weight: math.unit("146.8", "lbs"),
  8814. name: "Alola Form",
  8815. image: {
  8816. source: "./media/pokemon/Dugtrio - Alola Form.svg"
  8817. },
  8818. rename: true
  8819. },
  8820. "Dugtrio": {
  8821. height: math.unit("28", "inches"),
  8822. weight: math.unit("73.4", "lbs"),
  8823. name: "Dugtrio",
  8824. image: {
  8825. source: "./media/pokemon/Dugtrio.svg"
  8826. },
  8827. rename: true
  8828. }
  8829. },
  8830. [
  8831. {
  8832. name: "Micro",
  8833. height: math.unit(2.8, "inches")
  8834. },
  8835. {
  8836. name: "Normal",
  8837. height: math.unit(28, "inches"),
  8838. default: true
  8839. },
  8840. {
  8841. name: "Macro",
  8842. height: math.unit(2800.0, "inches")
  8843. },
  8844. {
  8845. name: "Megamacro",
  8846. height: math.unit(140000.0, "inches")
  8847. },
  8848. {
  8849. name: "Gigamacro",
  8850. height: math.unit(280000000.0, "inches")
  8851. }
  8852. ]
  8853. )
  8854. };
  8855. pokemonMakers["Dunsparce"] = () => {
  8856. return makeCharacter(
  8857. { name: "Dunsparce" },
  8858. {
  8859. "Dunsparce": {
  8860. height: math.unit("59", "inches"),
  8861. weight: math.unit("30.9", "lbs"),
  8862. name: "Dunsparce",
  8863. image: {
  8864. source: "./media/pokemon/Dunsparce.svg"
  8865. },
  8866. rename: true
  8867. }
  8868. },
  8869. [
  8870. {
  8871. name: "Micro",
  8872. height: math.unit(5.9, "inches")
  8873. },
  8874. {
  8875. name: "Normal",
  8876. height: math.unit(59, "inches"),
  8877. default: true
  8878. },
  8879. {
  8880. name: "Macro",
  8881. height: math.unit(5900.0, "inches")
  8882. },
  8883. {
  8884. name: "Megamacro",
  8885. height: math.unit(295000.0, "inches")
  8886. },
  8887. {
  8888. name: "Gigamacro",
  8889. height: math.unit(590000000.0, "inches")
  8890. }
  8891. ]
  8892. )
  8893. };
  8894. pokemonMakers["Duosion"] = () => {
  8895. return makeCharacter(
  8896. { name: "Duosion" },
  8897. {
  8898. "Duosion": {
  8899. height: math.unit("24", "inches"),
  8900. weight: math.unit("17.6", "lbs"),
  8901. name: "Duosion",
  8902. image: {
  8903. source: "./media/pokemon/Duosion.svg"
  8904. },
  8905. rename: true
  8906. }
  8907. },
  8908. [
  8909. {
  8910. name: "Micro",
  8911. height: math.unit(2.4, "inches")
  8912. },
  8913. {
  8914. name: "Normal",
  8915. height: math.unit(24, "inches"),
  8916. default: true
  8917. },
  8918. {
  8919. name: "Macro",
  8920. height: math.unit(2400.0, "inches")
  8921. },
  8922. {
  8923. name: "Megamacro",
  8924. height: math.unit(120000.0, "inches")
  8925. },
  8926. {
  8927. name: "Gigamacro",
  8928. height: math.unit(240000000.0, "inches")
  8929. }
  8930. ]
  8931. )
  8932. };
  8933. pokemonMakers["Duraludon"] = () => {
  8934. return makeCharacter(
  8935. { name: "Duraludon" },
  8936. {
  8937. "Duraludon": {
  8938. height: math.unit("71", "inches"),
  8939. weight: math.unit("88.2", "lbs"),
  8940. name: "Duraludon",
  8941. image: {
  8942. source: "./media/pokemon/Duraludon.svg"
  8943. },
  8944. rename: true
  8945. },
  8946. "Gigantamax Duraludon": {
  8947. height: math.unit("1693", "inches"),
  8948. weight: math.unit("1195816.1468281222", "lbs"),
  8949. name: "Gigantamax Duraludon",
  8950. image: {
  8951. source: "./media/pokemon/Gigantamax Duraludon.svg"
  8952. },
  8953. rename: true
  8954. }
  8955. },
  8956. [
  8957. {
  8958. name: "Micro",
  8959. height: math.unit(7.1, "inches")
  8960. },
  8961. {
  8962. name: "Normal",
  8963. height: math.unit(71, "inches"),
  8964. default: true
  8965. },
  8966. {
  8967. name: "Macro",
  8968. height: math.unit(7100.0, "inches")
  8969. },
  8970. {
  8971. name: "Megamacro",
  8972. height: math.unit(355000.0, "inches")
  8973. },
  8974. {
  8975. name: "Gigamacro",
  8976. height: math.unit(710000000.0, "inches")
  8977. }
  8978. ]
  8979. )
  8980. };
  8981. pokemonMakers["Durant"] = () => {
  8982. return makeCharacter(
  8983. { name: "Durant" },
  8984. {
  8985. "Durant": {
  8986. height: math.unit("12", "inches"),
  8987. weight: math.unit("72.8", "lbs"),
  8988. name: "Durant",
  8989. image: {
  8990. source: "./media/pokemon/Durant.svg"
  8991. },
  8992. rename: true
  8993. }
  8994. },
  8995. [
  8996. {
  8997. name: "Micro",
  8998. height: math.unit(1.2, "inches")
  8999. },
  9000. {
  9001. name: "Normal",
  9002. height: math.unit(12, "inches"),
  9003. default: true
  9004. },
  9005. {
  9006. name: "Macro",
  9007. height: math.unit(1200.0, "inches")
  9008. },
  9009. {
  9010. name: "Megamacro",
  9011. height: math.unit(60000.0, "inches")
  9012. },
  9013. {
  9014. name: "Gigamacro",
  9015. height: math.unit(120000000.0, "inches")
  9016. }
  9017. ]
  9018. )
  9019. };
  9020. pokemonMakers["Dusclops"] = () => {
  9021. return makeCharacter(
  9022. { name: "Dusclops" },
  9023. {
  9024. "Dusclops": {
  9025. height: math.unit("63", "inches"),
  9026. weight: math.unit("67.5", "lbs"),
  9027. name: "Dusclops",
  9028. image: {
  9029. source: "./media/pokemon/Dusclops.svg"
  9030. },
  9031. rename: true
  9032. }
  9033. },
  9034. [
  9035. {
  9036. name: "Micro",
  9037. height: math.unit(6.3, "inches")
  9038. },
  9039. {
  9040. name: "Normal",
  9041. height: math.unit(63, "inches"),
  9042. default: true
  9043. },
  9044. {
  9045. name: "Macro",
  9046. height: math.unit(6300.0, "inches")
  9047. },
  9048. {
  9049. name: "Megamacro",
  9050. height: math.unit(315000.0, "inches")
  9051. },
  9052. {
  9053. name: "Gigamacro",
  9054. height: math.unit(630000000.0, "inches")
  9055. }
  9056. ]
  9057. )
  9058. };
  9059. pokemonMakers["Dusknoir"] = () => {
  9060. return makeCharacter(
  9061. { name: "Dusknoir" },
  9062. {
  9063. "Dusknoir": {
  9064. height: math.unit("87", "inches"),
  9065. weight: math.unit("235.0", "lbs"),
  9066. name: "Dusknoir",
  9067. image: {
  9068. source: "./media/pokemon/Dusknoir.svg"
  9069. },
  9070. rename: true
  9071. }
  9072. },
  9073. [
  9074. {
  9075. name: "Micro",
  9076. height: math.unit(8.7, "inches")
  9077. },
  9078. {
  9079. name: "Normal",
  9080. height: math.unit(87, "inches"),
  9081. default: true
  9082. },
  9083. {
  9084. name: "Macro",
  9085. height: math.unit(8700.0, "inches")
  9086. },
  9087. {
  9088. name: "Megamacro",
  9089. height: math.unit(435000.0, "inches")
  9090. },
  9091. {
  9092. name: "Gigamacro",
  9093. height: math.unit(870000000.0, "inches")
  9094. }
  9095. ]
  9096. )
  9097. };
  9098. pokemonMakers["Duskull"] = () => {
  9099. return makeCharacter(
  9100. { name: "Duskull" },
  9101. {
  9102. "Duskull": {
  9103. height: math.unit("31", "inches"),
  9104. weight: math.unit("33.1", "lbs"),
  9105. name: "Duskull",
  9106. image: {
  9107. source: "./media/pokemon/Duskull.svg"
  9108. },
  9109. rename: true
  9110. }
  9111. },
  9112. [
  9113. {
  9114. name: "Micro",
  9115. height: math.unit(3.1, "inches")
  9116. },
  9117. {
  9118. name: "Normal",
  9119. height: math.unit(31, "inches"),
  9120. default: true
  9121. },
  9122. {
  9123. name: "Macro",
  9124. height: math.unit(3100.0, "inches")
  9125. },
  9126. {
  9127. name: "Megamacro",
  9128. height: math.unit(155000.0, "inches")
  9129. },
  9130. {
  9131. name: "Gigamacro",
  9132. height: math.unit(310000000.0, "inches")
  9133. }
  9134. ]
  9135. )
  9136. };
  9137. pokemonMakers["Dustox"] = () => {
  9138. return makeCharacter(
  9139. { name: "Dustox" },
  9140. {
  9141. "Dustox": {
  9142. height: math.unit("47", "inches"),
  9143. weight: math.unit("69.7", "lbs"),
  9144. name: "Dustox",
  9145. image: {
  9146. source: "./media/pokemon/Dustox.svg"
  9147. },
  9148. rename: true
  9149. }
  9150. },
  9151. [
  9152. {
  9153. name: "Micro",
  9154. height: math.unit(4.7, "inches")
  9155. },
  9156. {
  9157. name: "Normal",
  9158. height: math.unit(47, "inches"),
  9159. default: true
  9160. },
  9161. {
  9162. name: "Macro",
  9163. height: math.unit(4700.0, "inches")
  9164. },
  9165. {
  9166. name: "Megamacro",
  9167. height: math.unit(235000.0, "inches")
  9168. },
  9169. {
  9170. name: "Gigamacro",
  9171. height: math.unit(470000000.0, "inches")
  9172. }
  9173. ]
  9174. )
  9175. };
  9176. pokemonMakers["Dwebble"] = () => {
  9177. return makeCharacter(
  9178. { name: "Dwebble" },
  9179. {
  9180. "Dwebble": {
  9181. height: math.unit("12", "inches"),
  9182. weight: math.unit("32.0", "lbs"),
  9183. name: "Dwebble",
  9184. image: {
  9185. source: "./media/pokemon/Dwebble.svg"
  9186. },
  9187. rename: true
  9188. }
  9189. },
  9190. [
  9191. {
  9192. name: "Micro",
  9193. height: math.unit(1.2, "inches")
  9194. },
  9195. {
  9196. name: "Normal",
  9197. height: math.unit(12, "inches"),
  9198. default: true
  9199. },
  9200. {
  9201. name: "Macro",
  9202. height: math.unit(1200.0, "inches")
  9203. },
  9204. {
  9205. name: "Megamacro",
  9206. height: math.unit(60000.0, "inches")
  9207. },
  9208. {
  9209. name: "Gigamacro",
  9210. height: math.unit(120000000.0, "inches")
  9211. }
  9212. ]
  9213. )
  9214. };
  9215. pokemonMakers["Eelektrik"] = () => {
  9216. return makeCharacter(
  9217. { name: "Eelektrik" },
  9218. {
  9219. "Eelektrik": {
  9220. height: math.unit("47", "inches"),
  9221. weight: math.unit("48.5", "lbs"),
  9222. name: "Eelektrik",
  9223. image: {
  9224. source: "./media/pokemon/Eelektrik.svg"
  9225. },
  9226. rename: true
  9227. }
  9228. },
  9229. [
  9230. {
  9231. name: "Micro",
  9232. height: math.unit(4.7, "inches")
  9233. },
  9234. {
  9235. name: "Normal",
  9236. height: math.unit(47, "inches"),
  9237. default: true
  9238. },
  9239. {
  9240. name: "Macro",
  9241. height: math.unit(4700.0, "inches")
  9242. },
  9243. {
  9244. name: "Megamacro",
  9245. height: math.unit(235000.0, "inches")
  9246. },
  9247. {
  9248. name: "Gigamacro",
  9249. height: math.unit(470000000.0, "inches")
  9250. }
  9251. ]
  9252. )
  9253. };
  9254. pokemonMakers["Eelektross"] = () => {
  9255. return makeCharacter(
  9256. { name: "Eelektross" },
  9257. {
  9258. "Eelektross": {
  9259. height: math.unit("83", "inches"),
  9260. weight: math.unit("177.5", "lbs"),
  9261. name: "Eelektross",
  9262. image: {
  9263. source: "./media/pokemon/Eelektross.svg"
  9264. },
  9265. rename: true
  9266. }
  9267. },
  9268. [
  9269. {
  9270. name: "Micro",
  9271. height: math.unit(8.3, "inches")
  9272. },
  9273. {
  9274. name: "Normal",
  9275. height: math.unit(83, "inches"),
  9276. default: true
  9277. },
  9278. {
  9279. name: "Macro",
  9280. height: math.unit(8300.0, "inches")
  9281. },
  9282. {
  9283. name: "Megamacro",
  9284. height: math.unit(415000.0, "inches")
  9285. },
  9286. {
  9287. name: "Gigamacro",
  9288. height: math.unit(830000000.0, "inches")
  9289. }
  9290. ]
  9291. )
  9292. };
  9293. pokemonMakers["Eevee"] = () => {
  9294. return makeCharacter(
  9295. { name: "Eevee" },
  9296. {
  9297. "Eevee": {
  9298. height: math.unit("12", "inches"),
  9299. weight: math.unit("14.3", "lbs"),
  9300. name: "Eevee",
  9301. image: {
  9302. source: "./media/pokemon/Eevee.svg"
  9303. },
  9304. rename: true
  9305. },
  9306. "Gigantamax Eevee": {
  9307. height: math.unit("709", "inches"),
  9308. weight: math.unit("2949381.860358797", "lbs"),
  9309. name: "Gigantamax Eevee",
  9310. image: {
  9311. source: "./media/pokemon/Gigantamax Eevee.svg"
  9312. },
  9313. rename: true
  9314. }
  9315. },
  9316. [
  9317. {
  9318. name: "Micro",
  9319. height: math.unit(1.2, "inches")
  9320. },
  9321. {
  9322. name: "Normal",
  9323. height: math.unit(12, "inches"),
  9324. default: true
  9325. },
  9326. {
  9327. name: "Macro",
  9328. height: math.unit(1200.0, "inches")
  9329. },
  9330. {
  9331. name: "Megamacro",
  9332. height: math.unit(60000.0, "inches")
  9333. },
  9334. {
  9335. name: "Gigamacro",
  9336. height: math.unit(120000000.0, "inches")
  9337. }
  9338. ]
  9339. )
  9340. };
  9341. pokemonMakers["Eiscue"] = () => {
  9342. return makeCharacter(
  9343. { name: "Eiscue" },
  9344. {
  9345. "Ice Face": {
  9346. height: math.unit("55", "inches"),
  9347. weight: math.unit("196.2", "lbs"),
  9348. name: "Ice Face",
  9349. image: {
  9350. source: "./media/pokemon/Eiscue - Ice Face.svg"
  9351. },
  9352. rename: true
  9353. }
  9354. },
  9355. [
  9356. {
  9357. name: "Micro",
  9358. height: math.unit(5.5, "inches")
  9359. },
  9360. {
  9361. name: "Normal",
  9362. height: math.unit(55, "inches"),
  9363. default: true
  9364. },
  9365. {
  9366. name: "Macro",
  9367. height: math.unit(5500.0, "inches")
  9368. },
  9369. {
  9370. name: "Megamacro",
  9371. height: math.unit(275000.0, "inches")
  9372. },
  9373. {
  9374. name: "Gigamacro",
  9375. height: math.unit(550000000.0, "inches")
  9376. }
  9377. ]
  9378. )
  9379. };
  9380. pokemonMakers["Ekans"] = () => {
  9381. return makeCharacter(
  9382. { name: "Ekans" },
  9383. {
  9384. "Ekans": {
  9385. height: math.unit("79", "inches"),
  9386. weight: math.unit("15.2", "lbs"),
  9387. name: "Ekans",
  9388. image: {
  9389. source: "./media/pokemon/Ekans.svg"
  9390. },
  9391. rename: true
  9392. }
  9393. },
  9394. [
  9395. {
  9396. name: "Micro",
  9397. height: math.unit(7.9, "inches")
  9398. },
  9399. {
  9400. name: "Normal",
  9401. height: math.unit(79, "inches"),
  9402. default: true
  9403. },
  9404. {
  9405. name: "Macro",
  9406. height: math.unit(7900.0, "inches")
  9407. },
  9408. {
  9409. name: "Megamacro",
  9410. height: math.unit(395000.0, "inches")
  9411. },
  9412. {
  9413. name: "Gigamacro",
  9414. height: math.unit(790000000.0, "inches")
  9415. }
  9416. ]
  9417. )
  9418. };
  9419. pokemonMakers["Eldegoss"] = () => {
  9420. return makeCharacter(
  9421. { name: "Eldegoss" },
  9422. {
  9423. "Eldegoss": {
  9424. height: math.unit("20", "inches"),
  9425. weight: math.unit("5.5", "lbs"),
  9426. name: "Eldegoss",
  9427. image: {
  9428. source: "./media/pokemon/Eldegoss.svg"
  9429. },
  9430. rename: true
  9431. }
  9432. },
  9433. [
  9434. {
  9435. name: "Micro",
  9436. height: math.unit(2.0, "inches")
  9437. },
  9438. {
  9439. name: "Normal",
  9440. height: math.unit(20, "inches"),
  9441. default: true
  9442. },
  9443. {
  9444. name: "Macro",
  9445. height: math.unit(2000.0, "inches")
  9446. },
  9447. {
  9448. name: "Megamacro",
  9449. height: math.unit(100000.0, "inches")
  9450. },
  9451. {
  9452. name: "Gigamacro",
  9453. height: math.unit(200000000.0, "inches")
  9454. }
  9455. ]
  9456. )
  9457. };
  9458. pokemonMakers["Electabuzz"] = () => {
  9459. return makeCharacter(
  9460. { name: "Electabuzz" },
  9461. {
  9462. "Electabuzz": {
  9463. height: math.unit("43", "inches"),
  9464. weight: math.unit("66.1", "lbs"),
  9465. name: "Electabuzz",
  9466. image: {
  9467. source: "./media/pokemon/Electabuzz.svg"
  9468. },
  9469. rename: true
  9470. }
  9471. },
  9472. [
  9473. {
  9474. name: "Micro",
  9475. height: math.unit(4.3, "inches")
  9476. },
  9477. {
  9478. name: "Normal",
  9479. height: math.unit(43, "inches"),
  9480. default: true
  9481. },
  9482. {
  9483. name: "Macro",
  9484. height: math.unit(4300.0, "inches")
  9485. },
  9486. {
  9487. name: "Megamacro",
  9488. height: math.unit(215000.0, "inches")
  9489. },
  9490. {
  9491. name: "Gigamacro",
  9492. height: math.unit(430000000.0, "inches")
  9493. }
  9494. ]
  9495. )
  9496. };
  9497. pokemonMakers["Electivire"] = () => {
  9498. return makeCharacter(
  9499. { name: "Electivire" },
  9500. {
  9501. "Electivire": {
  9502. height: math.unit("71", "inches"),
  9503. weight: math.unit("305.6", "lbs"),
  9504. name: "Electivire",
  9505. image: {
  9506. source: "./media/pokemon/Electivire.svg"
  9507. },
  9508. rename: true
  9509. }
  9510. },
  9511. [
  9512. {
  9513. name: "Micro",
  9514. height: math.unit(7.1, "inches")
  9515. },
  9516. {
  9517. name: "Normal",
  9518. height: math.unit(71, "inches"),
  9519. default: true
  9520. },
  9521. {
  9522. name: "Macro",
  9523. height: math.unit(7100.0, "inches")
  9524. },
  9525. {
  9526. name: "Megamacro",
  9527. height: math.unit(355000.0, "inches")
  9528. },
  9529. {
  9530. name: "Gigamacro",
  9531. height: math.unit(710000000.0, "inches")
  9532. }
  9533. ]
  9534. )
  9535. };
  9536. pokemonMakers["Electrike"] = () => {
  9537. return makeCharacter(
  9538. { name: "Electrike" },
  9539. {
  9540. "Electrike": {
  9541. height: math.unit("24", "inches"),
  9542. weight: math.unit("33.5", "lbs"),
  9543. name: "Electrike",
  9544. image: {
  9545. source: "./media/pokemon/Electrike.svg"
  9546. },
  9547. rename: true
  9548. }
  9549. },
  9550. [
  9551. {
  9552. name: "Micro",
  9553. height: math.unit(2.4, "inches")
  9554. },
  9555. {
  9556. name: "Normal",
  9557. height: math.unit(24, "inches"),
  9558. default: true
  9559. },
  9560. {
  9561. name: "Macro",
  9562. height: math.unit(2400.0, "inches")
  9563. },
  9564. {
  9565. name: "Megamacro",
  9566. height: math.unit(120000.0, "inches")
  9567. },
  9568. {
  9569. name: "Gigamacro",
  9570. height: math.unit(240000000.0, "inches")
  9571. }
  9572. ]
  9573. )
  9574. };
  9575. pokemonMakers["Electrode"] = () => {
  9576. return makeCharacter(
  9577. { name: "Electrode" },
  9578. {
  9579. "Electrode": {
  9580. height: math.unit("47", "inches"),
  9581. weight: math.unit("146.8", "lbs"),
  9582. name: "Electrode",
  9583. image: {
  9584. source: "./media/pokemon/Electrode.svg"
  9585. },
  9586. rename: true
  9587. }
  9588. },
  9589. [
  9590. {
  9591. name: "Micro",
  9592. height: math.unit(4.7, "inches")
  9593. },
  9594. {
  9595. name: "Normal",
  9596. height: math.unit(47, "inches"),
  9597. default: true
  9598. },
  9599. {
  9600. name: "Macro",
  9601. height: math.unit(4700.0, "inches")
  9602. },
  9603. {
  9604. name: "Megamacro",
  9605. height: math.unit(235000.0, "inches")
  9606. },
  9607. {
  9608. name: "Gigamacro",
  9609. height: math.unit(470000000.0, "inches")
  9610. }
  9611. ]
  9612. )
  9613. };
  9614. pokemonMakers["Elekid"] = () => {
  9615. return makeCharacter(
  9616. { name: "Elekid" },
  9617. {
  9618. "Elekid": {
  9619. height: math.unit("24", "inches"),
  9620. weight: math.unit("51.8", "lbs"),
  9621. name: "Elekid",
  9622. image: {
  9623. source: "./media/pokemon/Elekid.svg"
  9624. },
  9625. rename: true
  9626. }
  9627. },
  9628. [
  9629. {
  9630. name: "Micro",
  9631. height: math.unit(2.4, "inches")
  9632. },
  9633. {
  9634. name: "Normal",
  9635. height: math.unit(24, "inches"),
  9636. default: true
  9637. },
  9638. {
  9639. name: "Macro",
  9640. height: math.unit(2400.0, "inches")
  9641. },
  9642. {
  9643. name: "Megamacro",
  9644. height: math.unit(120000.0, "inches")
  9645. },
  9646. {
  9647. name: "Gigamacro",
  9648. height: math.unit(240000000.0, "inches")
  9649. }
  9650. ]
  9651. )
  9652. };
  9653. pokemonMakers["Elgyem"] = () => {
  9654. return makeCharacter(
  9655. { name: "Elgyem" },
  9656. {
  9657. "Elgyem": {
  9658. height: math.unit("20", "inches"),
  9659. weight: math.unit("19.8", "lbs"),
  9660. name: "Elgyem",
  9661. image: {
  9662. source: "./media/pokemon/Elgyem.svg"
  9663. },
  9664. rename: true
  9665. }
  9666. },
  9667. [
  9668. {
  9669. name: "Micro",
  9670. height: math.unit(2.0, "inches")
  9671. },
  9672. {
  9673. name: "Normal",
  9674. height: math.unit(20, "inches"),
  9675. default: true
  9676. },
  9677. {
  9678. name: "Macro",
  9679. height: math.unit(2000.0, "inches")
  9680. },
  9681. {
  9682. name: "Megamacro",
  9683. height: math.unit(100000.0, "inches")
  9684. },
  9685. {
  9686. name: "Gigamacro",
  9687. height: math.unit(200000000.0, "inches")
  9688. }
  9689. ]
  9690. )
  9691. };
  9692. pokemonMakers["Emboar"] = () => {
  9693. return makeCharacter(
  9694. { name: "Emboar" },
  9695. {
  9696. "Emboar": {
  9697. height: math.unit("63", "inches"),
  9698. weight: math.unit("330.7", "lbs"),
  9699. name: "Emboar",
  9700. image: {
  9701. source: "./media/pokemon/Emboar.svg"
  9702. },
  9703. rename: true
  9704. }
  9705. },
  9706. [
  9707. {
  9708. name: "Micro",
  9709. height: math.unit(6.3, "inches")
  9710. },
  9711. {
  9712. name: "Normal",
  9713. height: math.unit(63, "inches"),
  9714. default: true
  9715. },
  9716. {
  9717. name: "Macro",
  9718. height: math.unit(6300.0, "inches")
  9719. },
  9720. {
  9721. name: "Megamacro",
  9722. height: math.unit(315000.0, "inches")
  9723. },
  9724. {
  9725. name: "Gigamacro",
  9726. height: math.unit(630000000.0, "inches")
  9727. }
  9728. ]
  9729. )
  9730. };
  9731. pokemonMakers["Emolga"] = () => {
  9732. return makeCharacter(
  9733. { name: "Emolga" },
  9734. {
  9735. "Emolga": {
  9736. height: math.unit("16", "inches"),
  9737. weight: math.unit("11.0", "lbs"),
  9738. name: "Emolga",
  9739. image: {
  9740. source: "./media/pokemon/Emolga.svg"
  9741. },
  9742. rename: true
  9743. }
  9744. },
  9745. [
  9746. {
  9747. name: "Micro",
  9748. height: math.unit(1.6, "inches")
  9749. },
  9750. {
  9751. name: "Normal",
  9752. height: math.unit(16, "inches"),
  9753. default: true
  9754. },
  9755. {
  9756. name: "Macro",
  9757. height: math.unit(1600.0, "inches")
  9758. },
  9759. {
  9760. name: "Megamacro",
  9761. height: math.unit(80000.0, "inches")
  9762. },
  9763. {
  9764. name: "Gigamacro",
  9765. height: math.unit(160000000.0, "inches")
  9766. }
  9767. ]
  9768. )
  9769. };
  9770. pokemonMakers["Empoleon"] = () => {
  9771. return makeCharacter(
  9772. { name: "Empoleon" },
  9773. {
  9774. "Empoleon": {
  9775. height: math.unit("67", "inches"),
  9776. weight: math.unit("186.3", "lbs"),
  9777. name: "Empoleon",
  9778. image: {
  9779. source: "./media/pokemon/Empoleon.svg"
  9780. },
  9781. rename: true
  9782. }
  9783. },
  9784. [
  9785. {
  9786. name: "Micro",
  9787. height: math.unit(6.7, "inches")
  9788. },
  9789. {
  9790. name: "Normal",
  9791. height: math.unit(67, "inches"),
  9792. default: true
  9793. },
  9794. {
  9795. name: "Macro",
  9796. height: math.unit(6700.0, "inches")
  9797. },
  9798. {
  9799. name: "Megamacro",
  9800. height: math.unit(335000.0, "inches")
  9801. },
  9802. {
  9803. name: "Gigamacro",
  9804. height: math.unit(670000000.0, "inches")
  9805. }
  9806. ]
  9807. )
  9808. };
  9809. pokemonMakers["Entei"] = () => {
  9810. return makeCharacter(
  9811. { name: "Entei" },
  9812. {
  9813. "Entei": {
  9814. height: math.unit("83", "inches"),
  9815. weight: math.unit("436.5", "lbs"),
  9816. name: "Entei",
  9817. image: {
  9818. source: "./media/pokemon/Entei.svg"
  9819. },
  9820. rename: true
  9821. }
  9822. },
  9823. [
  9824. {
  9825. name: "Micro",
  9826. height: math.unit(8.3, "inches")
  9827. },
  9828. {
  9829. name: "Normal",
  9830. height: math.unit(83, "inches"),
  9831. default: true
  9832. },
  9833. {
  9834. name: "Macro",
  9835. height: math.unit(8300.0, "inches")
  9836. },
  9837. {
  9838. name: "Megamacro",
  9839. height: math.unit(415000.0, "inches")
  9840. },
  9841. {
  9842. name: "Gigamacro",
  9843. height: math.unit(830000000.0, "inches")
  9844. }
  9845. ]
  9846. )
  9847. };
  9848. pokemonMakers["Escavalier"] = () => {
  9849. return makeCharacter(
  9850. { name: "Escavalier" },
  9851. {
  9852. "Escavalier": {
  9853. height: math.unit("39", "inches"),
  9854. weight: math.unit("72.8", "lbs"),
  9855. name: "Escavalier",
  9856. image: {
  9857. source: "./media/pokemon/Escavalier.svg"
  9858. },
  9859. rename: true
  9860. }
  9861. },
  9862. [
  9863. {
  9864. name: "Micro",
  9865. height: math.unit(3.9, "inches")
  9866. },
  9867. {
  9868. name: "Normal",
  9869. height: math.unit(39, "inches"),
  9870. default: true
  9871. },
  9872. {
  9873. name: "Macro",
  9874. height: math.unit(3900.0, "inches")
  9875. },
  9876. {
  9877. name: "Megamacro",
  9878. height: math.unit(195000.0, "inches")
  9879. },
  9880. {
  9881. name: "Gigamacro",
  9882. height: math.unit(390000000.0, "inches")
  9883. }
  9884. ]
  9885. )
  9886. };
  9887. pokemonMakers["Espeon"] = () => {
  9888. return makeCharacter(
  9889. { name: "Espeon" },
  9890. {
  9891. "Espeon": {
  9892. height: math.unit("35", "inches"),
  9893. weight: math.unit("58.4", "lbs"),
  9894. name: "Espeon",
  9895. image: {
  9896. source: "./media/pokemon/Espeon.svg"
  9897. },
  9898. rename: true
  9899. }
  9900. },
  9901. [
  9902. {
  9903. name: "Micro",
  9904. height: math.unit(3.5, "inches")
  9905. },
  9906. {
  9907. name: "Normal",
  9908. height: math.unit(35, "inches"),
  9909. default: true
  9910. },
  9911. {
  9912. name: "Macro",
  9913. height: math.unit(3500.0, "inches")
  9914. },
  9915. {
  9916. name: "Megamacro",
  9917. height: math.unit(175000.0, "inches")
  9918. },
  9919. {
  9920. name: "Gigamacro",
  9921. height: math.unit(350000000.0, "inches")
  9922. }
  9923. ]
  9924. )
  9925. };
  9926. pokemonMakers["Espurr"] = () => {
  9927. return makeCharacter(
  9928. { name: "Espurr" },
  9929. {
  9930. "Espurr": {
  9931. height: math.unit("12", "inches"),
  9932. weight: math.unit("7.7", "lbs"),
  9933. name: "Espurr",
  9934. image: {
  9935. source: "./media/pokemon/Espurr.svg"
  9936. },
  9937. rename: true
  9938. }
  9939. },
  9940. [
  9941. {
  9942. name: "Micro",
  9943. height: math.unit(1.2, "inches")
  9944. },
  9945. {
  9946. name: "Normal",
  9947. height: math.unit(12, "inches"),
  9948. default: true
  9949. },
  9950. {
  9951. name: "Macro",
  9952. height: math.unit(1200.0, "inches")
  9953. },
  9954. {
  9955. name: "Megamacro",
  9956. height: math.unit(60000.0, "inches")
  9957. },
  9958. {
  9959. name: "Gigamacro",
  9960. height: math.unit(120000000.0, "inches")
  9961. }
  9962. ]
  9963. )
  9964. };
  9965. pokemonMakers["Eternatus"] = () => {
  9966. return makeCharacter(
  9967. { name: "Eternatus" },
  9968. {
  9969. "Eternatus": {
  9970. height: math.unit("787", "inches"),
  9971. weight: math.unit("2094.4", "lbs"),
  9972. name: "Eternatus",
  9973. image: {
  9974. source: "./media/pokemon/Eternatus.svg"
  9975. },
  9976. rename: true
  9977. }
  9978. },
  9979. [
  9980. {
  9981. name: "Micro",
  9982. height: math.unit(78.7, "inches")
  9983. },
  9984. {
  9985. name: "Normal",
  9986. height: math.unit(787, "inches"),
  9987. default: true
  9988. },
  9989. {
  9990. name: "Macro",
  9991. height: math.unit(78700.0, "inches")
  9992. },
  9993. {
  9994. name: "Megamacro",
  9995. height: math.unit(3935000.0, "inches")
  9996. },
  9997. {
  9998. name: "Gigamacro",
  9999. height: math.unit(7870000000.0, "inches")
  10000. }
  10001. ]
  10002. )
  10003. };
  10004. pokemonMakers["Excadrill"] = () => {
  10005. return makeCharacter(
  10006. { name: "Excadrill" },
  10007. {
  10008. "Excadrill": {
  10009. height: math.unit("28", "inches"),
  10010. weight: math.unit("89.1", "lbs"),
  10011. name: "Excadrill",
  10012. image: {
  10013. source: "./media/pokemon/Excadrill.svg"
  10014. },
  10015. rename: true
  10016. }
  10017. },
  10018. [
  10019. {
  10020. name: "Micro",
  10021. height: math.unit(2.8, "inches")
  10022. },
  10023. {
  10024. name: "Normal",
  10025. height: math.unit(28, "inches"),
  10026. default: true
  10027. },
  10028. {
  10029. name: "Macro",
  10030. height: math.unit(2800.0, "inches")
  10031. },
  10032. {
  10033. name: "Megamacro",
  10034. height: math.unit(140000.0, "inches")
  10035. },
  10036. {
  10037. name: "Gigamacro",
  10038. height: math.unit(280000000.0, "inches")
  10039. }
  10040. ]
  10041. )
  10042. };
  10043. pokemonMakers["Exeggcute"] = () => {
  10044. return makeCharacter(
  10045. { name: "Exeggcute" },
  10046. {
  10047. "Exeggcute": {
  10048. height: math.unit("16", "inches"),
  10049. weight: math.unit("5.5", "lbs"),
  10050. name: "Exeggcute",
  10051. image: {
  10052. source: "./media/pokemon/Exeggcute.svg"
  10053. },
  10054. rename: true
  10055. }
  10056. },
  10057. [
  10058. {
  10059. name: "Micro",
  10060. height: math.unit(1.6, "inches")
  10061. },
  10062. {
  10063. name: "Normal",
  10064. height: math.unit(16, "inches"),
  10065. default: true
  10066. },
  10067. {
  10068. name: "Macro",
  10069. height: math.unit(1600.0, "inches")
  10070. },
  10071. {
  10072. name: "Megamacro",
  10073. height: math.unit(80000.0, "inches")
  10074. },
  10075. {
  10076. name: "Gigamacro",
  10077. height: math.unit(160000000.0, "inches")
  10078. }
  10079. ]
  10080. )
  10081. };
  10082. pokemonMakers["Exeggutor"] = () => {
  10083. return makeCharacter(
  10084. { name: "Exeggutor" },
  10085. {
  10086. "Alola Form": {
  10087. height: math.unit("429", "inches"),
  10088. weight: math.unit("916.2", "lbs"),
  10089. name: "Alola Form",
  10090. image: {
  10091. source: "./media/pokemon/Exeggutor - Alola Form.svg"
  10092. },
  10093. rename: true
  10094. },
  10095. "Exeggutor": {
  10096. height: math.unit("79", "inches"),
  10097. weight: math.unit("264.6", "lbs"),
  10098. name: "Exeggutor",
  10099. image: {
  10100. source: "./media/pokemon/Exeggutor.svg"
  10101. },
  10102. rename: true
  10103. }
  10104. },
  10105. [
  10106. {
  10107. name: "Micro",
  10108. height: math.unit(42.9, "inches")
  10109. },
  10110. {
  10111. name: "Normal",
  10112. height: math.unit(429, "inches"),
  10113. default: true
  10114. },
  10115. {
  10116. name: "Macro",
  10117. height: math.unit(42900.0, "inches")
  10118. },
  10119. {
  10120. name: "Megamacro",
  10121. height: math.unit(2145000.0, "inches")
  10122. },
  10123. {
  10124. name: "Gigamacro",
  10125. height: math.unit(4290000000.0, "inches")
  10126. }
  10127. ]
  10128. )
  10129. };
  10130. pokemonMakers["Exploud"] = () => {
  10131. return makeCharacter(
  10132. { name: "Exploud" },
  10133. {
  10134. "Exploud": {
  10135. height: math.unit("59", "inches"),
  10136. weight: math.unit("185.2", "lbs"),
  10137. name: "Exploud",
  10138. image: {
  10139. source: "./media/pokemon/Exploud.svg"
  10140. },
  10141. rename: true
  10142. }
  10143. },
  10144. [
  10145. {
  10146. name: "Micro",
  10147. height: math.unit(5.9, "inches")
  10148. },
  10149. {
  10150. name: "Normal",
  10151. height: math.unit(59, "inches"),
  10152. default: true
  10153. },
  10154. {
  10155. name: "Macro",
  10156. height: math.unit(5900.0, "inches")
  10157. },
  10158. {
  10159. name: "Megamacro",
  10160. height: math.unit(295000.0, "inches")
  10161. },
  10162. {
  10163. name: "Gigamacro",
  10164. height: math.unit(590000000.0, "inches")
  10165. }
  10166. ]
  10167. )
  10168. };
  10169. pokemonMakers["Falinks"] = () => {
  10170. return makeCharacter(
  10171. { name: "Falinks" },
  10172. {
  10173. "Falinks": {
  10174. height: math.unit("118", "inches"),
  10175. weight: math.unit("136.7", "lbs"),
  10176. name: "Falinks",
  10177. image: {
  10178. source: "./media/pokemon/Falinks.svg"
  10179. },
  10180. rename: true
  10181. }
  10182. },
  10183. [
  10184. {
  10185. name: "Micro",
  10186. height: math.unit(11.8, "inches")
  10187. },
  10188. {
  10189. name: "Normal",
  10190. height: math.unit(118, "inches"),
  10191. default: true
  10192. },
  10193. {
  10194. name: "Macro",
  10195. height: math.unit(11800.0, "inches")
  10196. },
  10197. {
  10198. name: "Megamacro",
  10199. height: math.unit(590000.0, "inches")
  10200. },
  10201. {
  10202. name: "Gigamacro",
  10203. height: math.unit(1180000000.0, "inches")
  10204. }
  10205. ]
  10206. )
  10207. };
  10208. pokemonMakers["Rotom"] = () => {
  10209. return makeCharacter(
  10210. { name: "Rotom" },
  10211. {
  10212. "Fan Rotom": {
  10213. height: math.unit("12", "inches"),
  10214. weight: math.unit("0.7", "lbs"),
  10215. name: "Fan Rotom",
  10216. image: {
  10217. source: "./media/pokemon/Fan Rotom.svg"
  10218. },
  10219. rename: true
  10220. },
  10221. "Frost Rotom": {
  10222. height: math.unit("12", "inches"),
  10223. weight: math.unit("0.7", "lbs"),
  10224. name: "Frost Rotom",
  10225. image: {
  10226. source: "./media/pokemon/Frost Rotom.svg"
  10227. },
  10228. rename: true
  10229. },
  10230. "Heat Rotom": {
  10231. height: math.unit("12", "inches"),
  10232. weight: math.unit("0.7", "lbs"),
  10233. name: "Heat Rotom",
  10234. image: {
  10235. source: "./media/pokemon/Heat Rotom.svg"
  10236. },
  10237. rename: true
  10238. },
  10239. "Mow Rotom": {
  10240. height: math.unit("12", "inches"),
  10241. weight: math.unit("0.7", "lbs"),
  10242. name: "Mow Rotom",
  10243. image: {
  10244. source: "./media/pokemon/Mow Rotom.svg"
  10245. },
  10246. rename: true
  10247. },
  10248. "Rotom": {
  10249. height: math.unit("12", "inches"),
  10250. weight: math.unit("0.7", "lbs"),
  10251. name: "Rotom",
  10252. image: {
  10253. source: "./media/pokemon/Rotom.svg"
  10254. },
  10255. rename: true
  10256. },
  10257. "Wash Rotom": {
  10258. height: math.unit("12", "inches"),
  10259. weight: math.unit("0.7", "lbs"),
  10260. name: "Wash Rotom",
  10261. image: {
  10262. source: "./media/pokemon/Wash Rotom.svg"
  10263. },
  10264. rename: true
  10265. }
  10266. },
  10267. [
  10268. {
  10269. name: "Micro",
  10270. height: math.unit(1.2, "inches")
  10271. },
  10272. {
  10273. name: "Normal",
  10274. height: math.unit(12, "inches"),
  10275. default: true
  10276. },
  10277. {
  10278. name: "Macro",
  10279. height: math.unit(1200.0, "inches")
  10280. },
  10281. {
  10282. name: "Megamacro",
  10283. height: math.unit(60000.0, "inches")
  10284. },
  10285. {
  10286. name: "Gigamacro",
  10287. height: math.unit(120000000.0, "inches")
  10288. }
  10289. ]
  10290. )
  10291. };
  10292. pokemonMakers["Farfetch'd"] = () => {
  10293. return makeCharacter(
  10294. { name: "Farfetch'd" },
  10295. {
  10296. "Galarian Form": {
  10297. height: math.unit("31", "inches"),
  10298. weight: math.unit("92.6", "lbs"),
  10299. name: "Galarian Form",
  10300. image: {
  10301. source: "./media/pokemon/Farfetch'd - Galarian Form.svg"
  10302. },
  10303. rename: true
  10304. },
  10305. "Farfetch'd": {
  10306. height: math.unit("31", "inches"),
  10307. weight: math.unit("33.1", "lbs"),
  10308. name: "Farfetch'd",
  10309. image: {
  10310. source: "./media/pokemon/Farfetch'd.svg"
  10311. },
  10312. rename: true
  10313. }
  10314. },
  10315. [
  10316. {
  10317. name: "Micro",
  10318. height: math.unit(3.1, "inches")
  10319. },
  10320. {
  10321. name: "Normal",
  10322. height: math.unit(31, "inches"),
  10323. default: true
  10324. },
  10325. {
  10326. name: "Macro",
  10327. height: math.unit(3100.0, "inches")
  10328. },
  10329. {
  10330. name: "Megamacro",
  10331. height: math.unit(155000.0, "inches")
  10332. },
  10333. {
  10334. name: "Gigamacro",
  10335. height: math.unit(310000000.0, "inches")
  10336. }
  10337. ]
  10338. )
  10339. };
  10340. pokemonMakers["Fearow"] = () => {
  10341. return makeCharacter(
  10342. { name: "Fearow" },
  10343. {
  10344. "Fearow": {
  10345. height: math.unit("47", "inches"),
  10346. weight: math.unit("83.8", "lbs"),
  10347. name: "Fearow",
  10348. image: {
  10349. source: "./media/pokemon/Fearow.svg"
  10350. },
  10351. rename: true
  10352. }
  10353. },
  10354. [
  10355. {
  10356. name: "Micro",
  10357. height: math.unit(4.7, "inches")
  10358. },
  10359. {
  10360. name: "Normal",
  10361. height: math.unit(47, "inches"),
  10362. default: true
  10363. },
  10364. {
  10365. name: "Macro",
  10366. height: math.unit(4700.0, "inches")
  10367. },
  10368. {
  10369. name: "Megamacro",
  10370. height: math.unit(235000.0, "inches")
  10371. },
  10372. {
  10373. name: "Gigamacro",
  10374. height: math.unit(470000000.0, "inches")
  10375. }
  10376. ]
  10377. )
  10378. };
  10379. pokemonMakers["Feebas"] = () => {
  10380. return makeCharacter(
  10381. { name: "Feebas" },
  10382. {
  10383. "Feebas": {
  10384. height: math.unit("24", "inches"),
  10385. weight: math.unit("16.3", "lbs"),
  10386. name: "Feebas",
  10387. image: {
  10388. source: "./media/pokemon/Feebas.svg"
  10389. },
  10390. rename: true
  10391. }
  10392. },
  10393. [
  10394. {
  10395. name: "Micro",
  10396. height: math.unit(2.4, "inches")
  10397. },
  10398. {
  10399. name: "Normal",
  10400. height: math.unit(24, "inches"),
  10401. default: true
  10402. },
  10403. {
  10404. name: "Macro",
  10405. height: math.unit(2400.0, "inches")
  10406. },
  10407. {
  10408. name: "Megamacro",
  10409. height: math.unit(120000.0, "inches")
  10410. },
  10411. {
  10412. name: "Gigamacro",
  10413. height: math.unit(240000000.0, "inches")
  10414. }
  10415. ]
  10416. )
  10417. };
  10418. pokemonMakers["Fennekin"] = () => {
  10419. return makeCharacter(
  10420. { name: "Fennekin" },
  10421. {
  10422. "Fennekin": {
  10423. height: math.unit("16", "inches"),
  10424. weight: math.unit("20.7", "lbs"),
  10425. name: "Fennekin",
  10426. image: {
  10427. source: "./media/pokemon/Fennekin.svg"
  10428. },
  10429. rename: true
  10430. }
  10431. },
  10432. [
  10433. {
  10434. name: "Micro",
  10435. height: math.unit(1.6, "inches")
  10436. },
  10437. {
  10438. name: "Normal",
  10439. height: math.unit(16, "inches"),
  10440. default: true
  10441. },
  10442. {
  10443. name: "Macro",
  10444. height: math.unit(1600.0, "inches")
  10445. },
  10446. {
  10447. name: "Megamacro",
  10448. height: math.unit(80000.0, "inches")
  10449. },
  10450. {
  10451. name: "Gigamacro",
  10452. height: math.unit(160000000.0, "inches")
  10453. }
  10454. ]
  10455. )
  10456. };
  10457. pokemonMakers["Feraligatr"] = () => {
  10458. return makeCharacter(
  10459. { name: "Feraligatr" },
  10460. {
  10461. "Feraligatr": {
  10462. height: math.unit("91", "inches"),
  10463. weight: math.unit("195.8", "lbs"),
  10464. name: "Feraligatr",
  10465. image: {
  10466. source: "./media/pokemon/Feraligatr.svg"
  10467. },
  10468. rename: true
  10469. }
  10470. },
  10471. [
  10472. {
  10473. name: "Micro",
  10474. height: math.unit(9.1, "inches")
  10475. },
  10476. {
  10477. name: "Normal",
  10478. height: math.unit(91, "inches"),
  10479. default: true
  10480. },
  10481. {
  10482. name: "Macro",
  10483. height: math.unit(9100.0, "inches")
  10484. },
  10485. {
  10486. name: "Megamacro",
  10487. height: math.unit(455000.0, "inches")
  10488. },
  10489. {
  10490. name: "Gigamacro",
  10491. height: math.unit(910000000.0, "inches")
  10492. }
  10493. ]
  10494. )
  10495. };
  10496. pokemonMakers["Ferroseed"] = () => {
  10497. return makeCharacter(
  10498. { name: "Ferroseed" },
  10499. {
  10500. "Ferroseed": {
  10501. height: math.unit("24", "inches"),
  10502. weight: math.unit("41.4", "lbs"),
  10503. name: "Ferroseed",
  10504. image: {
  10505. source: "./media/pokemon/Ferroseed.svg"
  10506. },
  10507. rename: true
  10508. }
  10509. },
  10510. [
  10511. {
  10512. name: "Micro",
  10513. height: math.unit(2.4, "inches")
  10514. },
  10515. {
  10516. name: "Normal",
  10517. height: math.unit(24, "inches"),
  10518. default: true
  10519. },
  10520. {
  10521. name: "Macro",
  10522. height: math.unit(2400.0, "inches")
  10523. },
  10524. {
  10525. name: "Megamacro",
  10526. height: math.unit(120000.0, "inches")
  10527. },
  10528. {
  10529. name: "Gigamacro",
  10530. height: math.unit(240000000.0, "inches")
  10531. }
  10532. ]
  10533. )
  10534. };
  10535. pokemonMakers["Ferrothorn"] = () => {
  10536. return makeCharacter(
  10537. { name: "Ferrothorn" },
  10538. {
  10539. "Ferrothorn": {
  10540. height: math.unit("39", "inches"),
  10541. weight: math.unit("242.5", "lbs"),
  10542. name: "Ferrothorn",
  10543. image: {
  10544. source: "./media/pokemon/Ferrothorn.svg"
  10545. },
  10546. rename: true
  10547. }
  10548. },
  10549. [
  10550. {
  10551. name: "Micro",
  10552. height: math.unit(3.9, "inches")
  10553. },
  10554. {
  10555. name: "Normal",
  10556. height: math.unit(39, "inches"),
  10557. default: true
  10558. },
  10559. {
  10560. name: "Macro",
  10561. height: math.unit(3900.0, "inches")
  10562. },
  10563. {
  10564. name: "Megamacro",
  10565. height: math.unit(195000.0, "inches")
  10566. },
  10567. {
  10568. name: "Gigamacro",
  10569. height: math.unit(390000000.0, "inches")
  10570. }
  10571. ]
  10572. )
  10573. };
  10574. pokemonMakers["Finneon"] = () => {
  10575. return makeCharacter(
  10576. { name: "Finneon" },
  10577. {
  10578. "Finneon": {
  10579. height: math.unit("16", "inches"),
  10580. weight: math.unit("15.4", "lbs"),
  10581. name: "Finneon",
  10582. image: {
  10583. source: "./media/pokemon/Finneon.svg"
  10584. },
  10585. rename: true
  10586. }
  10587. },
  10588. [
  10589. {
  10590. name: "Micro",
  10591. height: math.unit(1.6, "inches")
  10592. },
  10593. {
  10594. name: "Normal",
  10595. height: math.unit(16, "inches"),
  10596. default: true
  10597. },
  10598. {
  10599. name: "Macro",
  10600. height: math.unit(1600.0, "inches")
  10601. },
  10602. {
  10603. name: "Megamacro",
  10604. height: math.unit(80000.0, "inches")
  10605. },
  10606. {
  10607. name: "Gigamacro",
  10608. height: math.unit(160000000.0, "inches")
  10609. }
  10610. ]
  10611. )
  10612. };
  10613. pokemonMakers["Flaaffy"] = () => {
  10614. return makeCharacter(
  10615. { name: "Flaaffy" },
  10616. {
  10617. "Flaaffy": {
  10618. height: math.unit("31", "inches"),
  10619. weight: math.unit("29.3", "lbs"),
  10620. name: "Flaaffy",
  10621. image: {
  10622. source: "./media/pokemon/Flaaffy.svg"
  10623. },
  10624. rename: true
  10625. }
  10626. },
  10627. [
  10628. {
  10629. name: "Micro",
  10630. height: math.unit(3.1, "inches")
  10631. },
  10632. {
  10633. name: "Normal",
  10634. height: math.unit(31, "inches"),
  10635. default: true
  10636. },
  10637. {
  10638. name: "Macro",
  10639. height: math.unit(3100.0, "inches")
  10640. },
  10641. {
  10642. name: "Megamacro",
  10643. height: math.unit(155000.0, "inches")
  10644. },
  10645. {
  10646. name: "Gigamacro",
  10647. height: math.unit(310000000.0, "inches")
  10648. }
  10649. ]
  10650. )
  10651. };
  10652. pokemonMakers["Flabébé"] = () => {
  10653. return makeCharacter(
  10654. { name: "Flabébé" },
  10655. {
  10656. "Flabébé": {
  10657. height: math.unit("4", "inches"),
  10658. weight: math.unit("0.2", "lbs"),
  10659. name: "Flabébé",
  10660. image: {
  10661. source: "./media/pokemon/Flabébé.svg"
  10662. },
  10663. rename: true
  10664. }
  10665. },
  10666. [
  10667. {
  10668. name: "Micro",
  10669. height: math.unit(0.4, "inches")
  10670. },
  10671. {
  10672. name: "Normal",
  10673. height: math.unit(4, "inches"),
  10674. default: true
  10675. },
  10676. {
  10677. name: "Macro",
  10678. height: math.unit(400.0, "inches")
  10679. },
  10680. {
  10681. name: "Megamacro",
  10682. height: math.unit(20000.0, "inches")
  10683. },
  10684. {
  10685. name: "Gigamacro",
  10686. height: math.unit(40000000.0, "inches")
  10687. }
  10688. ]
  10689. )
  10690. };
  10691. pokemonMakers["Flapple"] = () => {
  10692. return makeCharacter(
  10693. { name: "Flapple" },
  10694. {
  10695. "Flapple": {
  10696. height: math.unit("12", "inches"),
  10697. weight: math.unit("2.2", "lbs"),
  10698. name: "Flapple",
  10699. image: {
  10700. source: "./media/pokemon/Flapple.svg"
  10701. },
  10702. rename: true
  10703. },
  10704. "Gigantamax Flapple": {
  10705. height: math.unit("945", "inches"),
  10706. weight: math.unit("1074420.703125", "lbs"),
  10707. name: "Gigantamax Flapple",
  10708. image: {
  10709. source: "./media/pokemon/Gigantamax Flapple.svg"
  10710. },
  10711. rename: true
  10712. }
  10713. },
  10714. [
  10715. {
  10716. name: "Micro",
  10717. height: math.unit(1.2, "inches")
  10718. },
  10719. {
  10720. name: "Normal",
  10721. height: math.unit(12, "inches"),
  10722. default: true
  10723. },
  10724. {
  10725. name: "Macro",
  10726. height: math.unit(1200.0, "inches")
  10727. },
  10728. {
  10729. name: "Megamacro",
  10730. height: math.unit(60000.0, "inches")
  10731. },
  10732. {
  10733. name: "Gigamacro",
  10734. height: math.unit(120000000.0, "inches")
  10735. }
  10736. ]
  10737. )
  10738. };
  10739. pokemonMakers["Flareon"] = () => {
  10740. return makeCharacter(
  10741. { name: "Flareon" },
  10742. {
  10743. "Flareon": {
  10744. height: math.unit("35", "inches"),
  10745. weight: math.unit("55.1", "lbs"),
  10746. name: "Flareon",
  10747. image: {
  10748. source: "./media/pokemon/Flareon.svg"
  10749. },
  10750. rename: true
  10751. }
  10752. },
  10753. [
  10754. {
  10755. name: "Micro",
  10756. height: math.unit(3.5, "inches")
  10757. },
  10758. {
  10759. name: "Normal",
  10760. height: math.unit(35, "inches"),
  10761. default: true
  10762. },
  10763. {
  10764. name: "Macro",
  10765. height: math.unit(3500.0, "inches")
  10766. },
  10767. {
  10768. name: "Megamacro",
  10769. height: math.unit(175000.0, "inches")
  10770. },
  10771. {
  10772. name: "Gigamacro",
  10773. height: math.unit(350000000.0, "inches")
  10774. }
  10775. ]
  10776. )
  10777. };
  10778. pokemonMakers["Fletchinder"] = () => {
  10779. return makeCharacter(
  10780. { name: "Fletchinder" },
  10781. {
  10782. "Fletchinder": {
  10783. height: math.unit("28", "inches"),
  10784. weight: math.unit("35.3", "lbs"),
  10785. name: "Fletchinder",
  10786. image: {
  10787. source: "./media/pokemon/Fletchinder.svg"
  10788. },
  10789. rename: true
  10790. }
  10791. },
  10792. [
  10793. {
  10794. name: "Micro",
  10795. height: math.unit(2.8, "inches")
  10796. },
  10797. {
  10798. name: "Normal",
  10799. height: math.unit(28, "inches"),
  10800. default: true
  10801. },
  10802. {
  10803. name: "Macro",
  10804. height: math.unit(2800.0, "inches")
  10805. },
  10806. {
  10807. name: "Megamacro",
  10808. height: math.unit(140000.0, "inches")
  10809. },
  10810. {
  10811. name: "Gigamacro",
  10812. height: math.unit(280000000.0, "inches")
  10813. }
  10814. ]
  10815. )
  10816. };
  10817. pokemonMakers["Fletchling"] = () => {
  10818. return makeCharacter(
  10819. { name: "Fletchling" },
  10820. {
  10821. "Fletchling": {
  10822. height: math.unit("12", "inches"),
  10823. weight: math.unit("3.7", "lbs"),
  10824. name: "Fletchling",
  10825. image: {
  10826. source: "./media/pokemon/Fletchling.svg"
  10827. },
  10828. rename: true
  10829. }
  10830. },
  10831. [
  10832. {
  10833. name: "Micro",
  10834. height: math.unit(1.2, "inches")
  10835. },
  10836. {
  10837. name: "Normal",
  10838. height: math.unit(12, "inches"),
  10839. default: true
  10840. },
  10841. {
  10842. name: "Macro",
  10843. height: math.unit(1200.0, "inches")
  10844. },
  10845. {
  10846. name: "Megamacro",
  10847. height: math.unit(60000.0, "inches")
  10848. },
  10849. {
  10850. name: "Gigamacro",
  10851. height: math.unit(120000000.0, "inches")
  10852. }
  10853. ]
  10854. )
  10855. };
  10856. pokemonMakers["Floatzel"] = () => {
  10857. return makeCharacter(
  10858. { name: "Floatzel" },
  10859. {
  10860. "Floatzel": {
  10861. height: math.unit("43", "inches"),
  10862. weight: math.unit("73.9", "lbs"),
  10863. name: "Floatzel",
  10864. image: {
  10865. source: "./media/pokemon/Floatzel.svg"
  10866. },
  10867. rename: true
  10868. }
  10869. },
  10870. [
  10871. {
  10872. name: "Micro",
  10873. height: math.unit(4.3, "inches")
  10874. },
  10875. {
  10876. name: "Normal",
  10877. height: math.unit(43, "inches"),
  10878. default: true
  10879. },
  10880. {
  10881. name: "Macro",
  10882. height: math.unit(4300.0, "inches")
  10883. },
  10884. {
  10885. name: "Megamacro",
  10886. height: math.unit(215000.0, "inches")
  10887. },
  10888. {
  10889. name: "Gigamacro",
  10890. height: math.unit(430000000.0, "inches")
  10891. }
  10892. ]
  10893. )
  10894. };
  10895. pokemonMakers["Floette"] = () => {
  10896. return makeCharacter(
  10897. { name: "Floette" },
  10898. {
  10899. "Floette": {
  10900. height: math.unit("8", "inches"),
  10901. weight: math.unit("2.0", "lbs"),
  10902. name: "Floette",
  10903. image: {
  10904. source: "./media/pokemon/Floette.svg"
  10905. },
  10906. rename: true
  10907. }
  10908. },
  10909. [
  10910. {
  10911. name: "Micro",
  10912. height: math.unit(0.8, "inches")
  10913. },
  10914. {
  10915. name: "Normal",
  10916. height: math.unit(8, "inches"),
  10917. default: true
  10918. },
  10919. {
  10920. name: "Macro",
  10921. height: math.unit(800.0, "inches")
  10922. },
  10923. {
  10924. name: "Megamacro",
  10925. height: math.unit(40000.0, "inches")
  10926. },
  10927. {
  10928. name: "Gigamacro",
  10929. height: math.unit(80000000.0, "inches")
  10930. }
  10931. ]
  10932. )
  10933. };
  10934. pokemonMakers["Florges"] = () => {
  10935. return makeCharacter(
  10936. { name: "Florges" },
  10937. {
  10938. "Florges": {
  10939. height: math.unit("43", "inches"),
  10940. weight: math.unit("22.0", "lbs"),
  10941. name: "Florges",
  10942. image: {
  10943. source: "./media/pokemon/Florges.svg"
  10944. },
  10945. rename: true
  10946. }
  10947. },
  10948. [
  10949. {
  10950. name: "Micro",
  10951. height: math.unit(4.3, "inches")
  10952. },
  10953. {
  10954. name: "Normal",
  10955. height: math.unit(43, "inches"),
  10956. default: true
  10957. },
  10958. {
  10959. name: "Macro",
  10960. height: math.unit(4300.0, "inches")
  10961. },
  10962. {
  10963. name: "Megamacro",
  10964. height: math.unit(215000.0, "inches")
  10965. },
  10966. {
  10967. name: "Gigamacro",
  10968. height: math.unit(430000000.0, "inches")
  10969. }
  10970. ]
  10971. )
  10972. };
  10973. pokemonMakers["Flygon"] = () => {
  10974. return makeCharacter(
  10975. { name: "Flygon" },
  10976. {
  10977. "Flygon": {
  10978. height: math.unit("79", "inches"),
  10979. weight: math.unit("180.8", "lbs"),
  10980. name: "Flygon",
  10981. image: {
  10982. source: "./media/pokemon/Flygon.svg"
  10983. },
  10984. rename: true
  10985. }
  10986. },
  10987. [
  10988. {
  10989. name: "Micro",
  10990. height: math.unit(7.9, "inches")
  10991. },
  10992. {
  10993. name: "Normal",
  10994. height: math.unit(79, "inches"),
  10995. default: true
  10996. },
  10997. {
  10998. name: "Macro",
  10999. height: math.unit(7900.0, "inches")
  11000. },
  11001. {
  11002. name: "Megamacro",
  11003. height: math.unit(395000.0, "inches")
  11004. },
  11005. {
  11006. name: "Gigamacro",
  11007. height: math.unit(790000000.0, "inches")
  11008. }
  11009. ]
  11010. )
  11011. };
  11012. pokemonMakers["Fomantis"] = () => {
  11013. return makeCharacter(
  11014. { name: "Fomantis" },
  11015. {
  11016. "Fomantis": {
  11017. height: math.unit("12", "inches"),
  11018. weight: math.unit("3.3", "lbs"),
  11019. name: "Fomantis",
  11020. image: {
  11021. source: "./media/pokemon/Fomantis.svg"
  11022. },
  11023. rename: true
  11024. }
  11025. },
  11026. [
  11027. {
  11028. name: "Micro",
  11029. height: math.unit(1.2, "inches")
  11030. },
  11031. {
  11032. name: "Normal",
  11033. height: math.unit(12, "inches"),
  11034. default: true
  11035. },
  11036. {
  11037. name: "Macro",
  11038. height: math.unit(1200.0, "inches")
  11039. },
  11040. {
  11041. name: "Megamacro",
  11042. height: math.unit(60000.0, "inches")
  11043. },
  11044. {
  11045. name: "Gigamacro",
  11046. height: math.unit(120000000.0, "inches")
  11047. }
  11048. ]
  11049. )
  11050. };
  11051. pokemonMakers["Foongus"] = () => {
  11052. return makeCharacter(
  11053. { name: "Foongus" },
  11054. {
  11055. "Foongus": {
  11056. height: math.unit("8", "inches"),
  11057. weight: math.unit("2.2", "lbs"),
  11058. name: "Foongus",
  11059. image: {
  11060. source: "./media/pokemon/Foongus.svg"
  11061. },
  11062. rename: true
  11063. }
  11064. },
  11065. [
  11066. {
  11067. name: "Micro",
  11068. height: math.unit(0.8, "inches")
  11069. },
  11070. {
  11071. name: "Normal",
  11072. height: math.unit(8, "inches"),
  11073. default: true
  11074. },
  11075. {
  11076. name: "Macro",
  11077. height: math.unit(800.0, "inches")
  11078. },
  11079. {
  11080. name: "Megamacro",
  11081. height: math.unit(40000.0, "inches")
  11082. },
  11083. {
  11084. name: "Gigamacro",
  11085. height: math.unit(80000000.0, "inches")
  11086. }
  11087. ]
  11088. )
  11089. };
  11090. pokemonMakers["Forretress"] = () => {
  11091. return makeCharacter(
  11092. { name: "Forretress" },
  11093. {
  11094. "Forretress": {
  11095. height: math.unit("47", "inches"),
  11096. weight: math.unit("277.3", "lbs"),
  11097. name: "Forretress",
  11098. image: {
  11099. source: "./media/pokemon/Forretress.svg"
  11100. },
  11101. rename: true
  11102. }
  11103. },
  11104. [
  11105. {
  11106. name: "Micro",
  11107. height: math.unit(4.7, "inches")
  11108. },
  11109. {
  11110. name: "Normal",
  11111. height: math.unit(47, "inches"),
  11112. default: true
  11113. },
  11114. {
  11115. name: "Macro",
  11116. height: math.unit(4700.0, "inches")
  11117. },
  11118. {
  11119. name: "Megamacro",
  11120. height: math.unit(235000.0, "inches")
  11121. },
  11122. {
  11123. name: "Gigamacro",
  11124. height: math.unit(470000000.0, "inches")
  11125. }
  11126. ]
  11127. )
  11128. };
  11129. pokemonMakers["Fraxure"] = () => {
  11130. return makeCharacter(
  11131. { name: "Fraxure" },
  11132. {
  11133. "Fraxure": {
  11134. height: math.unit("39", "inches"),
  11135. weight: math.unit("79.4", "lbs"),
  11136. name: "Fraxure",
  11137. image: {
  11138. source: "./media/pokemon/Fraxure.svg"
  11139. },
  11140. rename: true
  11141. }
  11142. },
  11143. [
  11144. {
  11145. name: "Micro",
  11146. height: math.unit(3.9, "inches")
  11147. },
  11148. {
  11149. name: "Normal",
  11150. height: math.unit(39, "inches"),
  11151. default: true
  11152. },
  11153. {
  11154. name: "Macro",
  11155. height: math.unit(3900.0, "inches")
  11156. },
  11157. {
  11158. name: "Megamacro",
  11159. height: math.unit(195000.0, "inches")
  11160. },
  11161. {
  11162. name: "Gigamacro",
  11163. height: math.unit(390000000.0, "inches")
  11164. }
  11165. ]
  11166. )
  11167. };
  11168. pokemonMakers["Frillish"] = () => {
  11169. return makeCharacter(
  11170. { name: "Frillish" },
  11171. {
  11172. "Frillish": {
  11173. height: math.unit("47", "inches"),
  11174. weight: math.unit("72.8", "lbs"),
  11175. name: "Frillish",
  11176. image: {
  11177. source: "./media/pokemon/Frillish.svg"
  11178. },
  11179. rename: true
  11180. }
  11181. },
  11182. [
  11183. {
  11184. name: "Micro",
  11185. height: math.unit(4.7, "inches")
  11186. },
  11187. {
  11188. name: "Normal",
  11189. height: math.unit(47, "inches"),
  11190. default: true
  11191. },
  11192. {
  11193. name: "Macro",
  11194. height: math.unit(4700.0, "inches")
  11195. },
  11196. {
  11197. name: "Megamacro",
  11198. height: math.unit(235000.0, "inches")
  11199. },
  11200. {
  11201. name: "Gigamacro",
  11202. height: math.unit(470000000.0, "inches")
  11203. }
  11204. ]
  11205. )
  11206. };
  11207. pokemonMakers["Froakie"] = () => {
  11208. return makeCharacter(
  11209. { name: "Froakie" },
  11210. {
  11211. "Froakie": {
  11212. height: math.unit("12", "inches"),
  11213. weight: math.unit("15.4", "lbs"),
  11214. name: "Froakie",
  11215. image: {
  11216. source: "./media/pokemon/Froakie.svg"
  11217. },
  11218. rename: true
  11219. }
  11220. },
  11221. [
  11222. {
  11223. name: "Micro",
  11224. height: math.unit(1.2, "inches")
  11225. },
  11226. {
  11227. name: "Normal",
  11228. height: math.unit(12, "inches"),
  11229. default: true
  11230. },
  11231. {
  11232. name: "Macro",
  11233. height: math.unit(1200.0, "inches")
  11234. },
  11235. {
  11236. name: "Megamacro",
  11237. height: math.unit(60000.0, "inches")
  11238. },
  11239. {
  11240. name: "Gigamacro",
  11241. height: math.unit(120000000.0, "inches")
  11242. }
  11243. ]
  11244. )
  11245. };
  11246. pokemonMakers["Frogadier"] = () => {
  11247. return makeCharacter(
  11248. { name: "Frogadier" },
  11249. {
  11250. "Frogadier": {
  11251. height: math.unit("24", "inches"),
  11252. weight: math.unit("24.0", "lbs"),
  11253. name: "Frogadier",
  11254. image: {
  11255. source: "./media/pokemon/Frogadier.svg"
  11256. },
  11257. rename: true
  11258. }
  11259. },
  11260. [
  11261. {
  11262. name: "Micro",
  11263. height: math.unit(2.4, "inches")
  11264. },
  11265. {
  11266. name: "Normal",
  11267. height: math.unit(24, "inches"),
  11268. default: true
  11269. },
  11270. {
  11271. name: "Macro",
  11272. height: math.unit(2400.0, "inches")
  11273. },
  11274. {
  11275. name: "Megamacro",
  11276. height: math.unit(120000.0, "inches")
  11277. },
  11278. {
  11279. name: "Gigamacro",
  11280. height: math.unit(240000000.0, "inches")
  11281. }
  11282. ]
  11283. )
  11284. };
  11285. pokemonMakers["Froslass"] = () => {
  11286. return makeCharacter(
  11287. { name: "Froslass" },
  11288. {
  11289. "Froslass": {
  11290. height: math.unit("51", "inches"),
  11291. weight: math.unit("58.6", "lbs"),
  11292. name: "Froslass",
  11293. image: {
  11294. source: "./media/pokemon/Froslass.svg"
  11295. },
  11296. rename: true
  11297. }
  11298. },
  11299. [
  11300. {
  11301. name: "Micro",
  11302. height: math.unit(5.1, "inches")
  11303. },
  11304. {
  11305. name: "Normal",
  11306. height: math.unit(51, "inches"),
  11307. default: true
  11308. },
  11309. {
  11310. name: "Macro",
  11311. height: math.unit(5100.0, "inches")
  11312. },
  11313. {
  11314. name: "Megamacro",
  11315. height: math.unit(255000.0, "inches")
  11316. },
  11317. {
  11318. name: "Gigamacro",
  11319. height: math.unit(510000000.0, "inches")
  11320. }
  11321. ]
  11322. )
  11323. };
  11324. pokemonMakers["Frosmoth"] = () => {
  11325. return makeCharacter(
  11326. { name: "Frosmoth" },
  11327. {
  11328. "Frosmoth": {
  11329. height: math.unit("51", "inches"),
  11330. weight: math.unit("92.6", "lbs"),
  11331. name: "Frosmoth",
  11332. image: {
  11333. source: "./media/pokemon/Frosmoth.svg"
  11334. },
  11335. rename: true
  11336. }
  11337. },
  11338. [
  11339. {
  11340. name: "Micro",
  11341. height: math.unit(5.1, "inches")
  11342. },
  11343. {
  11344. name: "Normal",
  11345. height: math.unit(51, "inches"),
  11346. default: true
  11347. },
  11348. {
  11349. name: "Macro",
  11350. height: math.unit(5100.0, "inches")
  11351. },
  11352. {
  11353. name: "Megamacro",
  11354. height: math.unit(255000.0, "inches")
  11355. },
  11356. {
  11357. name: "Gigamacro",
  11358. height: math.unit(510000000.0, "inches")
  11359. }
  11360. ]
  11361. )
  11362. };
  11363. pokemonMakers["Furfrou"] = () => {
  11364. return makeCharacter(
  11365. { name: "Furfrou" },
  11366. {
  11367. "Diamond Trim": {
  11368. height: math.unit("47", "inches"),
  11369. weight: math.unit("61.7", "lbs"),
  11370. name: "Diamond Trim",
  11371. image: {
  11372. source: "./media/pokemon/Furfrou - Diamond Trim.svg"
  11373. },
  11374. rename: true
  11375. },
  11376. "Heart Trim": {
  11377. height: math.unit("47", "inches"),
  11378. weight: math.unit("61.7", "lbs"),
  11379. name: "Heart Trim",
  11380. image: {
  11381. source: "./media/pokemon/Furfrou - Heart Trim.svg"
  11382. },
  11383. rename: true
  11384. },
  11385. "Natural Forme": {
  11386. height: math.unit("47", "inches"),
  11387. weight: math.unit("61.7", "lbs"),
  11388. name: "Natural Forme",
  11389. image: {
  11390. source: "./media/pokemon/Furfrou - Natural Forme.svg"
  11391. },
  11392. rename: true
  11393. },
  11394. "Star Trim": {
  11395. height: math.unit("47", "inches"),
  11396. weight: math.unit("61.7", "lbs"),
  11397. name: "Star Trim",
  11398. image: {
  11399. source: "./media/pokemon/Furfrou - Star Trim.svg"
  11400. },
  11401. rename: true
  11402. }
  11403. },
  11404. [
  11405. {
  11406. name: "Micro",
  11407. height: math.unit(4.7, "inches")
  11408. },
  11409. {
  11410. name: "Normal",
  11411. height: math.unit(47, "inches"),
  11412. default: true
  11413. },
  11414. {
  11415. name: "Macro",
  11416. height: math.unit(4700.0, "inches")
  11417. },
  11418. {
  11419. name: "Megamacro",
  11420. height: math.unit(235000.0, "inches")
  11421. },
  11422. {
  11423. name: "Gigamacro",
  11424. height: math.unit(470000000.0, "inches")
  11425. }
  11426. ]
  11427. )
  11428. };
  11429. pokemonMakers["Furret"] = () => {
  11430. return makeCharacter(
  11431. { name: "Furret" },
  11432. {
  11433. "Furret": {
  11434. height: math.unit("71", "inches"),
  11435. weight: math.unit("71.6", "lbs"),
  11436. name: "Furret",
  11437. image: {
  11438. source: "./media/pokemon/Furret.svg"
  11439. },
  11440. rename: true
  11441. }
  11442. },
  11443. [
  11444. {
  11445. name: "Micro",
  11446. height: math.unit(7.1, "inches")
  11447. },
  11448. {
  11449. name: "Normal",
  11450. height: math.unit(71, "inches"),
  11451. default: true
  11452. },
  11453. {
  11454. name: "Macro",
  11455. height: math.unit(7100.0, "inches")
  11456. },
  11457. {
  11458. name: "Megamacro",
  11459. height: math.unit(355000.0, "inches")
  11460. },
  11461. {
  11462. name: "Gigamacro",
  11463. height: math.unit(710000000.0, "inches")
  11464. }
  11465. ]
  11466. )
  11467. };
  11468. pokemonMakers["Gabite"] = () => {
  11469. return makeCharacter(
  11470. { name: "Gabite" },
  11471. {
  11472. "Gabite": {
  11473. height: math.unit("55", "inches"),
  11474. weight: math.unit("123.5", "lbs"),
  11475. name: "Gabite",
  11476. image: {
  11477. source: "./media/pokemon/Gabite.svg"
  11478. },
  11479. rename: true
  11480. }
  11481. },
  11482. [
  11483. {
  11484. name: "Micro",
  11485. height: math.unit(5.5, "inches")
  11486. },
  11487. {
  11488. name: "Normal",
  11489. height: math.unit(55, "inches"),
  11490. default: true
  11491. },
  11492. {
  11493. name: "Macro",
  11494. height: math.unit(5500.0, "inches")
  11495. },
  11496. {
  11497. name: "Megamacro",
  11498. height: math.unit(275000.0, "inches")
  11499. },
  11500. {
  11501. name: "Gigamacro",
  11502. height: math.unit(550000000.0, "inches")
  11503. }
  11504. ]
  11505. )
  11506. };
  11507. pokemonMakers["Gallade"] = () => {
  11508. return makeCharacter(
  11509. { name: "Gallade" },
  11510. {
  11511. "Gallade": {
  11512. height: math.unit("63", "inches"),
  11513. weight: math.unit("114.6", "lbs"),
  11514. name: "Gallade",
  11515. image: {
  11516. source: "./media/pokemon/Gallade.svg"
  11517. },
  11518. rename: true
  11519. },
  11520. "Mega Gallade": {
  11521. height: math.unit("63", "inches"),
  11522. weight: math.unit("124.3", "lbs"),
  11523. name: "Mega Gallade",
  11524. image: {
  11525. source: "./media/pokemon/Mega Gallade.svg"
  11526. },
  11527. rename: true
  11528. }
  11529. },
  11530. [
  11531. {
  11532. name: "Micro",
  11533. height: math.unit(6.3, "inches")
  11534. },
  11535. {
  11536. name: "Normal",
  11537. height: math.unit(63, "inches"),
  11538. default: true
  11539. },
  11540. {
  11541. name: "Macro",
  11542. height: math.unit(6300.0, "inches")
  11543. },
  11544. {
  11545. name: "Megamacro",
  11546. height: math.unit(315000.0, "inches")
  11547. },
  11548. {
  11549. name: "Gigamacro",
  11550. height: math.unit(630000000.0, "inches")
  11551. }
  11552. ]
  11553. )
  11554. };
  11555. pokemonMakers["Galvantula"] = () => {
  11556. return makeCharacter(
  11557. { name: "Galvantula" },
  11558. {
  11559. "Galvantula": {
  11560. height: math.unit("31", "inches"),
  11561. weight: math.unit("31.5", "lbs"),
  11562. name: "Galvantula",
  11563. image: {
  11564. source: "./media/pokemon/Galvantula.svg"
  11565. },
  11566. rename: true
  11567. }
  11568. },
  11569. [
  11570. {
  11571. name: "Micro",
  11572. height: math.unit(3.1, "inches")
  11573. },
  11574. {
  11575. name: "Normal",
  11576. height: math.unit(31, "inches"),
  11577. default: true
  11578. },
  11579. {
  11580. name: "Macro",
  11581. height: math.unit(3100.0, "inches")
  11582. },
  11583. {
  11584. name: "Megamacro",
  11585. height: math.unit(155000.0, "inches")
  11586. },
  11587. {
  11588. name: "Gigamacro",
  11589. height: math.unit(310000000.0, "inches")
  11590. }
  11591. ]
  11592. )
  11593. };
  11594. pokemonMakers["Garbodor"] = () => {
  11595. return makeCharacter(
  11596. { name: "Garbodor" },
  11597. {
  11598. "Garbodor": {
  11599. height: math.unit("75", "inches"),
  11600. weight: math.unit("236.6", "lbs"),
  11601. name: "Garbodor",
  11602. image: {
  11603. source: "./media/pokemon/Garbodor.svg"
  11604. },
  11605. rename: true
  11606. },
  11607. "Gigantamax Garbodor": {
  11608. height: math.unit("827", "inches"),
  11609. weight: math.unit("317210.4446999704", "lbs"),
  11610. name: "Gigantamax Garbodor",
  11611. image: {
  11612. source: "./media/pokemon/Gigantamax Garbodor.svg"
  11613. },
  11614. rename: true
  11615. }
  11616. },
  11617. [
  11618. {
  11619. name: "Micro",
  11620. height: math.unit(7.5, "inches")
  11621. },
  11622. {
  11623. name: "Normal",
  11624. height: math.unit(75, "inches"),
  11625. default: true
  11626. },
  11627. {
  11628. name: "Macro",
  11629. height: math.unit(7500.0, "inches")
  11630. },
  11631. {
  11632. name: "Megamacro",
  11633. height: math.unit(375000.0, "inches")
  11634. },
  11635. {
  11636. name: "Gigamacro",
  11637. height: math.unit(750000000.0, "inches")
  11638. }
  11639. ]
  11640. )
  11641. };
  11642. pokemonMakers["Garchomp"] = () => {
  11643. return makeCharacter(
  11644. { name: "Garchomp" },
  11645. {
  11646. "Garchomp": {
  11647. height: math.unit("75", "inches"),
  11648. weight: math.unit("209.4", "lbs"),
  11649. name: "Garchomp",
  11650. image: {
  11651. source: "./media/pokemon/Garchomp.svg"
  11652. },
  11653. rename: true
  11654. },
  11655. "Mega Garchomp": {
  11656. height: math.unit("75", "inches"),
  11657. weight: math.unit("209.4", "lbs"),
  11658. name: "Mega Garchomp",
  11659. image: {
  11660. source: "./media/pokemon/Mega Garchomp.svg"
  11661. },
  11662. rename: true
  11663. }
  11664. },
  11665. [
  11666. {
  11667. name: "Micro",
  11668. height: math.unit(7.5, "inches")
  11669. },
  11670. {
  11671. name: "Normal",
  11672. height: math.unit(75, "inches"),
  11673. default: true
  11674. },
  11675. {
  11676. name: "Macro",
  11677. height: math.unit(7500.0, "inches")
  11678. },
  11679. {
  11680. name: "Megamacro",
  11681. height: math.unit(375000.0, "inches")
  11682. },
  11683. {
  11684. name: "Gigamacro",
  11685. height: math.unit(750000000.0, "inches")
  11686. }
  11687. ]
  11688. )
  11689. };
  11690. pokemonMakers["Gardevoir"] = () => {
  11691. return makeCharacter(
  11692. { name: "Gardevoir" },
  11693. {
  11694. "Gardevoir": {
  11695. height: math.unit("63", "inches"),
  11696. weight: math.unit("106.7", "lbs"),
  11697. name: "Gardevoir",
  11698. image: {
  11699. source: "./media/pokemon/Gardevoir.svg"
  11700. },
  11701. rename: true
  11702. },
  11703. "Mega Gardevoir": {
  11704. height: math.unit("63", "inches"),
  11705. weight: math.unit("106.7", "lbs"),
  11706. name: "Mega Gardevoir",
  11707. image: {
  11708. source: "./media/pokemon/Mega Gardevoir.svg"
  11709. },
  11710. rename: true
  11711. }
  11712. },
  11713. [
  11714. {
  11715. name: "Micro",
  11716. height: math.unit(6.3, "inches")
  11717. },
  11718. {
  11719. name: "Normal",
  11720. height: math.unit(63, "inches"),
  11721. default: true
  11722. },
  11723. {
  11724. name: "Macro",
  11725. height: math.unit(6300.0, "inches")
  11726. },
  11727. {
  11728. name: "Megamacro",
  11729. height: math.unit(315000.0, "inches")
  11730. },
  11731. {
  11732. name: "Gigamacro",
  11733. height: math.unit(630000000.0, "inches")
  11734. }
  11735. ]
  11736. )
  11737. };
  11738. pokemonMakers["Gastly"] = () => {
  11739. return makeCharacter(
  11740. { name: "Gastly" },
  11741. {
  11742. "Gastly": {
  11743. height: math.unit("51", "inches"),
  11744. weight: math.unit("0.2", "lbs"),
  11745. name: "Gastly",
  11746. image: {
  11747. source: "./media/pokemon/Gastly.svg"
  11748. },
  11749. rename: true
  11750. }
  11751. },
  11752. [
  11753. {
  11754. name: "Micro",
  11755. height: math.unit(5.1, "inches")
  11756. },
  11757. {
  11758. name: "Normal",
  11759. height: math.unit(51, "inches"),
  11760. default: true
  11761. },
  11762. {
  11763. name: "Macro",
  11764. height: math.unit(5100.0, "inches")
  11765. },
  11766. {
  11767. name: "Megamacro",
  11768. height: math.unit(255000.0, "inches")
  11769. },
  11770. {
  11771. name: "Gigamacro",
  11772. height: math.unit(510000000.0, "inches")
  11773. }
  11774. ]
  11775. )
  11776. };
  11777. pokemonMakers["Gastrodon"] = () => {
  11778. return makeCharacter(
  11779. { name: "Gastrodon" },
  11780. {
  11781. "East Sea": {
  11782. height: math.unit("35", "inches"),
  11783. weight: math.unit("65.9", "lbs"),
  11784. name: "East Sea",
  11785. image: {
  11786. source: "./media/pokemon/Gastrodon - East Sea.svg"
  11787. },
  11788. rename: true
  11789. },
  11790. "West Sea": {
  11791. height: math.unit("35", "inches"),
  11792. weight: math.unit("65.9", "lbs"),
  11793. name: "West Sea",
  11794. image: {
  11795. source: "./media/pokemon/Gastrodon - West Sea.svg"
  11796. },
  11797. rename: true
  11798. }
  11799. },
  11800. [
  11801. {
  11802. name: "Micro",
  11803. height: math.unit(3.5, "inches")
  11804. },
  11805. {
  11806. name: "Normal",
  11807. height: math.unit(35, "inches"),
  11808. default: true
  11809. },
  11810. {
  11811. name: "Macro",
  11812. height: math.unit(3500.0, "inches")
  11813. },
  11814. {
  11815. name: "Megamacro",
  11816. height: math.unit(175000.0, "inches")
  11817. },
  11818. {
  11819. name: "Gigamacro",
  11820. height: math.unit(350000000.0, "inches")
  11821. }
  11822. ]
  11823. )
  11824. };
  11825. pokemonMakers["Genesect"] = () => {
  11826. return makeCharacter(
  11827. { name: "Genesect" },
  11828. {
  11829. "Genesect": {
  11830. height: math.unit("59", "inches"),
  11831. weight: math.unit("181.9", "lbs"),
  11832. name: "Genesect",
  11833. image: {
  11834. source: "./media/pokemon/Genesect.svg"
  11835. },
  11836. rename: true
  11837. }
  11838. },
  11839. [
  11840. {
  11841. name: "Micro",
  11842. height: math.unit(5.9, "inches")
  11843. },
  11844. {
  11845. name: "Normal",
  11846. height: math.unit(59, "inches"),
  11847. default: true
  11848. },
  11849. {
  11850. name: "Macro",
  11851. height: math.unit(5900.0, "inches")
  11852. },
  11853. {
  11854. name: "Megamacro",
  11855. height: math.unit(295000.0, "inches")
  11856. },
  11857. {
  11858. name: "Gigamacro",
  11859. height: math.unit(590000000.0, "inches")
  11860. }
  11861. ]
  11862. )
  11863. };
  11864. pokemonMakers["Gengar"] = () => {
  11865. return makeCharacter(
  11866. { name: "Gengar" },
  11867. {
  11868. "Gengar": {
  11869. height: math.unit("59", "inches"),
  11870. weight: math.unit("89.3", "lbs"),
  11871. name: "Gengar",
  11872. image: {
  11873. source: "./media/pokemon/Gengar.svg"
  11874. },
  11875. rename: true
  11876. },
  11877. "Mega Gengar": {
  11878. height: math.unit("55", "inches"),
  11879. weight: math.unit("89.3", "lbs"),
  11880. name: "Mega Gengar",
  11881. image: {
  11882. source: "./media/pokemon/Mega Gengar.svg"
  11883. },
  11884. rename: true
  11885. },
  11886. "Gigantamax Gengar": {
  11887. height: math.unit("787", "inches"),
  11888. weight: math.unit("211943.2653187522", "lbs"),
  11889. name: "Gigantamax Gengar",
  11890. image: {
  11891. source: "./media/pokemon/Gigantamax Gengar.svg"
  11892. },
  11893. rename: true
  11894. }
  11895. },
  11896. [
  11897. {
  11898. name: "Micro",
  11899. height: math.unit(5.9, "inches")
  11900. },
  11901. {
  11902. name: "Normal",
  11903. height: math.unit(59, "inches"),
  11904. default: true
  11905. },
  11906. {
  11907. name: "Macro",
  11908. height: math.unit(5900.0, "inches")
  11909. },
  11910. {
  11911. name: "Megamacro",
  11912. height: math.unit(295000.0, "inches")
  11913. },
  11914. {
  11915. name: "Gigamacro",
  11916. height: math.unit(590000000.0, "inches")
  11917. }
  11918. ]
  11919. )
  11920. };
  11921. pokemonMakers["Geodude"] = () => {
  11922. return makeCharacter(
  11923. { name: "Geodude" },
  11924. {
  11925. "Alola Form": {
  11926. height: math.unit("16", "inches"),
  11927. weight: math.unit("44.8", "lbs"),
  11928. name: "Alola Form",
  11929. image: {
  11930. source: "./media/pokemon/Geodude - Alola Form.svg"
  11931. },
  11932. rename: true
  11933. },
  11934. "Geodude": {
  11935. height: math.unit("16", "inches"),
  11936. weight: math.unit("44.1", "lbs"),
  11937. name: "Geodude",
  11938. image: {
  11939. source: "./media/pokemon/Geodude.svg"
  11940. },
  11941. rename: true
  11942. }
  11943. },
  11944. [
  11945. {
  11946. name: "Micro",
  11947. height: math.unit(1.6, "inches")
  11948. },
  11949. {
  11950. name: "Normal",
  11951. height: math.unit(16, "inches"),
  11952. default: true
  11953. },
  11954. {
  11955. name: "Macro",
  11956. height: math.unit(1600.0, "inches")
  11957. },
  11958. {
  11959. name: "Megamacro",
  11960. height: math.unit(80000.0, "inches")
  11961. },
  11962. {
  11963. name: "Gigamacro",
  11964. height: math.unit(160000000.0, "inches")
  11965. }
  11966. ]
  11967. )
  11968. };
  11969. pokemonMakers["Gible"] = () => {
  11970. return makeCharacter(
  11971. { name: "Gible" },
  11972. {
  11973. "Gible": {
  11974. height: math.unit("28", "inches"),
  11975. weight: math.unit("45.2", "lbs"),
  11976. name: "Gible",
  11977. image: {
  11978. source: "./media/pokemon/Gible.svg"
  11979. },
  11980. rename: true
  11981. }
  11982. },
  11983. [
  11984. {
  11985. name: "Micro",
  11986. height: math.unit(2.8, "inches")
  11987. },
  11988. {
  11989. name: "Normal",
  11990. height: math.unit(28, "inches"),
  11991. default: true
  11992. },
  11993. {
  11994. name: "Macro",
  11995. height: math.unit(2800.0, "inches")
  11996. },
  11997. {
  11998. name: "Megamacro",
  11999. height: math.unit(140000.0, "inches")
  12000. },
  12001. {
  12002. name: "Gigamacro",
  12003. height: math.unit(280000000.0, "inches")
  12004. }
  12005. ]
  12006. )
  12007. };
  12008. pokemonMakers["Gigalith"] = () => {
  12009. return makeCharacter(
  12010. { name: "Gigalith" },
  12011. {
  12012. "Gigalith": {
  12013. height: math.unit("67", "inches"),
  12014. weight: math.unit("573.2", "lbs"),
  12015. name: "Gigalith",
  12016. image: {
  12017. source: "./media/pokemon/Gigalith.svg"
  12018. },
  12019. rename: true
  12020. }
  12021. },
  12022. [
  12023. {
  12024. name: "Micro",
  12025. height: math.unit(6.7, "inches")
  12026. },
  12027. {
  12028. name: "Normal",
  12029. height: math.unit(67, "inches"),
  12030. default: true
  12031. },
  12032. {
  12033. name: "Macro",
  12034. height: math.unit(6700.0, "inches")
  12035. },
  12036. {
  12037. name: "Megamacro",
  12038. height: math.unit(335000.0, "inches")
  12039. },
  12040. {
  12041. name: "Gigamacro",
  12042. height: math.unit(670000000.0, "inches")
  12043. }
  12044. ]
  12045. )
  12046. };
  12047. pokemonMakers["Grimmsnarl"] = () => {
  12048. return makeCharacter(
  12049. { name: "Grimmsnarl" },
  12050. {
  12051. "Grimmsnarl": {
  12052. height: math.unit("59", "inches"),
  12053. weight: math.unit("134.5", "lbs"),
  12054. name: "Grimmsnarl",
  12055. image: {
  12056. source: "./media/pokemon/Grimmsnarl.svg"
  12057. },
  12058. rename: true
  12059. },
  12060. "Gigantamax Grimmsnarl": {
  12061. height: math.unit("1260", "inches"),
  12062. weight: math.unit("1310019.875449778", "lbs"),
  12063. name: "Gigantamax Grimmsnarl",
  12064. image: {
  12065. source: "./media/pokemon/Gigantamax Grimmsnarl.svg"
  12066. },
  12067. rename: true
  12068. }
  12069. },
  12070. [
  12071. {
  12072. name: "Micro",
  12073. height: math.unit(5.9, "inches")
  12074. },
  12075. {
  12076. name: "Normal",
  12077. height: math.unit(59, "inches"),
  12078. default: true
  12079. },
  12080. {
  12081. name: "Macro",
  12082. height: math.unit(5900.0, "inches")
  12083. },
  12084. {
  12085. name: "Megamacro",
  12086. height: math.unit(295000.0, "inches")
  12087. },
  12088. {
  12089. name: "Gigamacro",
  12090. height: math.unit(590000000.0, "inches")
  12091. }
  12092. ]
  12093. )
  12094. };
  12095. pokemonMakers["Hatterene"] = () => {
  12096. return makeCharacter(
  12097. { name: "Hatterene" },
  12098. {
  12099. "Hatterene": {
  12100. height: math.unit("83", "inches"),
  12101. weight: math.unit("11.2", "lbs"),
  12102. name: "Hatterene",
  12103. image: {
  12104. source: "./media/pokemon/Hatterene.svg"
  12105. },
  12106. rename: true
  12107. },
  12108. "Gigantamax Hatterene": {
  12109. height: math.unit("1024", "inches"),
  12110. weight: math.unit("21032.147335983507", "lbs"),
  12111. name: "Gigantamax Hatterene",
  12112. image: {
  12113. source: "./media/pokemon/Gigantamax Hatterene.svg"
  12114. },
  12115. rename: true
  12116. }
  12117. },
  12118. [
  12119. {
  12120. name: "Micro",
  12121. height: math.unit(8.3, "inches")
  12122. },
  12123. {
  12124. name: "Normal",
  12125. height: math.unit(83, "inches"),
  12126. default: true
  12127. },
  12128. {
  12129. name: "Macro",
  12130. height: math.unit(8300.0, "inches")
  12131. },
  12132. {
  12133. name: "Megamacro",
  12134. height: math.unit(415000.0, "inches")
  12135. },
  12136. {
  12137. name: "Gigamacro",
  12138. height: math.unit(830000000.0, "inches")
  12139. }
  12140. ]
  12141. )
  12142. };
  12143. pokemonMakers["Kingler"] = () => {
  12144. return makeCharacter(
  12145. { name: "Kingler" },
  12146. {
  12147. "Kingler": {
  12148. height: math.unit("51", "inches"),
  12149. weight: math.unit("132.3", "lbs"),
  12150. name: "Kingler",
  12151. image: {
  12152. source: "./media/pokemon/Kingler.svg"
  12153. },
  12154. rename: true
  12155. },
  12156. "Gigantamax Kingler": {
  12157. height: math.unit("748", "inches"),
  12158. weight: math.unit("417401.6", "lbs"),
  12159. name: "Gigantamax Kingler",
  12160. image: {
  12161. source: "./media/pokemon/Gigantamax Kingler.svg"
  12162. },
  12163. rename: true
  12164. }
  12165. },
  12166. [
  12167. {
  12168. name: "Micro",
  12169. height: math.unit(5.1, "inches")
  12170. },
  12171. {
  12172. name: "Normal",
  12173. height: math.unit(51, "inches"),
  12174. default: true
  12175. },
  12176. {
  12177. name: "Macro",
  12178. height: math.unit(5100.0, "inches")
  12179. },
  12180. {
  12181. name: "Megamacro",
  12182. height: math.unit(255000.0, "inches")
  12183. },
  12184. {
  12185. name: "Gigamacro",
  12186. height: math.unit(510000000.0, "inches")
  12187. }
  12188. ]
  12189. )
  12190. };
  12191. pokemonMakers["Lapras"] = () => {
  12192. return makeCharacter(
  12193. { name: "Lapras" },
  12194. {
  12195. "Lapras": {
  12196. height: math.unit("98", "inches"),
  12197. weight: math.unit("485.0", "lbs"),
  12198. name: "Lapras",
  12199. image: {
  12200. source: "./media/pokemon/Lapras.svg"
  12201. },
  12202. rename: true
  12203. },
  12204. "Gigantamax Lapras": {
  12205. height: math.unit("945", "inches"),
  12206. weight: math.unit("434869.4879737609", "lbs"),
  12207. name: "Gigantamax Lapras",
  12208. image: {
  12209. source: "./media/pokemon/Gigantamax Lapras.svg"
  12210. },
  12211. rename: true
  12212. }
  12213. },
  12214. [
  12215. {
  12216. name: "Micro",
  12217. height: math.unit(9.8, "inches")
  12218. },
  12219. {
  12220. name: "Normal",
  12221. height: math.unit(98, "inches"),
  12222. default: true
  12223. },
  12224. {
  12225. name: "Macro",
  12226. height: math.unit(9800.0, "inches")
  12227. },
  12228. {
  12229. name: "Megamacro",
  12230. height: math.unit(490000.0, "inches")
  12231. },
  12232. {
  12233. name: "Gigamacro",
  12234. height: math.unit(980000000.0, "inches")
  12235. }
  12236. ]
  12237. )
  12238. };
  12239. pokemonMakers["Machamp"] = () => {
  12240. return makeCharacter(
  12241. { name: "Machamp" },
  12242. {
  12243. "Machamp": {
  12244. height: math.unit("63", "inches"),
  12245. weight: math.unit("286.6", "lbs"),
  12246. name: "Machamp",
  12247. image: {
  12248. source: "./media/pokemon/Machamp.svg"
  12249. },
  12250. rename: true
  12251. },
  12252. "Gigantamax Machamp": {
  12253. height: math.unit("984", "inches"),
  12254. weight: math.unit("1092043.2354173416", "lbs"),
  12255. name: "Gigantamax Machamp",
  12256. image: {
  12257. source: "./media/pokemon/Gigantamax Machamp.svg"
  12258. },
  12259. rename: true
  12260. }
  12261. },
  12262. [
  12263. {
  12264. name: "Micro",
  12265. height: math.unit(6.3, "inches")
  12266. },
  12267. {
  12268. name: "Normal",
  12269. height: math.unit(63, "inches"),
  12270. default: true
  12271. },
  12272. {
  12273. name: "Macro",
  12274. height: math.unit(6300.0, "inches")
  12275. },
  12276. {
  12277. name: "Megamacro",
  12278. height: math.unit(315000.0, "inches")
  12279. },
  12280. {
  12281. name: "Gigamacro",
  12282. height: math.unit(630000000.0, "inches")
  12283. }
  12284. ]
  12285. )
  12286. };
  12287. pokemonMakers["Meowth"] = () => {
  12288. return makeCharacter(
  12289. { name: "Meowth" },
  12290. {
  12291. "Alola Form": {
  12292. height: math.unit("16", "inches"),
  12293. weight: math.unit("9.3", "lbs"),
  12294. name: "Alola Form",
  12295. image: {
  12296. source: "./media/pokemon/Meowth - Alola Form.svg"
  12297. },
  12298. rename: true
  12299. },
  12300. "Galarian Form": {
  12301. height: math.unit("16", "inches"),
  12302. weight: math.unit("16.5", "lbs"),
  12303. name: "Galarian Form",
  12304. image: {
  12305. source: "./media/pokemon/Meowth - Galarian Form.svg"
  12306. },
  12307. rename: true
  12308. },
  12309. "Meowth": {
  12310. height: math.unit("16", "inches"),
  12311. weight: math.unit("9.3", "lbs"),
  12312. name: "Meowth",
  12313. image: {
  12314. source: "./media/pokemon/Meowth.svg"
  12315. },
  12316. rename: true
  12317. },
  12318. "Gigantamax Meowth": {
  12319. height: math.unit("1299", "inches"),
  12320. weight: math.unit("4976803.042163086", "lbs"),
  12321. name: "Gigantamax Meowth",
  12322. image: {
  12323. source: "./media/pokemon/Gigantamax Meowth.svg"
  12324. },
  12325. rename: true
  12326. }
  12327. },
  12328. [
  12329. {
  12330. name: "Micro",
  12331. height: math.unit(1.6, "inches")
  12332. },
  12333. {
  12334. name: "Normal",
  12335. height: math.unit(16, "inches"),
  12336. default: true
  12337. },
  12338. {
  12339. name: "Macro",
  12340. height: math.unit(1600.0, "inches")
  12341. },
  12342. {
  12343. name: "Megamacro",
  12344. height: math.unit(80000.0, "inches")
  12345. },
  12346. {
  12347. name: "Gigamacro",
  12348. height: math.unit(160000000.0, "inches")
  12349. }
  12350. ]
  12351. )
  12352. };
  12353. pokemonMakers["Orbeetle"] = () => {
  12354. return makeCharacter(
  12355. { name: "Orbeetle" },
  12356. {
  12357. "Orbeetle": {
  12358. height: math.unit("16", "inches"),
  12359. weight: math.unit("89.9", "lbs"),
  12360. name: "Orbeetle",
  12361. image: {
  12362. source: "./media/pokemon/Orbeetle.svg"
  12363. },
  12364. rename: true
  12365. },
  12366. "Gigantamax Orbeetle": {
  12367. height: math.unit("551", "inches"),
  12368. weight: math.unit("3671593.0602783207", "lbs"),
  12369. name: "Gigantamax Orbeetle",
  12370. image: {
  12371. source: "./media/pokemon/Gigantamax Orbeetle.svg"
  12372. },
  12373. rename: true
  12374. }
  12375. },
  12376. [
  12377. {
  12378. name: "Micro",
  12379. height: math.unit(1.6, "inches")
  12380. },
  12381. {
  12382. name: "Normal",
  12383. height: math.unit(16, "inches"),
  12384. default: true
  12385. },
  12386. {
  12387. name: "Macro",
  12388. height: math.unit(1600.0, "inches")
  12389. },
  12390. {
  12391. name: "Megamacro",
  12392. height: math.unit(80000.0, "inches")
  12393. },
  12394. {
  12395. name: "Gigamacro",
  12396. height: math.unit(160000000.0, "inches")
  12397. }
  12398. ]
  12399. )
  12400. };
  12401. pokemonMakers["Pikachu"] = () => {
  12402. return makeCharacter(
  12403. { name: "Pikachu" },
  12404. {
  12405. "Pikachu": {
  12406. height: math.unit("16", "inches"),
  12407. weight: math.unit("13.2", "lbs"),
  12408. name: "Pikachu",
  12409. image: {
  12410. source: "./media/pokemon/Pikachu.svg"
  12411. },
  12412. rename: true
  12413. },
  12414. "Gigantamax Pikachu": {
  12415. height: math.unit("827", "inches"),
  12416. weight: math.unit("1822764.2909179686", "lbs"),
  12417. name: "Gigantamax Pikachu",
  12418. image: {
  12419. source: "./media/pokemon/Gigantamax Pikachu.svg"
  12420. },
  12421. rename: true
  12422. }
  12423. },
  12424. [
  12425. {
  12426. name: "Micro",
  12427. height: math.unit(1.6, "inches")
  12428. },
  12429. {
  12430. name: "Normal",
  12431. height: math.unit(16, "inches"),
  12432. default: true
  12433. },
  12434. {
  12435. name: "Macro",
  12436. height: math.unit(1600.0, "inches")
  12437. },
  12438. {
  12439. name: "Megamacro",
  12440. height: math.unit(80000.0, "inches")
  12441. },
  12442. {
  12443. name: "Gigamacro",
  12444. height: math.unit(160000000.0, "inches")
  12445. }
  12446. ]
  12447. )
  12448. };
  12449. pokemonMakers["Sandaconda"] = () => {
  12450. return makeCharacter(
  12451. { name: "Sandaconda" },
  12452. {
  12453. "Sandaconda": {
  12454. height: math.unit("150", "inches"),
  12455. weight: math.unit("144.4", "lbs"),
  12456. name: "Sandaconda",
  12457. image: {
  12458. source: "./media/pokemon/Sandaconda.svg"
  12459. },
  12460. rename: true
  12461. },
  12462. "Gigantamax Sandaconda": {
  12463. height: math.unit("866", "inches"),
  12464. weight: math.unit("27787.347491081484", "lbs"),
  12465. name: "Gigantamax Sandaconda",
  12466. image: {
  12467. source: "./media/pokemon/Gigantamax Sandaconda.svg"
  12468. },
  12469. rename: true
  12470. }
  12471. },
  12472. [
  12473. {
  12474. name: "Micro",
  12475. height: math.unit(15.0, "inches")
  12476. },
  12477. {
  12478. name: "Normal",
  12479. height: math.unit(150, "inches"),
  12480. default: true
  12481. },
  12482. {
  12483. name: "Macro",
  12484. height: math.unit(15000.0, "inches")
  12485. },
  12486. {
  12487. name: "Megamacro",
  12488. height: math.unit(750000.0, "inches")
  12489. },
  12490. {
  12491. name: "Gigamacro",
  12492. height: math.unit(1500000000.0, "inches")
  12493. }
  12494. ]
  12495. )
  12496. };
  12497. pokemonMakers["Snorlax"] = () => {
  12498. return makeCharacter(
  12499. { name: "Snorlax" },
  12500. {
  12501. "Snorlax": {
  12502. height: math.unit("83", "inches"),
  12503. weight: math.unit("1014.1", "lbs"),
  12504. name: "Snorlax",
  12505. image: {
  12506. source: "./media/pokemon/Snorlax.svg"
  12507. },
  12508. rename: true
  12509. },
  12510. "Gigantamax Snorlax": {
  12511. height: math.unit("1378", "inches"),
  12512. weight: math.unit("4640813.954047924", "lbs"),
  12513. name: "Gigantamax Snorlax",
  12514. image: {
  12515. source: "./media/pokemon/Gigantamax Snorlax.svg"
  12516. },
  12517. rename: true
  12518. }
  12519. },
  12520. [
  12521. {
  12522. name: "Micro",
  12523. height: math.unit(8.3, "inches")
  12524. },
  12525. {
  12526. name: "Normal",
  12527. height: math.unit(83, "inches"),
  12528. default: true
  12529. },
  12530. {
  12531. name: "Macro",
  12532. height: math.unit(8300.0, "inches")
  12533. },
  12534. {
  12535. name: "Megamacro",
  12536. height: math.unit(415000.0, "inches")
  12537. },
  12538. {
  12539. name: "Gigamacro",
  12540. height: math.unit(830000000.0, "inches")
  12541. }
  12542. ]
  12543. )
  12544. };
  12545. pokemonMakers["Toxtricity"] = () => {
  12546. return makeCharacter(
  12547. { name: "Toxtricity" },
  12548. {
  12549. "Amped Form": {
  12550. height: math.unit("63", "inches"),
  12551. weight: math.unit("88.2", "lbs"),
  12552. name: "Amped Form",
  12553. image: {
  12554. source: "./media/pokemon/Toxtricity - Amped Form.svg"
  12555. },
  12556. rename: true
  12557. },
  12558. "Low Key Form": {
  12559. height: math.unit("63", "inches"),
  12560. weight: math.unit("88.2", "lbs"),
  12561. name: "Low Key Form",
  12562. image: {
  12563. source: "./media/pokemon/Toxtricity - Low Key Form.svg"
  12564. },
  12565. rename: true
  12566. },
  12567. "Gigantamax Toxtricity": {
  12568. height: math.unit("945", "inches"),
  12569. weight: math.unit("297675.0", "lbs"),
  12570. name: "Gigantamax Toxtricity",
  12571. image: {
  12572. source: "./media/pokemon/Gigantamax Toxtricity.svg"
  12573. },
  12574. rename: true
  12575. }
  12576. },
  12577. [
  12578. {
  12579. name: "Micro",
  12580. height: math.unit(6.3, "inches")
  12581. },
  12582. {
  12583. name: "Normal",
  12584. height: math.unit(63, "inches"),
  12585. default: true
  12586. },
  12587. {
  12588. name: "Macro",
  12589. height: math.unit(6300.0, "inches")
  12590. },
  12591. {
  12592. name: "Megamacro",
  12593. height: math.unit(315000.0, "inches")
  12594. },
  12595. {
  12596. name: "Gigamacro",
  12597. height: math.unit(630000000.0, "inches")
  12598. }
  12599. ]
  12600. )
  12601. };
  12602. pokemonMakers["Girafarig"] = () => {
  12603. return makeCharacter(
  12604. { name: "Girafarig" },
  12605. {
  12606. "Girafarig": {
  12607. height: math.unit("59", "inches"),
  12608. weight: math.unit("91.5", "lbs"),
  12609. name: "Girafarig",
  12610. image: {
  12611. source: "./media/pokemon/Girafarig.svg"
  12612. },
  12613. rename: true
  12614. }
  12615. },
  12616. [
  12617. {
  12618. name: "Micro",
  12619. height: math.unit(5.9, "inches")
  12620. },
  12621. {
  12622. name: "Normal",
  12623. height: math.unit(59, "inches"),
  12624. default: true
  12625. },
  12626. {
  12627. name: "Macro",
  12628. height: math.unit(5900.0, "inches")
  12629. },
  12630. {
  12631. name: "Megamacro",
  12632. height: math.unit(295000.0, "inches")
  12633. },
  12634. {
  12635. name: "Gigamacro",
  12636. height: math.unit(590000000.0, "inches")
  12637. }
  12638. ]
  12639. )
  12640. };
  12641. pokemonMakers["Giratina"] = () => {
  12642. return makeCharacter(
  12643. { name: "Giratina" },
  12644. {
  12645. "Altered Forme": {
  12646. height: math.unit("177", "inches"),
  12647. weight: math.unit("1653.5", "lbs"),
  12648. name: "Altered Forme",
  12649. image: {
  12650. source: "./media/pokemon/Giratina - Altered Forme.svg"
  12651. },
  12652. rename: true
  12653. },
  12654. "Origin Forme": {
  12655. height: math.unit("272", "inches"),
  12656. weight: math.unit("1433.0", "lbs"),
  12657. name: "Origin Forme",
  12658. image: {
  12659. source: "./media/pokemon/Giratina - Origin Forme.svg"
  12660. },
  12661. rename: true
  12662. }
  12663. },
  12664. [
  12665. {
  12666. name: "Micro",
  12667. height: math.unit(17.7, "inches")
  12668. },
  12669. {
  12670. name: "Normal",
  12671. height: math.unit(177, "inches"),
  12672. default: true
  12673. },
  12674. {
  12675. name: "Macro",
  12676. height: math.unit(17700.0, "inches")
  12677. },
  12678. {
  12679. name: "Megamacro",
  12680. height: math.unit(885000.0, "inches")
  12681. },
  12682. {
  12683. name: "Gigamacro",
  12684. height: math.unit(1770000000.0, "inches")
  12685. }
  12686. ]
  12687. )
  12688. };
  12689. pokemonMakers["Glaceon"] = () => {
  12690. return makeCharacter(
  12691. { name: "Glaceon" },
  12692. {
  12693. "Glaceon": {
  12694. height: math.unit("31", "inches"),
  12695. weight: math.unit("57.1", "lbs"),
  12696. name: "Glaceon",
  12697. image: {
  12698. source: "./media/pokemon/Glaceon.svg"
  12699. },
  12700. rename: true
  12701. }
  12702. },
  12703. [
  12704. {
  12705. name: "Micro",
  12706. height: math.unit(3.1, "inches")
  12707. },
  12708. {
  12709. name: "Normal",
  12710. height: math.unit(31, "inches"),
  12711. default: true
  12712. },
  12713. {
  12714. name: "Macro",
  12715. height: math.unit(3100.0, "inches")
  12716. },
  12717. {
  12718. name: "Megamacro",
  12719. height: math.unit(155000.0, "inches")
  12720. },
  12721. {
  12722. name: "Gigamacro",
  12723. height: math.unit(310000000.0, "inches")
  12724. }
  12725. ]
  12726. )
  12727. };
  12728. pokemonMakers["Glalie"] = () => {
  12729. return makeCharacter(
  12730. { name: "Glalie" },
  12731. {
  12732. "Glalie": {
  12733. height: math.unit("59", "inches"),
  12734. weight: math.unit("565.5", "lbs"),
  12735. name: "Glalie",
  12736. image: {
  12737. source: "./media/pokemon/Glalie.svg"
  12738. },
  12739. rename: true
  12740. },
  12741. "Mega Glalie": {
  12742. height: math.unit("83", "inches"),
  12743. weight: math.unit("772.1", "lbs"),
  12744. name: "Mega Glalie",
  12745. image: {
  12746. source: "./media/pokemon/Mega Glalie.svg"
  12747. },
  12748. rename: true
  12749. }
  12750. },
  12751. [
  12752. {
  12753. name: "Micro",
  12754. height: math.unit(5.9, "inches")
  12755. },
  12756. {
  12757. name: "Normal",
  12758. height: math.unit(59, "inches"),
  12759. default: true
  12760. },
  12761. {
  12762. name: "Macro",
  12763. height: math.unit(5900.0, "inches")
  12764. },
  12765. {
  12766. name: "Megamacro",
  12767. height: math.unit(295000.0, "inches")
  12768. },
  12769. {
  12770. name: "Gigamacro",
  12771. height: math.unit(590000000.0, "inches")
  12772. }
  12773. ]
  12774. )
  12775. };
  12776. pokemonMakers["Glameow"] = () => {
  12777. return makeCharacter(
  12778. { name: "Glameow" },
  12779. {
  12780. "Glameow": {
  12781. height: math.unit("20", "inches"),
  12782. weight: math.unit("8.6", "lbs"),
  12783. name: "Glameow",
  12784. image: {
  12785. source: "./media/pokemon/Glameow.svg"
  12786. },
  12787. rename: true
  12788. }
  12789. },
  12790. [
  12791. {
  12792. name: "Micro",
  12793. height: math.unit(2.0, "inches")
  12794. },
  12795. {
  12796. name: "Normal",
  12797. height: math.unit(20, "inches"),
  12798. default: true
  12799. },
  12800. {
  12801. name: "Macro",
  12802. height: math.unit(2000.0, "inches")
  12803. },
  12804. {
  12805. name: "Megamacro",
  12806. height: math.unit(100000.0, "inches")
  12807. },
  12808. {
  12809. name: "Gigamacro",
  12810. height: math.unit(200000000.0, "inches")
  12811. }
  12812. ]
  12813. )
  12814. };
  12815. pokemonMakers["Gligar"] = () => {
  12816. return makeCharacter(
  12817. { name: "Gligar" },
  12818. {
  12819. "Gligar": {
  12820. height: math.unit("43", "inches"),
  12821. weight: math.unit("142.9", "lbs"),
  12822. name: "Gligar",
  12823. image: {
  12824. source: "./media/pokemon/Gligar.svg"
  12825. },
  12826. rename: true
  12827. }
  12828. },
  12829. [
  12830. {
  12831. name: "Micro",
  12832. height: math.unit(4.3, "inches")
  12833. },
  12834. {
  12835. name: "Normal",
  12836. height: math.unit(43, "inches"),
  12837. default: true
  12838. },
  12839. {
  12840. name: "Macro",
  12841. height: math.unit(4300.0, "inches")
  12842. },
  12843. {
  12844. name: "Megamacro",
  12845. height: math.unit(215000.0, "inches")
  12846. },
  12847. {
  12848. name: "Gigamacro",
  12849. height: math.unit(430000000.0, "inches")
  12850. }
  12851. ]
  12852. )
  12853. };
  12854. pokemonMakers["Gliscor"] = () => {
  12855. return makeCharacter(
  12856. { name: "Gliscor" },
  12857. {
  12858. "Gliscor": {
  12859. height: math.unit("79", "inches"),
  12860. weight: math.unit("93.7", "lbs"),
  12861. name: "Gliscor",
  12862. image: {
  12863. source: "./media/pokemon/Gliscor.svg"
  12864. },
  12865. rename: true
  12866. }
  12867. },
  12868. [
  12869. {
  12870. name: "Micro",
  12871. height: math.unit(7.9, "inches")
  12872. },
  12873. {
  12874. name: "Normal",
  12875. height: math.unit(79, "inches"),
  12876. default: true
  12877. },
  12878. {
  12879. name: "Macro",
  12880. height: math.unit(7900.0, "inches")
  12881. },
  12882. {
  12883. name: "Megamacro",
  12884. height: math.unit(395000.0, "inches")
  12885. },
  12886. {
  12887. name: "Gigamacro",
  12888. height: math.unit(790000000.0, "inches")
  12889. }
  12890. ]
  12891. )
  12892. };
  12893. pokemonMakers["Gloom"] = () => {
  12894. return makeCharacter(
  12895. { name: "Gloom" },
  12896. {
  12897. "Gloom": {
  12898. height: math.unit("31", "inches"),
  12899. weight: math.unit("19.0", "lbs"),
  12900. name: "Gloom",
  12901. image: {
  12902. source: "./media/pokemon/Gloom.svg"
  12903. },
  12904. rename: true
  12905. }
  12906. },
  12907. [
  12908. {
  12909. name: "Micro",
  12910. height: math.unit(3.1, "inches")
  12911. },
  12912. {
  12913. name: "Normal",
  12914. height: math.unit(31, "inches"),
  12915. default: true
  12916. },
  12917. {
  12918. name: "Macro",
  12919. height: math.unit(3100.0, "inches")
  12920. },
  12921. {
  12922. name: "Megamacro",
  12923. height: math.unit(155000.0, "inches")
  12924. },
  12925. {
  12926. name: "Gigamacro",
  12927. height: math.unit(310000000.0, "inches")
  12928. }
  12929. ]
  12930. )
  12931. };
  12932. pokemonMakers["Gogoat"] = () => {
  12933. return makeCharacter(
  12934. { name: "Gogoat" },
  12935. {
  12936. "Gogoat": {
  12937. height: math.unit("67", "inches"),
  12938. weight: math.unit("200.6", "lbs"),
  12939. name: "Gogoat",
  12940. image: {
  12941. source: "./media/pokemon/Gogoat.svg"
  12942. },
  12943. rename: true
  12944. }
  12945. },
  12946. [
  12947. {
  12948. name: "Micro",
  12949. height: math.unit(6.7, "inches")
  12950. },
  12951. {
  12952. name: "Normal",
  12953. height: math.unit(67, "inches"),
  12954. default: true
  12955. },
  12956. {
  12957. name: "Macro",
  12958. height: math.unit(6700.0, "inches")
  12959. },
  12960. {
  12961. name: "Megamacro",
  12962. height: math.unit(335000.0, "inches")
  12963. },
  12964. {
  12965. name: "Gigamacro",
  12966. height: math.unit(670000000.0, "inches")
  12967. }
  12968. ]
  12969. )
  12970. };
  12971. pokemonMakers["Golbat"] = () => {
  12972. return makeCharacter(
  12973. { name: "Golbat" },
  12974. {
  12975. "Golbat": {
  12976. height: math.unit("63", "inches"),
  12977. weight: math.unit("121.3", "lbs"),
  12978. name: "Golbat",
  12979. image: {
  12980. source: "./media/pokemon/Golbat.svg"
  12981. },
  12982. rename: true
  12983. }
  12984. },
  12985. [
  12986. {
  12987. name: "Micro",
  12988. height: math.unit(6.3, "inches")
  12989. },
  12990. {
  12991. name: "Normal",
  12992. height: math.unit(63, "inches"),
  12993. default: true
  12994. },
  12995. {
  12996. name: "Macro",
  12997. height: math.unit(6300.0, "inches")
  12998. },
  12999. {
  13000. name: "Megamacro",
  13001. height: math.unit(315000.0, "inches")
  13002. },
  13003. {
  13004. name: "Gigamacro",
  13005. height: math.unit(630000000.0, "inches")
  13006. }
  13007. ]
  13008. )
  13009. };
  13010. pokemonMakers["Goldeen"] = () => {
  13011. return makeCharacter(
  13012. { name: "Goldeen" },
  13013. {
  13014. "Goldeen": {
  13015. height: math.unit("24", "inches"),
  13016. weight: math.unit("33.1", "lbs"),
  13017. name: "Goldeen",
  13018. image: {
  13019. source: "./media/pokemon/Goldeen.svg"
  13020. },
  13021. rename: true
  13022. }
  13023. },
  13024. [
  13025. {
  13026. name: "Micro",
  13027. height: math.unit(2.4, "inches")
  13028. },
  13029. {
  13030. name: "Normal",
  13031. height: math.unit(24, "inches"),
  13032. default: true
  13033. },
  13034. {
  13035. name: "Macro",
  13036. height: math.unit(2400.0, "inches")
  13037. },
  13038. {
  13039. name: "Megamacro",
  13040. height: math.unit(120000.0, "inches")
  13041. },
  13042. {
  13043. name: "Gigamacro",
  13044. height: math.unit(240000000.0, "inches")
  13045. }
  13046. ]
  13047. )
  13048. };
  13049. pokemonMakers["Golduck"] = () => {
  13050. return makeCharacter(
  13051. { name: "Golduck" },
  13052. {
  13053. "Golduck": {
  13054. height: math.unit("67", "inches"),
  13055. weight: math.unit("168.9", "lbs"),
  13056. name: "Golduck",
  13057. image: {
  13058. source: "./media/pokemon/Golduck.svg"
  13059. },
  13060. rename: true
  13061. }
  13062. },
  13063. [
  13064. {
  13065. name: "Micro",
  13066. height: math.unit(6.7, "inches")
  13067. },
  13068. {
  13069. name: "Normal",
  13070. height: math.unit(67, "inches"),
  13071. default: true
  13072. },
  13073. {
  13074. name: "Macro",
  13075. height: math.unit(6700.0, "inches")
  13076. },
  13077. {
  13078. name: "Megamacro",
  13079. height: math.unit(335000.0, "inches")
  13080. },
  13081. {
  13082. name: "Gigamacro",
  13083. height: math.unit(670000000.0, "inches")
  13084. }
  13085. ]
  13086. )
  13087. };
  13088. pokemonMakers["Golem"] = () => {
  13089. return makeCharacter(
  13090. { name: "Golem" },
  13091. {
  13092. "Alola Form": {
  13093. height: math.unit("67", "inches"),
  13094. weight: math.unit("696.7", "lbs"),
  13095. name: "Alola Form",
  13096. image: {
  13097. source: "./media/pokemon/Golem - Alola Form.svg"
  13098. },
  13099. rename: true
  13100. },
  13101. "Golem": {
  13102. height: math.unit("55", "inches"),
  13103. weight: math.unit("661.4", "lbs"),
  13104. name: "Golem",
  13105. image: {
  13106. source: "./media/pokemon/Golem.svg"
  13107. },
  13108. rename: true
  13109. }
  13110. },
  13111. [
  13112. {
  13113. name: "Micro",
  13114. height: math.unit(6.7, "inches")
  13115. },
  13116. {
  13117. name: "Normal",
  13118. height: math.unit(67, "inches"),
  13119. default: true
  13120. },
  13121. {
  13122. name: "Macro",
  13123. height: math.unit(6700.0, "inches")
  13124. },
  13125. {
  13126. name: "Megamacro",
  13127. height: math.unit(335000.0, "inches")
  13128. },
  13129. {
  13130. name: "Gigamacro",
  13131. height: math.unit(670000000.0, "inches")
  13132. }
  13133. ]
  13134. )
  13135. };
  13136. pokemonMakers["Golett"] = () => {
  13137. return makeCharacter(
  13138. { name: "Golett" },
  13139. {
  13140. "Golett": {
  13141. height: math.unit("39", "inches"),
  13142. weight: math.unit("202.8", "lbs"),
  13143. name: "Golett",
  13144. image: {
  13145. source: "./media/pokemon/Golett.svg"
  13146. },
  13147. rename: true
  13148. }
  13149. },
  13150. [
  13151. {
  13152. name: "Micro",
  13153. height: math.unit(3.9, "inches")
  13154. },
  13155. {
  13156. name: "Normal",
  13157. height: math.unit(39, "inches"),
  13158. default: true
  13159. },
  13160. {
  13161. name: "Macro",
  13162. height: math.unit(3900.0, "inches")
  13163. },
  13164. {
  13165. name: "Megamacro",
  13166. height: math.unit(195000.0, "inches")
  13167. },
  13168. {
  13169. name: "Gigamacro",
  13170. height: math.unit(390000000.0, "inches")
  13171. }
  13172. ]
  13173. )
  13174. };
  13175. pokemonMakers["Golisopod"] = () => {
  13176. return makeCharacter(
  13177. { name: "Golisopod" },
  13178. {
  13179. "Golisopod": {
  13180. height: math.unit("79", "inches"),
  13181. weight: math.unit("238.1", "lbs"),
  13182. name: "Golisopod",
  13183. image: {
  13184. source: "./media/pokemon/Golisopod.svg"
  13185. },
  13186. rename: true
  13187. }
  13188. },
  13189. [
  13190. {
  13191. name: "Micro",
  13192. height: math.unit(7.9, "inches")
  13193. },
  13194. {
  13195. name: "Normal",
  13196. height: math.unit(79, "inches"),
  13197. default: true
  13198. },
  13199. {
  13200. name: "Macro",
  13201. height: math.unit(7900.0, "inches")
  13202. },
  13203. {
  13204. name: "Megamacro",
  13205. height: math.unit(395000.0, "inches")
  13206. },
  13207. {
  13208. name: "Gigamacro",
  13209. height: math.unit(790000000.0, "inches")
  13210. }
  13211. ]
  13212. )
  13213. };
  13214. pokemonMakers["Golurk"] = () => {
  13215. return makeCharacter(
  13216. { name: "Golurk" },
  13217. {
  13218. "Golurk": {
  13219. height: math.unit("110", "inches"),
  13220. weight: math.unit("727.5", "lbs"),
  13221. name: "Golurk",
  13222. image: {
  13223. source: "./media/pokemon/Golurk.svg"
  13224. },
  13225. rename: true
  13226. }
  13227. },
  13228. [
  13229. {
  13230. name: "Micro",
  13231. height: math.unit(11.0, "inches")
  13232. },
  13233. {
  13234. name: "Normal",
  13235. height: math.unit(110, "inches"),
  13236. default: true
  13237. },
  13238. {
  13239. name: "Macro",
  13240. height: math.unit(11000.0, "inches")
  13241. },
  13242. {
  13243. name: "Megamacro",
  13244. height: math.unit(550000.0, "inches")
  13245. },
  13246. {
  13247. name: "Gigamacro",
  13248. height: math.unit(1100000000.0, "inches")
  13249. }
  13250. ]
  13251. )
  13252. };
  13253. pokemonMakers["Goodra"] = () => {
  13254. return makeCharacter(
  13255. { name: "Goodra" },
  13256. {
  13257. "Goodra": {
  13258. height: math.unit("79", "inches"),
  13259. weight: math.unit("331.8", "lbs"),
  13260. name: "Goodra",
  13261. image: {
  13262. source: "./media/pokemon/Goodra.svg"
  13263. },
  13264. rename: true
  13265. }
  13266. },
  13267. [
  13268. {
  13269. name: "Micro",
  13270. height: math.unit(7.9, "inches")
  13271. },
  13272. {
  13273. name: "Normal",
  13274. height: math.unit(79, "inches"),
  13275. default: true
  13276. },
  13277. {
  13278. name: "Macro",
  13279. height: math.unit(7900.0, "inches")
  13280. },
  13281. {
  13282. name: "Megamacro",
  13283. height: math.unit(395000.0, "inches")
  13284. },
  13285. {
  13286. name: "Gigamacro",
  13287. height: math.unit(790000000.0, "inches")
  13288. }
  13289. ]
  13290. )
  13291. };
  13292. pokemonMakers["Goomy"] = () => {
  13293. return makeCharacter(
  13294. { name: "Goomy" },
  13295. {
  13296. "Goomy": {
  13297. height: math.unit("12", "inches"),
  13298. weight: math.unit("6.2", "lbs"),
  13299. name: "Goomy",
  13300. image: {
  13301. source: "./media/pokemon/Goomy.svg"
  13302. },
  13303. rename: true
  13304. }
  13305. },
  13306. [
  13307. {
  13308. name: "Micro",
  13309. height: math.unit(1.2, "inches")
  13310. },
  13311. {
  13312. name: "Normal",
  13313. height: math.unit(12, "inches"),
  13314. default: true
  13315. },
  13316. {
  13317. name: "Macro",
  13318. height: math.unit(1200.0, "inches")
  13319. },
  13320. {
  13321. name: "Megamacro",
  13322. height: math.unit(60000.0, "inches")
  13323. },
  13324. {
  13325. name: "Gigamacro",
  13326. height: math.unit(120000000.0, "inches")
  13327. }
  13328. ]
  13329. )
  13330. };
  13331. pokemonMakers["Gorebyss"] = () => {
  13332. return makeCharacter(
  13333. { name: "Gorebyss" },
  13334. {
  13335. "Gorebyss": {
  13336. height: math.unit("71", "inches"),
  13337. weight: math.unit("49.8", "lbs"),
  13338. name: "Gorebyss",
  13339. image: {
  13340. source: "./media/pokemon/Gorebyss.svg"
  13341. },
  13342. rename: true
  13343. }
  13344. },
  13345. [
  13346. {
  13347. name: "Micro",
  13348. height: math.unit(7.1, "inches")
  13349. },
  13350. {
  13351. name: "Normal",
  13352. height: math.unit(71, "inches"),
  13353. default: true
  13354. },
  13355. {
  13356. name: "Macro",
  13357. height: math.unit(7100.0, "inches")
  13358. },
  13359. {
  13360. name: "Megamacro",
  13361. height: math.unit(355000.0, "inches")
  13362. },
  13363. {
  13364. name: "Gigamacro",
  13365. height: math.unit(710000000.0, "inches")
  13366. }
  13367. ]
  13368. )
  13369. };
  13370. pokemonMakers["Gossifleur"] = () => {
  13371. return makeCharacter(
  13372. { name: "Gossifleur" },
  13373. {
  13374. "Gossifleur": {
  13375. height: math.unit("16", "inches"),
  13376. weight: math.unit("4.9", "lbs"),
  13377. name: "Gossifleur",
  13378. image: {
  13379. source: "./media/pokemon/Gossifleur.svg"
  13380. },
  13381. rename: true
  13382. }
  13383. },
  13384. [
  13385. {
  13386. name: "Micro",
  13387. height: math.unit(1.6, "inches")
  13388. },
  13389. {
  13390. name: "Normal",
  13391. height: math.unit(16, "inches"),
  13392. default: true
  13393. },
  13394. {
  13395. name: "Macro",
  13396. height: math.unit(1600.0, "inches")
  13397. },
  13398. {
  13399. name: "Megamacro",
  13400. height: math.unit(80000.0, "inches")
  13401. },
  13402. {
  13403. name: "Gigamacro",
  13404. height: math.unit(160000000.0, "inches")
  13405. }
  13406. ]
  13407. )
  13408. };
  13409. pokemonMakers["Gothita"] = () => {
  13410. return makeCharacter(
  13411. { name: "Gothita" },
  13412. {
  13413. "Gothita": {
  13414. height: math.unit("16", "inches"),
  13415. weight: math.unit("12.8", "lbs"),
  13416. name: "Gothita",
  13417. image: {
  13418. source: "./media/pokemon/Gothita.svg"
  13419. },
  13420. rename: true
  13421. }
  13422. },
  13423. [
  13424. {
  13425. name: "Micro",
  13426. height: math.unit(1.6, "inches")
  13427. },
  13428. {
  13429. name: "Normal",
  13430. height: math.unit(16, "inches"),
  13431. default: true
  13432. },
  13433. {
  13434. name: "Macro",
  13435. height: math.unit(1600.0, "inches")
  13436. },
  13437. {
  13438. name: "Megamacro",
  13439. height: math.unit(80000.0, "inches")
  13440. },
  13441. {
  13442. name: "Gigamacro",
  13443. height: math.unit(160000000.0, "inches")
  13444. }
  13445. ]
  13446. )
  13447. };
  13448. pokemonMakers["Gothitelle"] = () => {
  13449. return makeCharacter(
  13450. { name: "Gothitelle" },
  13451. {
  13452. "Gothitelle": {
  13453. height: math.unit("59", "inches"),
  13454. weight: math.unit("97.0", "lbs"),
  13455. name: "Gothitelle",
  13456. image: {
  13457. source: "./media/pokemon/Gothitelle.svg"
  13458. },
  13459. rename: true
  13460. }
  13461. },
  13462. [
  13463. {
  13464. name: "Micro",
  13465. height: math.unit(5.9, "inches")
  13466. },
  13467. {
  13468. name: "Normal",
  13469. height: math.unit(59, "inches"),
  13470. default: true
  13471. },
  13472. {
  13473. name: "Macro",
  13474. height: math.unit(5900.0, "inches")
  13475. },
  13476. {
  13477. name: "Megamacro",
  13478. height: math.unit(295000.0, "inches")
  13479. },
  13480. {
  13481. name: "Gigamacro",
  13482. height: math.unit(590000000.0, "inches")
  13483. }
  13484. ]
  13485. )
  13486. };
  13487. pokemonMakers["Gothorita"] = () => {
  13488. return makeCharacter(
  13489. { name: "Gothorita" },
  13490. {
  13491. "Gothorita": {
  13492. height: math.unit("28", "inches"),
  13493. weight: math.unit("39.7", "lbs"),
  13494. name: "Gothorita",
  13495. image: {
  13496. source: "./media/pokemon/Gothorita.svg"
  13497. },
  13498. rename: true
  13499. }
  13500. },
  13501. [
  13502. {
  13503. name: "Micro",
  13504. height: math.unit(2.8, "inches")
  13505. },
  13506. {
  13507. name: "Normal",
  13508. height: math.unit(28, "inches"),
  13509. default: true
  13510. },
  13511. {
  13512. name: "Macro",
  13513. height: math.unit(2800.0, "inches")
  13514. },
  13515. {
  13516. name: "Megamacro",
  13517. height: math.unit(140000.0, "inches")
  13518. },
  13519. {
  13520. name: "Gigamacro",
  13521. height: math.unit(280000000.0, "inches")
  13522. }
  13523. ]
  13524. )
  13525. };
  13526. pokemonMakers["Gourgeist"] = () => {
  13527. return makeCharacter(
  13528. { name: "Gourgeist" },
  13529. {
  13530. "Large Size": {
  13531. height: math.unit("43", "inches"),
  13532. weight: math.unit("30.9", "lbs"),
  13533. name: "Large Size",
  13534. image: {
  13535. source: "./media/pokemon/Gourgeist - Large Size.svg"
  13536. },
  13537. rename: true
  13538. },
  13539. "Small Size": {
  13540. height: math.unit("28", "inches"),
  13541. weight: math.unit("20.9", "lbs"),
  13542. name: "Small Size",
  13543. image: {
  13544. source: "./media/pokemon/Gourgeist - Small Size.svg"
  13545. },
  13546. rename: true
  13547. },
  13548. "Super Size": {
  13549. height: math.unit("67", "inches"),
  13550. weight: math.unit("86.0", "lbs"),
  13551. name: "Super Size",
  13552. image: {
  13553. source: "./media/pokemon/Gourgeist - Super Size.svg"
  13554. },
  13555. rename: true
  13556. },
  13557. "Gourgeist": {
  13558. height: math.unit("35", "inches"),
  13559. weight: math.unit("27.6", "lbs"),
  13560. name: "Gourgeist",
  13561. image: {
  13562. source: "./media/pokemon/Gourgeist.svg"
  13563. },
  13564. rename: true
  13565. }
  13566. },
  13567. [
  13568. {
  13569. name: "Micro",
  13570. height: math.unit(4.3, "inches")
  13571. },
  13572. {
  13573. name: "Normal",
  13574. height: math.unit(43, "inches"),
  13575. default: true
  13576. },
  13577. {
  13578. name: "Macro",
  13579. height: math.unit(4300.0, "inches")
  13580. },
  13581. {
  13582. name: "Megamacro",
  13583. height: math.unit(215000.0, "inches")
  13584. },
  13585. {
  13586. name: "Gigamacro",
  13587. height: math.unit(430000000.0, "inches")
  13588. }
  13589. ]
  13590. )
  13591. };
  13592. pokemonMakers["Granbull"] = () => {
  13593. return makeCharacter(
  13594. { name: "Granbull" },
  13595. {
  13596. "Granbull": {
  13597. height: math.unit("55", "inches"),
  13598. weight: math.unit("107.4", "lbs"),
  13599. name: "Granbull",
  13600. image: {
  13601. source: "./media/pokemon/Granbull.svg"
  13602. },
  13603. rename: true
  13604. }
  13605. },
  13606. [
  13607. {
  13608. name: "Micro",
  13609. height: math.unit(5.5, "inches")
  13610. },
  13611. {
  13612. name: "Normal",
  13613. height: math.unit(55, "inches"),
  13614. default: true
  13615. },
  13616. {
  13617. name: "Macro",
  13618. height: math.unit(5500.0, "inches")
  13619. },
  13620. {
  13621. name: "Megamacro",
  13622. height: math.unit(275000.0, "inches")
  13623. },
  13624. {
  13625. name: "Gigamacro",
  13626. height: math.unit(550000000.0, "inches")
  13627. }
  13628. ]
  13629. )
  13630. };
  13631. pokemonMakers["Grapploct"] = () => {
  13632. return makeCharacter(
  13633. { name: "Grapploct" },
  13634. {
  13635. "Grapploct": {
  13636. height: math.unit("63", "inches"),
  13637. weight: math.unit("86.0", "lbs"),
  13638. name: "Grapploct",
  13639. image: {
  13640. source: "./media/pokemon/Grapploct.svg"
  13641. },
  13642. rename: true
  13643. }
  13644. },
  13645. [
  13646. {
  13647. name: "Micro",
  13648. height: math.unit(6.3, "inches")
  13649. },
  13650. {
  13651. name: "Normal",
  13652. height: math.unit(63, "inches"),
  13653. default: true
  13654. },
  13655. {
  13656. name: "Macro",
  13657. height: math.unit(6300.0, "inches")
  13658. },
  13659. {
  13660. name: "Megamacro",
  13661. height: math.unit(315000.0, "inches")
  13662. },
  13663. {
  13664. name: "Gigamacro",
  13665. height: math.unit(630000000.0, "inches")
  13666. }
  13667. ]
  13668. )
  13669. };
  13670. pokemonMakers["Graveler"] = () => {
  13671. return makeCharacter(
  13672. { name: "Graveler" },
  13673. {
  13674. "Alola Form": {
  13675. height: math.unit("39", "inches"),
  13676. weight: math.unit("242.5", "lbs"),
  13677. name: "Alola Form",
  13678. image: {
  13679. source: "./media/pokemon/Graveler - Alola Form.svg"
  13680. },
  13681. rename: true
  13682. },
  13683. "Graveler": {
  13684. height: math.unit("39", "inches"),
  13685. weight: math.unit("231.5", "lbs"),
  13686. name: "Graveler",
  13687. image: {
  13688. source: "./media/pokemon/Graveler.svg"
  13689. },
  13690. rename: true
  13691. }
  13692. },
  13693. [
  13694. {
  13695. name: "Micro",
  13696. height: math.unit(3.9, "inches")
  13697. },
  13698. {
  13699. name: "Normal",
  13700. height: math.unit(39, "inches"),
  13701. default: true
  13702. },
  13703. {
  13704. name: "Macro",
  13705. height: math.unit(3900.0, "inches")
  13706. },
  13707. {
  13708. name: "Megamacro",
  13709. height: math.unit(195000.0, "inches")
  13710. },
  13711. {
  13712. name: "Gigamacro",
  13713. height: math.unit(390000000.0, "inches")
  13714. }
  13715. ]
  13716. )
  13717. };
  13718. pokemonMakers["Greedent"] = () => {
  13719. return makeCharacter(
  13720. { name: "Greedent" },
  13721. {
  13722. "Greedent": {
  13723. height: math.unit("24", "inches"),
  13724. weight: math.unit("13.2", "lbs"),
  13725. name: "Greedent",
  13726. image: {
  13727. source: "./media/pokemon/Greedent.svg"
  13728. },
  13729. rename: true
  13730. }
  13731. },
  13732. [
  13733. {
  13734. name: "Micro",
  13735. height: math.unit(2.4, "inches")
  13736. },
  13737. {
  13738. name: "Normal",
  13739. height: math.unit(24, "inches"),
  13740. default: true
  13741. },
  13742. {
  13743. name: "Macro",
  13744. height: math.unit(2400.0, "inches")
  13745. },
  13746. {
  13747. name: "Megamacro",
  13748. height: math.unit(120000.0, "inches")
  13749. },
  13750. {
  13751. name: "Gigamacro",
  13752. height: math.unit(240000000.0, "inches")
  13753. }
  13754. ]
  13755. )
  13756. };
  13757. pokemonMakers["Grimer"] = () => {
  13758. return makeCharacter(
  13759. { name: "Grimer" },
  13760. {
  13761. "Alola Form": {
  13762. height: math.unit("28", "inches"),
  13763. weight: math.unit("92.6", "lbs"),
  13764. name: "Alola Form",
  13765. image: {
  13766. source: "./media/pokemon/Grimer - Alola Form.svg"
  13767. },
  13768. rename: true
  13769. },
  13770. "Grimer": {
  13771. height: math.unit("35", "inches"),
  13772. weight: math.unit("66.1", "lbs"),
  13773. name: "Grimer",
  13774. image: {
  13775. source: "./media/pokemon/Grimer.svg"
  13776. },
  13777. rename: true
  13778. }
  13779. },
  13780. [
  13781. {
  13782. name: "Micro",
  13783. height: math.unit(2.8, "inches")
  13784. },
  13785. {
  13786. name: "Normal",
  13787. height: math.unit(28, "inches"),
  13788. default: true
  13789. },
  13790. {
  13791. name: "Macro",
  13792. height: math.unit(2800.0, "inches")
  13793. },
  13794. {
  13795. name: "Megamacro",
  13796. height: math.unit(140000.0, "inches")
  13797. },
  13798. {
  13799. name: "Gigamacro",
  13800. height: math.unit(280000000.0, "inches")
  13801. }
  13802. ]
  13803. )
  13804. };
  13805. pokemonMakers["Grookey"] = () => {
  13806. return makeCharacter(
  13807. { name: "Grookey" },
  13808. {
  13809. "Grookey": {
  13810. height: math.unit("12", "inches"),
  13811. weight: math.unit("11.0", "lbs"),
  13812. name: "Grookey",
  13813. image: {
  13814. source: "./media/pokemon/Grookey.svg"
  13815. },
  13816. rename: true
  13817. }
  13818. },
  13819. [
  13820. {
  13821. name: "Micro",
  13822. height: math.unit(1.2, "inches")
  13823. },
  13824. {
  13825. name: "Normal",
  13826. height: math.unit(12, "inches"),
  13827. default: true
  13828. },
  13829. {
  13830. name: "Macro",
  13831. height: math.unit(1200.0, "inches")
  13832. },
  13833. {
  13834. name: "Megamacro",
  13835. height: math.unit(60000.0, "inches")
  13836. },
  13837. {
  13838. name: "Gigamacro",
  13839. height: math.unit(120000000.0, "inches")
  13840. }
  13841. ]
  13842. )
  13843. };
  13844. pokemonMakers["Grotle"] = () => {
  13845. return makeCharacter(
  13846. { name: "Grotle" },
  13847. {
  13848. "Grotle": {
  13849. height: math.unit("43", "inches"),
  13850. weight: math.unit("213.8", "lbs"),
  13851. name: "Grotle",
  13852. image: {
  13853. source: "./media/pokemon/Grotle.svg"
  13854. },
  13855. rename: true
  13856. }
  13857. },
  13858. [
  13859. {
  13860. name: "Micro",
  13861. height: math.unit(4.3, "inches")
  13862. },
  13863. {
  13864. name: "Normal",
  13865. height: math.unit(43, "inches"),
  13866. default: true
  13867. },
  13868. {
  13869. name: "Macro",
  13870. height: math.unit(4300.0, "inches")
  13871. },
  13872. {
  13873. name: "Megamacro",
  13874. height: math.unit(215000.0, "inches")
  13875. },
  13876. {
  13877. name: "Gigamacro",
  13878. height: math.unit(430000000.0, "inches")
  13879. }
  13880. ]
  13881. )
  13882. };
  13883. pokemonMakers["Groudon"] = () => {
  13884. return makeCharacter(
  13885. { name: "Groudon" },
  13886. {
  13887. "Groudon": {
  13888. height: math.unit("138", "inches"),
  13889. weight: math.unit("2094.4", "lbs"),
  13890. name: "Groudon",
  13891. image: {
  13892. source: "./media/pokemon/Groudon.svg"
  13893. },
  13894. rename: true
  13895. },
  13896. "Primal Groudon": {
  13897. height: math.unit("197", "inches"),
  13898. weight: math.unit("2204.0", "lbs"),
  13899. name: "Primal Groudon",
  13900. image: {
  13901. source: "./media/pokemon/Primal Groudon.svg"
  13902. },
  13903. rename: true
  13904. }
  13905. },
  13906. [
  13907. {
  13908. name: "Micro",
  13909. height: math.unit(13.8, "inches")
  13910. },
  13911. {
  13912. name: "Normal",
  13913. height: math.unit(138, "inches"),
  13914. default: true
  13915. },
  13916. {
  13917. name: "Macro",
  13918. height: math.unit(13800.0, "inches")
  13919. },
  13920. {
  13921. name: "Megamacro",
  13922. height: math.unit(690000.0, "inches")
  13923. },
  13924. {
  13925. name: "Gigamacro",
  13926. height: math.unit(1380000000.0, "inches")
  13927. }
  13928. ]
  13929. )
  13930. };
  13931. pokemonMakers["Grovyle"] = () => {
  13932. return makeCharacter(
  13933. { name: "Grovyle" },
  13934. {
  13935. "Grovyle": {
  13936. height: math.unit("35", "inches"),
  13937. weight: math.unit("47.6", "lbs"),
  13938. name: "Grovyle",
  13939. image: {
  13940. source: "./media/pokemon/Grovyle.svg"
  13941. },
  13942. rename: true
  13943. }
  13944. },
  13945. [
  13946. {
  13947. name: "Micro",
  13948. height: math.unit(3.5, "inches")
  13949. },
  13950. {
  13951. name: "Normal",
  13952. height: math.unit(35, "inches"),
  13953. default: true
  13954. },
  13955. {
  13956. name: "Macro",
  13957. height: math.unit(3500.0, "inches")
  13958. },
  13959. {
  13960. name: "Megamacro",
  13961. height: math.unit(175000.0, "inches")
  13962. },
  13963. {
  13964. name: "Gigamacro",
  13965. height: math.unit(350000000.0, "inches")
  13966. }
  13967. ]
  13968. )
  13969. };
  13970. pokemonMakers["Growlithe"] = () => {
  13971. return makeCharacter(
  13972. { name: "Growlithe" },
  13973. {
  13974. "Growlithe": {
  13975. height: math.unit("28", "inches"),
  13976. weight: math.unit("41.9", "lbs"),
  13977. name: "Growlithe",
  13978. image: {
  13979. source: "./media/pokemon/Growlithe.svg"
  13980. },
  13981. rename: true
  13982. }
  13983. },
  13984. [
  13985. {
  13986. name: "Micro",
  13987. height: math.unit(2.8, "inches")
  13988. },
  13989. {
  13990. name: "Normal",
  13991. height: math.unit(28, "inches"),
  13992. default: true
  13993. },
  13994. {
  13995. name: "Macro",
  13996. height: math.unit(2800.0, "inches")
  13997. },
  13998. {
  13999. name: "Megamacro",
  14000. height: math.unit(140000.0, "inches")
  14001. },
  14002. {
  14003. name: "Gigamacro",
  14004. height: math.unit(280000000.0, "inches")
  14005. }
  14006. ]
  14007. )
  14008. };
  14009. pokemonMakers["Grubbin"] = () => {
  14010. return makeCharacter(
  14011. { name: "Grubbin" },
  14012. {
  14013. "Grubbin": {
  14014. height: math.unit("16", "inches"),
  14015. weight: math.unit("9.7", "lbs"),
  14016. name: "Grubbin",
  14017. image: {
  14018. source: "./media/pokemon/Grubbin.svg"
  14019. },
  14020. rename: true
  14021. }
  14022. },
  14023. [
  14024. {
  14025. name: "Micro",
  14026. height: math.unit(1.6, "inches")
  14027. },
  14028. {
  14029. name: "Normal",
  14030. height: math.unit(16, "inches"),
  14031. default: true
  14032. },
  14033. {
  14034. name: "Macro",
  14035. height: math.unit(1600.0, "inches")
  14036. },
  14037. {
  14038. name: "Megamacro",
  14039. height: math.unit(80000.0, "inches")
  14040. },
  14041. {
  14042. name: "Gigamacro",
  14043. height: math.unit(160000000.0, "inches")
  14044. }
  14045. ]
  14046. )
  14047. };
  14048. pokemonMakers["Grumpig"] = () => {
  14049. return makeCharacter(
  14050. { name: "Grumpig" },
  14051. {
  14052. "Grumpig": {
  14053. height: math.unit("35", "inches"),
  14054. weight: math.unit("157.6", "lbs"),
  14055. name: "Grumpig",
  14056. image: {
  14057. source: "./media/pokemon/Grumpig.svg"
  14058. },
  14059. rename: true
  14060. }
  14061. },
  14062. [
  14063. {
  14064. name: "Micro",
  14065. height: math.unit(3.5, "inches")
  14066. },
  14067. {
  14068. name: "Normal",
  14069. height: math.unit(35, "inches"),
  14070. default: true
  14071. },
  14072. {
  14073. name: "Macro",
  14074. height: math.unit(3500.0, "inches")
  14075. },
  14076. {
  14077. name: "Megamacro",
  14078. height: math.unit(175000.0, "inches")
  14079. },
  14080. {
  14081. name: "Gigamacro",
  14082. height: math.unit(350000000.0, "inches")
  14083. }
  14084. ]
  14085. )
  14086. };
  14087. pokemonMakers["Gulpin"] = () => {
  14088. return makeCharacter(
  14089. { name: "Gulpin" },
  14090. {
  14091. "Gulpin": {
  14092. height: math.unit("16", "inches"),
  14093. weight: math.unit("22.7", "lbs"),
  14094. name: "Gulpin",
  14095. image: {
  14096. source: "./media/pokemon/Gulpin.svg"
  14097. },
  14098. rename: true
  14099. }
  14100. },
  14101. [
  14102. {
  14103. name: "Micro",
  14104. height: math.unit(1.6, "inches")
  14105. },
  14106. {
  14107. name: "Normal",
  14108. height: math.unit(16, "inches"),
  14109. default: true
  14110. },
  14111. {
  14112. name: "Macro",
  14113. height: math.unit(1600.0, "inches")
  14114. },
  14115. {
  14116. name: "Megamacro",
  14117. height: math.unit(80000.0, "inches")
  14118. },
  14119. {
  14120. name: "Gigamacro",
  14121. height: math.unit(160000000.0, "inches")
  14122. }
  14123. ]
  14124. )
  14125. };
  14126. pokemonMakers["Gumshoos"] = () => {
  14127. return makeCharacter(
  14128. { name: "Gumshoos" },
  14129. {
  14130. "Gumshoos": {
  14131. height: math.unit("28", "inches"),
  14132. weight: math.unit("31.3", "lbs"),
  14133. name: "Gumshoos",
  14134. image: {
  14135. source: "./media/pokemon/Gumshoos.svg"
  14136. },
  14137. rename: true
  14138. }
  14139. },
  14140. [
  14141. {
  14142. name: "Micro",
  14143. height: math.unit(2.8, "inches")
  14144. },
  14145. {
  14146. name: "Normal",
  14147. height: math.unit(28, "inches"),
  14148. default: true
  14149. },
  14150. {
  14151. name: "Macro",
  14152. height: math.unit(2800.0, "inches")
  14153. },
  14154. {
  14155. name: "Megamacro",
  14156. height: math.unit(140000.0, "inches")
  14157. },
  14158. {
  14159. name: "Gigamacro",
  14160. height: math.unit(280000000.0, "inches")
  14161. }
  14162. ]
  14163. )
  14164. };
  14165. pokemonMakers["Gurdurr"] = () => {
  14166. return makeCharacter(
  14167. { name: "Gurdurr" },
  14168. {
  14169. "Gurdurr": {
  14170. height: math.unit("47", "inches"),
  14171. weight: math.unit("88.2", "lbs"),
  14172. name: "Gurdurr",
  14173. image: {
  14174. source: "./media/pokemon/Gurdurr.svg"
  14175. },
  14176. rename: true
  14177. }
  14178. },
  14179. [
  14180. {
  14181. name: "Micro",
  14182. height: math.unit(4.7, "inches")
  14183. },
  14184. {
  14185. name: "Normal",
  14186. height: math.unit(47, "inches"),
  14187. default: true
  14188. },
  14189. {
  14190. name: "Macro",
  14191. height: math.unit(4700.0, "inches")
  14192. },
  14193. {
  14194. name: "Megamacro",
  14195. height: math.unit(235000.0, "inches")
  14196. },
  14197. {
  14198. name: "Gigamacro",
  14199. height: math.unit(470000000.0, "inches")
  14200. }
  14201. ]
  14202. )
  14203. };
  14204. pokemonMakers["Guzzlord"] = () => {
  14205. return makeCharacter(
  14206. { name: "Guzzlord" },
  14207. {
  14208. "Guzzlord": {
  14209. height: math.unit("217", "inches"),
  14210. weight: math.unit("1957.7", "lbs"),
  14211. name: "Guzzlord",
  14212. image: {
  14213. source: "./media/pokemon/Guzzlord.svg"
  14214. },
  14215. rename: true
  14216. }
  14217. },
  14218. [
  14219. {
  14220. name: "Micro",
  14221. height: math.unit(21.7, "inches")
  14222. },
  14223. {
  14224. name: "Normal",
  14225. height: math.unit(217, "inches"),
  14226. default: true
  14227. },
  14228. {
  14229. name: "Macro",
  14230. height: math.unit(21700.0, "inches")
  14231. },
  14232. {
  14233. name: "Megamacro",
  14234. height: math.unit(1085000.0, "inches")
  14235. },
  14236. {
  14237. name: "Gigamacro",
  14238. height: math.unit(2170000000.0, "inches")
  14239. }
  14240. ]
  14241. )
  14242. };
  14243. pokemonMakers["Gyarados"] = () => {
  14244. return makeCharacter(
  14245. { name: "Gyarados" },
  14246. {
  14247. "Gyarados": {
  14248. height: math.unit("256", "inches"),
  14249. weight: math.unit("518.1", "lbs"),
  14250. name: "Gyarados",
  14251. image: {
  14252. source: "./media/pokemon/Gyarados.svg"
  14253. },
  14254. rename: true
  14255. },
  14256. "Mega Gyarados": {
  14257. height: math.unit("256", "inches"),
  14258. weight: math.unit("672.4", "lbs"),
  14259. name: "Mega Gyarados",
  14260. image: {
  14261. source: "./media/pokemon/Mega Gyarados.svg"
  14262. },
  14263. rename: true
  14264. }
  14265. },
  14266. [
  14267. {
  14268. name: "Micro",
  14269. height: math.unit(25.6, "inches")
  14270. },
  14271. {
  14272. name: "Normal",
  14273. height: math.unit(256, "inches"),
  14274. default: true
  14275. },
  14276. {
  14277. name: "Macro",
  14278. height: math.unit(25600.0, "inches")
  14279. },
  14280. {
  14281. name: "Megamacro",
  14282. height: math.unit(1280000.0, "inches")
  14283. },
  14284. {
  14285. name: "Gigamacro",
  14286. height: math.unit(2560000000.0, "inches")
  14287. }
  14288. ]
  14289. )
  14290. };
  14291. pokemonMakers["Hakamo-o"] = () => {
  14292. return makeCharacter(
  14293. { name: "Hakamo-o" },
  14294. {
  14295. "Hakamo-o": {
  14296. height: math.unit("47", "inches"),
  14297. weight: math.unit("103.6", "lbs"),
  14298. name: "Hakamo-o",
  14299. image: {
  14300. source: "./media/pokemon/Hakamo-o.svg"
  14301. },
  14302. rename: true
  14303. }
  14304. },
  14305. [
  14306. {
  14307. name: "Micro",
  14308. height: math.unit(4.7, "inches")
  14309. },
  14310. {
  14311. name: "Normal",
  14312. height: math.unit(47, "inches"),
  14313. default: true
  14314. },
  14315. {
  14316. name: "Macro",
  14317. height: math.unit(4700.0, "inches")
  14318. },
  14319. {
  14320. name: "Megamacro",
  14321. height: math.unit(235000.0, "inches")
  14322. },
  14323. {
  14324. name: "Gigamacro",
  14325. height: math.unit(470000000.0, "inches")
  14326. }
  14327. ]
  14328. )
  14329. };
  14330. pokemonMakers["Happiny"] = () => {
  14331. return makeCharacter(
  14332. { name: "Happiny" },
  14333. {
  14334. "Happiny": {
  14335. height: math.unit("24", "inches"),
  14336. weight: math.unit("53.8", "lbs"),
  14337. name: "Happiny",
  14338. image: {
  14339. source: "./media/pokemon/Happiny.svg"
  14340. },
  14341. rename: true
  14342. }
  14343. },
  14344. [
  14345. {
  14346. name: "Micro",
  14347. height: math.unit(2.4, "inches")
  14348. },
  14349. {
  14350. name: "Normal",
  14351. height: math.unit(24, "inches"),
  14352. default: true
  14353. },
  14354. {
  14355. name: "Macro",
  14356. height: math.unit(2400.0, "inches")
  14357. },
  14358. {
  14359. name: "Megamacro",
  14360. height: math.unit(120000.0, "inches")
  14361. },
  14362. {
  14363. name: "Gigamacro",
  14364. height: math.unit(240000000.0, "inches")
  14365. }
  14366. ]
  14367. )
  14368. };
  14369. pokemonMakers["Hariyama"] = () => {
  14370. return makeCharacter(
  14371. { name: "Hariyama" },
  14372. {
  14373. "Hariyama": {
  14374. height: math.unit("91", "inches"),
  14375. weight: math.unit("559.5", "lbs"),
  14376. name: "Hariyama",
  14377. image: {
  14378. source: "./media/pokemon/Hariyama.svg"
  14379. },
  14380. rename: true
  14381. }
  14382. },
  14383. [
  14384. {
  14385. name: "Micro",
  14386. height: math.unit(9.1, "inches")
  14387. },
  14388. {
  14389. name: "Normal",
  14390. height: math.unit(91, "inches"),
  14391. default: true
  14392. },
  14393. {
  14394. name: "Macro",
  14395. height: math.unit(9100.0, "inches")
  14396. },
  14397. {
  14398. name: "Megamacro",
  14399. height: math.unit(455000.0, "inches")
  14400. },
  14401. {
  14402. name: "Gigamacro",
  14403. height: math.unit(910000000.0, "inches")
  14404. }
  14405. ]
  14406. )
  14407. };
  14408. pokemonMakers["Hatenna"] = () => {
  14409. return makeCharacter(
  14410. { name: "Hatenna" },
  14411. {
  14412. "Hatenna": {
  14413. height: math.unit("16", "inches"),
  14414. weight: math.unit("7.5", "lbs"),
  14415. name: "Hatenna",
  14416. image: {
  14417. source: "./media/pokemon/Hatenna.svg"
  14418. },
  14419. rename: true
  14420. }
  14421. },
  14422. [
  14423. {
  14424. name: "Micro",
  14425. height: math.unit(1.6, "inches")
  14426. },
  14427. {
  14428. name: "Normal",
  14429. height: math.unit(16, "inches"),
  14430. default: true
  14431. },
  14432. {
  14433. name: "Macro",
  14434. height: math.unit(1600.0, "inches")
  14435. },
  14436. {
  14437. name: "Megamacro",
  14438. height: math.unit(80000.0, "inches")
  14439. },
  14440. {
  14441. name: "Gigamacro",
  14442. height: math.unit(160000000.0, "inches")
  14443. }
  14444. ]
  14445. )
  14446. };
  14447. pokemonMakers["Hattrem"] = () => {
  14448. return makeCharacter(
  14449. { name: "Hattrem" },
  14450. {
  14451. "Hattrem": {
  14452. height: math.unit("24", "inches"),
  14453. weight: math.unit("10.6", "lbs"),
  14454. name: "Hattrem",
  14455. image: {
  14456. source: "./media/pokemon/Hattrem.svg"
  14457. },
  14458. rename: true
  14459. }
  14460. },
  14461. [
  14462. {
  14463. name: "Micro",
  14464. height: math.unit(2.4, "inches")
  14465. },
  14466. {
  14467. name: "Normal",
  14468. height: math.unit(24, "inches"),
  14469. default: true
  14470. },
  14471. {
  14472. name: "Macro",
  14473. height: math.unit(2400.0, "inches")
  14474. },
  14475. {
  14476. name: "Megamacro",
  14477. height: math.unit(120000.0, "inches")
  14478. },
  14479. {
  14480. name: "Gigamacro",
  14481. height: math.unit(240000000.0, "inches")
  14482. }
  14483. ]
  14484. )
  14485. };
  14486. pokemonMakers["Haunter"] = () => {
  14487. return makeCharacter(
  14488. { name: "Haunter" },
  14489. {
  14490. "Haunter": {
  14491. height: math.unit("63", "inches"),
  14492. weight: math.unit("0.2", "lbs"),
  14493. name: "Haunter",
  14494. image: {
  14495. source: "./media/pokemon/Haunter.svg"
  14496. },
  14497. rename: true
  14498. }
  14499. },
  14500. [
  14501. {
  14502. name: "Micro",
  14503. height: math.unit(6.3, "inches")
  14504. },
  14505. {
  14506. name: "Normal",
  14507. height: math.unit(63, "inches"),
  14508. default: true
  14509. },
  14510. {
  14511. name: "Macro",
  14512. height: math.unit(6300.0, "inches")
  14513. },
  14514. {
  14515. name: "Megamacro",
  14516. height: math.unit(315000.0, "inches")
  14517. },
  14518. {
  14519. name: "Gigamacro",
  14520. height: math.unit(630000000.0, "inches")
  14521. }
  14522. ]
  14523. )
  14524. };
  14525. pokemonMakers["Hawlucha"] = () => {
  14526. return makeCharacter(
  14527. { name: "Hawlucha" },
  14528. {
  14529. "Hawlucha": {
  14530. height: math.unit("31", "inches"),
  14531. weight: math.unit("47.4", "lbs"),
  14532. name: "Hawlucha",
  14533. image: {
  14534. source: "./media/pokemon/Hawlucha.svg"
  14535. },
  14536. rename: true
  14537. }
  14538. },
  14539. [
  14540. {
  14541. name: "Micro",
  14542. height: math.unit(3.1, "inches")
  14543. },
  14544. {
  14545. name: "Normal",
  14546. height: math.unit(31, "inches"),
  14547. default: true
  14548. },
  14549. {
  14550. name: "Macro",
  14551. height: math.unit(3100.0, "inches")
  14552. },
  14553. {
  14554. name: "Megamacro",
  14555. height: math.unit(155000.0, "inches")
  14556. },
  14557. {
  14558. name: "Gigamacro",
  14559. height: math.unit(310000000.0, "inches")
  14560. }
  14561. ]
  14562. )
  14563. };
  14564. pokemonMakers["Haxorus"] = () => {
  14565. return makeCharacter(
  14566. { name: "Haxorus" },
  14567. {
  14568. "Haxorus": {
  14569. height: math.unit("71", "inches"),
  14570. weight: math.unit("232.6", "lbs"),
  14571. name: "Haxorus",
  14572. image: {
  14573. source: "./media/pokemon/Haxorus.svg"
  14574. },
  14575. rename: true
  14576. }
  14577. },
  14578. [
  14579. {
  14580. name: "Micro",
  14581. height: math.unit(7.1, "inches")
  14582. },
  14583. {
  14584. name: "Normal",
  14585. height: math.unit(71, "inches"),
  14586. default: true
  14587. },
  14588. {
  14589. name: "Macro",
  14590. height: math.unit(7100.0, "inches")
  14591. },
  14592. {
  14593. name: "Megamacro",
  14594. height: math.unit(355000.0, "inches")
  14595. },
  14596. {
  14597. name: "Gigamacro",
  14598. height: math.unit(710000000.0, "inches")
  14599. }
  14600. ]
  14601. )
  14602. };
  14603. pokemonMakers["Heatmor"] = () => {
  14604. return makeCharacter(
  14605. { name: "Heatmor" },
  14606. {
  14607. "Heatmor": {
  14608. height: math.unit("55", "inches"),
  14609. weight: math.unit("127.9", "lbs"),
  14610. name: "Heatmor",
  14611. image: {
  14612. source: "./media/pokemon/Heatmor.svg"
  14613. },
  14614. rename: true
  14615. }
  14616. },
  14617. [
  14618. {
  14619. name: "Micro",
  14620. height: math.unit(5.5, "inches")
  14621. },
  14622. {
  14623. name: "Normal",
  14624. height: math.unit(55, "inches"),
  14625. default: true
  14626. },
  14627. {
  14628. name: "Macro",
  14629. height: math.unit(5500.0, "inches")
  14630. },
  14631. {
  14632. name: "Megamacro",
  14633. height: math.unit(275000.0, "inches")
  14634. },
  14635. {
  14636. name: "Gigamacro",
  14637. height: math.unit(550000000.0, "inches")
  14638. }
  14639. ]
  14640. )
  14641. };
  14642. pokemonMakers["Heatran"] = () => {
  14643. return makeCharacter(
  14644. { name: "Heatran" },
  14645. {
  14646. "Heatran": {
  14647. height: math.unit("67", "inches"),
  14648. weight: math.unit("948.0", "lbs"),
  14649. name: "Heatran",
  14650. image: {
  14651. source: "./media/pokemon/Heatran.svg"
  14652. },
  14653. rename: true
  14654. }
  14655. },
  14656. [
  14657. {
  14658. name: "Micro",
  14659. height: math.unit(6.7, "inches")
  14660. },
  14661. {
  14662. name: "Normal",
  14663. height: math.unit(67, "inches"),
  14664. default: true
  14665. },
  14666. {
  14667. name: "Macro",
  14668. height: math.unit(6700.0, "inches")
  14669. },
  14670. {
  14671. name: "Megamacro",
  14672. height: math.unit(335000.0, "inches")
  14673. },
  14674. {
  14675. name: "Gigamacro",
  14676. height: math.unit(670000000.0, "inches")
  14677. }
  14678. ]
  14679. )
  14680. };
  14681. pokemonMakers["Heliolisk"] = () => {
  14682. return makeCharacter(
  14683. { name: "Heliolisk" },
  14684. {
  14685. "Heliolisk": {
  14686. height: math.unit("39", "inches"),
  14687. weight: math.unit("46.3", "lbs"),
  14688. name: "Heliolisk",
  14689. image: {
  14690. source: "./media/pokemon/Heliolisk.svg"
  14691. },
  14692. rename: true
  14693. }
  14694. },
  14695. [
  14696. {
  14697. name: "Micro",
  14698. height: math.unit(3.9, "inches")
  14699. },
  14700. {
  14701. name: "Normal",
  14702. height: math.unit(39, "inches"),
  14703. default: true
  14704. },
  14705. {
  14706. name: "Macro",
  14707. height: math.unit(3900.0, "inches")
  14708. },
  14709. {
  14710. name: "Megamacro",
  14711. height: math.unit(195000.0, "inches")
  14712. },
  14713. {
  14714. name: "Gigamacro",
  14715. height: math.unit(390000000.0, "inches")
  14716. }
  14717. ]
  14718. )
  14719. };
  14720. pokemonMakers["Helioptile"] = () => {
  14721. return makeCharacter(
  14722. { name: "Helioptile" },
  14723. {
  14724. "Helioptile": {
  14725. height: math.unit("20", "inches"),
  14726. weight: math.unit("13.2", "lbs"),
  14727. name: "Helioptile",
  14728. image: {
  14729. source: "./media/pokemon/Helioptile.svg"
  14730. },
  14731. rename: true
  14732. }
  14733. },
  14734. [
  14735. {
  14736. name: "Micro",
  14737. height: math.unit(2.0, "inches")
  14738. },
  14739. {
  14740. name: "Normal",
  14741. height: math.unit(20, "inches"),
  14742. default: true
  14743. },
  14744. {
  14745. name: "Macro",
  14746. height: math.unit(2000.0, "inches")
  14747. },
  14748. {
  14749. name: "Megamacro",
  14750. height: math.unit(100000.0, "inches")
  14751. },
  14752. {
  14753. name: "Gigamacro",
  14754. height: math.unit(200000000.0, "inches")
  14755. }
  14756. ]
  14757. )
  14758. };
  14759. pokemonMakers["Heracross"] = () => {
  14760. return makeCharacter(
  14761. { name: "Heracross" },
  14762. {
  14763. "Heracross": {
  14764. height: math.unit("59", "inches"),
  14765. weight: math.unit("119.0", "lbs"),
  14766. name: "Heracross",
  14767. image: {
  14768. source: "./media/pokemon/Heracross.svg"
  14769. },
  14770. rename: true
  14771. },
  14772. "Mega Heracross": {
  14773. height: math.unit("67", "inches"),
  14774. weight: math.unit("137.8", "lbs"),
  14775. name: "Mega Heracross",
  14776. image: {
  14777. source: "./media/pokemon/Mega Heracross.svg"
  14778. },
  14779. rename: true
  14780. }
  14781. },
  14782. [
  14783. {
  14784. name: "Micro",
  14785. height: math.unit(5.9, "inches")
  14786. },
  14787. {
  14788. name: "Normal",
  14789. height: math.unit(59, "inches"),
  14790. default: true
  14791. },
  14792. {
  14793. name: "Macro",
  14794. height: math.unit(5900.0, "inches")
  14795. },
  14796. {
  14797. name: "Megamacro",
  14798. height: math.unit(295000.0, "inches")
  14799. },
  14800. {
  14801. name: "Gigamacro",
  14802. height: math.unit(590000000.0, "inches")
  14803. }
  14804. ]
  14805. )
  14806. };
  14807. pokemonMakers["Herdier"] = () => {
  14808. return makeCharacter(
  14809. { name: "Herdier" },
  14810. {
  14811. "Herdier": {
  14812. height: math.unit("35", "inches"),
  14813. weight: math.unit("32.4", "lbs"),
  14814. name: "Herdier",
  14815. image: {
  14816. source: "./media/pokemon/Herdier.svg"
  14817. },
  14818. rename: true
  14819. }
  14820. },
  14821. [
  14822. {
  14823. name: "Micro",
  14824. height: math.unit(3.5, "inches")
  14825. },
  14826. {
  14827. name: "Normal",
  14828. height: math.unit(35, "inches"),
  14829. default: true
  14830. },
  14831. {
  14832. name: "Macro",
  14833. height: math.unit(3500.0, "inches")
  14834. },
  14835. {
  14836. name: "Megamacro",
  14837. height: math.unit(175000.0, "inches")
  14838. },
  14839. {
  14840. name: "Gigamacro",
  14841. height: math.unit(350000000.0, "inches")
  14842. }
  14843. ]
  14844. )
  14845. };
  14846. pokemonMakers["Hippopotas"] = () => {
  14847. return makeCharacter(
  14848. { name: "Hippopotas" },
  14849. {
  14850. "Hippopotas": {
  14851. height: math.unit("31", "inches"),
  14852. weight: math.unit("109.1", "lbs"),
  14853. name: "Hippopotas",
  14854. image: {
  14855. source: "./media/pokemon/Hippopotas.svg"
  14856. },
  14857. rename: true
  14858. }
  14859. },
  14860. [
  14861. {
  14862. name: "Micro",
  14863. height: math.unit(3.1, "inches")
  14864. },
  14865. {
  14866. name: "Normal",
  14867. height: math.unit(31, "inches"),
  14868. default: true
  14869. },
  14870. {
  14871. name: "Macro",
  14872. height: math.unit(3100.0, "inches")
  14873. },
  14874. {
  14875. name: "Megamacro",
  14876. height: math.unit(155000.0, "inches")
  14877. },
  14878. {
  14879. name: "Gigamacro",
  14880. height: math.unit(310000000.0, "inches")
  14881. }
  14882. ]
  14883. )
  14884. };
  14885. pokemonMakers["Hippowdon"] = () => {
  14886. return makeCharacter(
  14887. { name: "Hippowdon" },
  14888. {
  14889. "Hippowdon": {
  14890. height: math.unit("79", "inches"),
  14891. weight: math.unit("661.4", "lbs"),
  14892. name: "Hippowdon",
  14893. image: {
  14894. source: "./media/pokemon/Hippowdon.svg"
  14895. },
  14896. rename: true
  14897. }
  14898. },
  14899. [
  14900. {
  14901. name: "Micro",
  14902. height: math.unit(7.9, "inches")
  14903. },
  14904. {
  14905. name: "Normal",
  14906. height: math.unit(79, "inches"),
  14907. default: true
  14908. },
  14909. {
  14910. name: "Macro",
  14911. height: math.unit(7900.0, "inches")
  14912. },
  14913. {
  14914. name: "Megamacro",
  14915. height: math.unit(395000.0, "inches")
  14916. },
  14917. {
  14918. name: "Gigamacro",
  14919. height: math.unit(790000000.0, "inches")
  14920. }
  14921. ]
  14922. )
  14923. };
  14924. pokemonMakers["Hitmonchan"] = () => {
  14925. return makeCharacter(
  14926. { name: "Hitmonchan" },
  14927. {
  14928. "Hitmonchan": {
  14929. height: math.unit("55", "inches"),
  14930. weight: math.unit("110.7", "lbs"),
  14931. name: "Hitmonchan",
  14932. image: {
  14933. source: "./media/pokemon/Hitmonchan.svg"
  14934. },
  14935. rename: true
  14936. }
  14937. },
  14938. [
  14939. {
  14940. name: "Micro",
  14941. height: math.unit(5.5, "inches")
  14942. },
  14943. {
  14944. name: "Normal",
  14945. height: math.unit(55, "inches"),
  14946. default: true
  14947. },
  14948. {
  14949. name: "Macro",
  14950. height: math.unit(5500.0, "inches")
  14951. },
  14952. {
  14953. name: "Megamacro",
  14954. height: math.unit(275000.0, "inches")
  14955. },
  14956. {
  14957. name: "Gigamacro",
  14958. height: math.unit(550000000.0, "inches")
  14959. }
  14960. ]
  14961. )
  14962. };
  14963. pokemonMakers["Hitmonlee"] = () => {
  14964. return makeCharacter(
  14965. { name: "Hitmonlee" },
  14966. {
  14967. "Hitmonlee": {
  14968. height: math.unit("59", "inches"),
  14969. weight: math.unit("109.8", "lbs"),
  14970. name: "Hitmonlee",
  14971. image: {
  14972. source: "./media/pokemon/Hitmonlee.svg"
  14973. },
  14974. rename: true
  14975. }
  14976. },
  14977. [
  14978. {
  14979. name: "Micro",
  14980. height: math.unit(5.9, "inches")
  14981. },
  14982. {
  14983. name: "Normal",
  14984. height: math.unit(59, "inches"),
  14985. default: true
  14986. },
  14987. {
  14988. name: "Macro",
  14989. height: math.unit(5900.0, "inches")
  14990. },
  14991. {
  14992. name: "Megamacro",
  14993. height: math.unit(295000.0, "inches")
  14994. },
  14995. {
  14996. name: "Gigamacro",
  14997. height: math.unit(590000000.0, "inches")
  14998. }
  14999. ]
  15000. )
  15001. };
  15002. pokemonMakers["Hitmontop"] = () => {
  15003. return makeCharacter(
  15004. { name: "Hitmontop" },
  15005. {
  15006. "Hitmontop": {
  15007. height: math.unit("55", "inches"),
  15008. weight: math.unit("105.8", "lbs"),
  15009. name: "Hitmontop",
  15010. image: {
  15011. source: "./media/pokemon/Hitmontop.svg"
  15012. },
  15013. rename: true
  15014. }
  15015. },
  15016. [
  15017. {
  15018. name: "Micro",
  15019. height: math.unit(5.5, "inches")
  15020. },
  15021. {
  15022. name: "Normal",
  15023. height: math.unit(55, "inches"),
  15024. default: true
  15025. },
  15026. {
  15027. name: "Macro",
  15028. height: math.unit(5500.0, "inches")
  15029. },
  15030. {
  15031. name: "Megamacro",
  15032. height: math.unit(275000.0, "inches")
  15033. },
  15034. {
  15035. name: "Gigamacro",
  15036. height: math.unit(550000000.0, "inches")
  15037. }
  15038. ]
  15039. )
  15040. };
  15041. pokemonMakers["Ho-Oh"] = () => {
  15042. return makeCharacter(
  15043. { name: "Ho-Oh" },
  15044. {
  15045. "Ho-Oh": {
  15046. height: math.unit("150", "inches"),
  15047. weight: math.unit("438.7", "lbs"),
  15048. name: "Ho-Oh",
  15049. image: {
  15050. source: "./media/pokemon/Ho-Oh.svg"
  15051. },
  15052. rename: true
  15053. }
  15054. },
  15055. [
  15056. {
  15057. name: "Micro",
  15058. height: math.unit(15.0, "inches")
  15059. },
  15060. {
  15061. name: "Normal",
  15062. height: math.unit(150, "inches"),
  15063. default: true
  15064. },
  15065. {
  15066. name: "Macro",
  15067. height: math.unit(15000.0, "inches")
  15068. },
  15069. {
  15070. name: "Megamacro",
  15071. height: math.unit(750000.0, "inches")
  15072. },
  15073. {
  15074. name: "Gigamacro",
  15075. height: math.unit(1500000000.0, "inches")
  15076. }
  15077. ]
  15078. )
  15079. };
  15080. pokemonMakers["Honchkrow"] = () => {
  15081. return makeCharacter(
  15082. { name: "Honchkrow" },
  15083. {
  15084. "Honchkrow": {
  15085. height: math.unit("35", "inches"),
  15086. weight: math.unit("60.2", "lbs"),
  15087. name: "Honchkrow",
  15088. image: {
  15089. source: "./media/pokemon/Honchkrow.svg"
  15090. },
  15091. rename: true
  15092. }
  15093. },
  15094. [
  15095. {
  15096. name: "Micro",
  15097. height: math.unit(3.5, "inches")
  15098. },
  15099. {
  15100. name: "Normal",
  15101. height: math.unit(35, "inches"),
  15102. default: true
  15103. },
  15104. {
  15105. name: "Macro",
  15106. height: math.unit(3500.0, "inches")
  15107. },
  15108. {
  15109. name: "Megamacro",
  15110. height: math.unit(175000.0, "inches")
  15111. },
  15112. {
  15113. name: "Gigamacro",
  15114. height: math.unit(350000000.0, "inches")
  15115. }
  15116. ]
  15117. )
  15118. };
  15119. pokemonMakers["Honedge"] = () => {
  15120. return makeCharacter(
  15121. { name: "Honedge" },
  15122. {
  15123. "Honedge": {
  15124. height: math.unit("31", "inches"),
  15125. weight: math.unit("4.4", "lbs"),
  15126. name: "Honedge",
  15127. image: {
  15128. source: "./media/pokemon/Honedge.svg"
  15129. },
  15130. rename: true
  15131. }
  15132. },
  15133. [
  15134. {
  15135. name: "Micro",
  15136. height: math.unit(3.1, "inches")
  15137. },
  15138. {
  15139. name: "Normal",
  15140. height: math.unit(31, "inches"),
  15141. default: true
  15142. },
  15143. {
  15144. name: "Macro",
  15145. height: math.unit(3100.0, "inches")
  15146. },
  15147. {
  15148. name: "Megamacro",
  15149. height: math.unit(155000.0, "inches")
  15150. },
  15151. {
  15152. name: "Gigamacro",
  15153. height: math.unit(310000000.0, "inches")
  15154. }
  15155. ]
  15156. )
  15157. };
  15158. pokemonMakers["Hoopa"] = () => {
  15159. return makeCharacter(
  15160. { name: "Hoopa" },
  15161. {
  15162. "Hoopa Confined": {
  15163. height: math.unit("20", "inches"),
  15164. weight: math.unit("19.8", "lbs"),
  15165. name: "Hoopa Confined",
  15166. image: {
  15167. source: "./media/pokemon/Hoopa Confined.svg"
  15168. },
  15169. rename: true
  15170. },
  15171. "Hoopa Unbound": {
  15172. height: math.unit("256", "inches"),
  15173. weight: math.unit("1080.3", "lbs"),
  15174. name: "Hoopa Unbound",
  15175. image: {
  15176. source: "./media/pokemon/Hoopa Unbound.svg"
  15177. },
  15178. rename: true
  15179. }
  15180. },
  15181. [
  15182. {
  15183. name: "Micro",
  15184. height: math.unit(2.0, "inches")
  15185. },
  15186. {
  15187. name: "Normal",
  15188. height: math.unit(20, "inches"),
  15189. default: true
  15190. },
  15191. {
  15192. name: "Macro",
  15193. height: math.unit(2000.0, "inches")
  15194. },
  15195. {
  15196. name: "Megamacro",
  15197. height: math.unit(100000.0, "inches")
  15198. },
  15199. {
  15200. name: "Gigamacro",
  15201. height: math.unit(200000000.0, "inches")
  15202. }
  15203. ]
  15204. )
  15205. };
  15206. pokemonMakers["Hoothoot"] = () => {
  15207. return makeCharacter(
  15208. { name: "Hoothoot" },
  15209. {
  15210. "Hoothoot": {
  15211. height: math.unit("28", "inches"),
  15212. weight: math.unit("46.7", "lbs"),
  15213. name: "Hoothoot",
  15214. image: {
  15215. source: "./media/pokemon/Hoothoot.svg"
  15216. },
  15217. rename: true
  15218. }
  15219. },
  15220. [
  15221. {
  15222. name: "Micro",
  15223. height: math.unit(2.8, "inches")
  15224. },
  15225. {
  15226. name: "Normal",
  15227. height: math.unit(28, "inches"),
  15228. default: true
  15229. },
  15230. {
  15231. name: "Macro",
  15232. height: math.unit(2800.0, "inches")
  15233. },
  15234. {
  15235. name: "Megamacro",
  15236. height: math.unit(140000.0, "inches")
  15237. },
  15238. {
  15239. name: "Gigamacro",
  15240. height: math.unit(280000000.0, "inches")
  15241. }
  15242. ]
  15243. )
  15244. };
  15245. pokemonMakers["Hoppip"] = () => {
  15246. return makeCharacter(
  15247. { name: "Hoppip" },
  15248. {
  15249. "Hoppip": {
  15250. height: math.unit("16", "inches"),
  15251. weight: math.unit("1.1", "lbs"),
  15252. name: "Hoppip",
  15253. image: {
  15254. source: "./media/pokemon/Hoppip.svg"
  15255. },
  15256. rename: true
  15257. }
  15258. },
  15259. [
  15260. {
  15261. name: "Micro",
  15262. height: math.unit(1.6, "inches")
  15263. },
  15264. {
  15265. name: "Normal",
  15266. height: math.unit(16, "inches"),
  15267. default: true
  15268. },
  15269. {
  15270. name: "Macro",
  15271. height: math.unit(1600.0, "inches")
  15272. },
  15273. {
  15274. name: "Megamacro",
  15275. height: math.unit(80000.0, "inches")
  15276. },
  15277. {
  15278. name: "Gigamacro",
  15279. height: math.unit(160000000.0, "inches")
  15280. }
  15281. ]
  15282. )
  15283. };
  15284. pokemonMakers["Horsea"] = () => {
  15285. return makeCharacter(
  15286. { name: "Horsea" },
  15287. {
  15288. "Horsea": {
  15289. height: math.unit("16", "inches"),
  15290. weight: math.unit("17.6", "lbs"),
  15291. name: "Horsea",
  15292. image: {
  15293. source: "./media/pokemon/Horsea.svg"
  15294. },
  15295. rename: true
  15296. }
  15297. },
  15298. [
  15299. {
  15300. name: "Micro",
  15301. height: math.unit(1.6, "inches")
  15302. },
  15303. {
  15304. name: "Normal",
  15305. height: math.unit(16, "inches"),
  15306. default: true
  15307. },
  15308. {
  15309. name: "Macro",
  15310. height: math.unit(1600.0, "inches")
  15311. },
  15312. {
  15313. name: "Megamacro",
  15314. height: math.unit(80000.0, "inches")
  15315. },
  15316. {
  15317. name: "Gigamacro",
  15318. height: math.unit(160000000.0, "inches")
  15319. }
  15320. ]
  15321. )
  15322. };
  15323. pokemonMakers["Houndoom"] = () => {
  15324. return makeCharacter(
  15325. { name: "Houndoom" },
  15326. {
  15327. "Houndoom": {
  15328. height: math.unit("55", "inches"),
  15329. weight: math.unit("77.2", "lbs"),
  15330. name: "Houndoom",
  15331. image: {
  15332. source: "./media/pokemon/Houndoom.svg"
  15333. },
  15334. rename: true
  15335. },
  15336. "Mega Houndoom": {
  15337. height: math.unit("75", "inches"),
  15338. weight: math.unit("109.1", "lbs"),
  15339. name: "Mega Houndoom",
  15340. image: {
  15341. source: "./media/pokemon/Mega Houndoom.svg"
  15342. },
  15343. rename: true
  15344. }
  15345. },
  15346. [
  15347. {
  15348. name: "Micro",
  15349. height: math.unit(5.5, "inches")
  15350. },
  15351. {
  15352. name: "Normal",
  15353. height: math.unit(55, "inches"),
  15354. default: true
  15355. },
  15356. {
  15357. name: "Macro",
  15358. height: math.unit(5500.0, "inches")
  15359. },
  15360. {
  15361. name: "Megamacro",
  15362. height: math.unit(275000.0, "inches")
  15363. },
  15364. {
  15365. name: "Gigamacro",
  15366. height: math.unit(550000000.0, "inches")
  15367. }
  15368. ]
  15369. )
  15370. };
  15371. pokemonMakers["Houndour"] = () => {
  15372. return makeCharacter(
  15373. { name: "Houndour" },
  15374. {
  15375. "Houndour": {
  15376. height: math.unit("24", "inches"),
  15377. weight: math.unit("23.8", "lbs"),
  15378. name: "Houndour",
  15379. image: {
  15380. source: "./media/pokemon/Houndour.svg"
  15381. },
  15382. rename: true
  15383. }
  15384. },
  15385. [
  15386. {
  15387. name: "Micro",
  15388. height: math.unit(2.4, "inches")
  15389. },
  15390. {
  15391. name: "Normal",
  15392. height: math.unit(24, "inches"),
  15393. default: true
  15394. },
  15395. {
  15396. name: "Macro",
  15397. height: math.unit(2400.0, "inches")
  15398. },
  15399. {
  15400. name: "Megamacro",
  15401. height: math.unit(120000.0, "inches")
  15402. },
  15403. {
  15404. name: "Gigamacro",
  15405. height: math.unit(240000000.0, "inches")
  15406. }
  15407. ]
  15408. )
  15409. };
  15410. pokemonMakers["Huntail"] = () => {
  15411. return makeCharacter(
  15412. { name: "Huntail" },
  15413. {
  15414. "Huntail": {
  15415. height: math.unit("67", "inches"),
  15416. weight: math.unit("59.5", "lbs"),
  15417. name: "Huntail",
  15418. image: {
  15419. source: "./media/pokemon/Huntail.svg"
  15420. },
  15421. rename: true
  15422. }
  15423. },
  15424. [
  15425. {
  15426. name: "Micro",
  15427. height: math.unit(6.7, "inches")
  15428. },
  15429. {
  15430. name: "Normal",
  15431. height: math.unit(67, "inches"),
  15432. default: true
  15433. },
  15434. {
  15435. name: "Macro",
  15436. height: math.unit(6700.0, "inches")
  15437. },
  15438. {
  15439. name: "Megamacro",
  15440. height: math.unit(335000.0, "inches")
  15441. },
  15442. {
  15443. name: "Gigamacro",
  15444. height: math.unit(670000000.0, "inches")
  15445. }
  15446. ]
  15447. )
  15448. };
  15449. pokemonMakers["Hydreigon"] = () => {
  15450. return makeCharacter(
  15451. { name: "Hydreigon" },
  15452. {
  15453. "Hydreigon": {
  15454. height: math.unit("71", "inches"),
  15455. weight: math.unit("352.7", "lbs"),
  15456. name: "Hydreigon",
  15457. image: {
  15458. source: "./media/pokemon/Hydreigon.svg"
  15459. },
  15460. rename: true
  15461. }
  15462. },
  15463. [
  15464. {
  15465. name: "Micro",
  15466. height: math.unit(7.1, "inches")
  15467. },
  15468. {
  15469. name: "Normal",
  15470. height: math.unit(71, "inches"),
  15471. default: true
  15472. },
  15473. {
  15474. name: "Macro",
  15475. height: math.unit(7100.0, "inches")
  15476. },
  15477. {
  15478. name: "Megamacro",
  15479. height: math.unit(355000.0, "inches")
  15480. },
  15481. {
  15482. name: "Gigamacro",
  15483. height: math.unit(710000000.0, "inches")
  15484. }
  15485. ]
  15486. )
  15487. };
  15488. pokemonMakers["Hypno"] = () => {
  15489. return makeCharacter(
  15490. { name: "Hypno" },
  15491. {
  15492. "Hypno": {
  15493. height: math.unit("63", "inches"),
  15494. weight: math.unit("166.7", "lbs"),
  15495. name: "Hypno",
  15496. image: {
  15497. source: "./media/pokemon/Hypno.svg"
  15498. },
  15499. rename: true
  15500. }
  15501. },
  15502. [
  15503. {
  15504. name: "Micro",
  15505. height: math.unit(6.3, "inches")
  15506. },
  15507. {
  15508. name: "Normal",
  15509. height: math.unit(63, "inches"),
  15510. default: true
  15511. },
  15512. {
  15513. name: "Macro",
  15514. height: math.unit(6300.0, "inches")
  15515. },
  15516. {
  15517. name: "Megamacro",
  15518. height: math.unit(315000.0, "inches")
  15519. },
  15520. {
  15521. name: "Gigamacro",
  15522. height: math.unit(630000000.0, "inches")
  15523. }
  15524. ]
  15525. )
  15526. };
  15527. pokemonMakers["Igglybuff"] = () => {
  15528. return makeCharacter(
  15529. { name: "Igglybuff" },
  15530. {
  15531. "Igglybuff": {
  15532. height: math.unit("12", "inches"),
  15533. weight: math.unit("2.2", "lbs"),
  15534. name: "Igglybuff",
  15535. image: {
  15536. source: "./media/pokemon/Igglybuff.svg"
  15537. },
  15538. rename: true
  15539. }
  15540. },
  15541. [
  15542. {
  15543. name: "Micro",
  15544. height: math.unit(1.2, "inches")
  15545. },
  15546. {
  15547. name: "Normal",
  15548. height: math.unit(12, "inches"),
  15549. default: true
  15550. },
  15551. {
  15552. name: "Macro",
  15553. height: math.unit(1200.0, "inches")
  15554. },
  15555. {
  15556. name: "Megamacro",
  15557. height: math.unit(60000.0, "inches")
  15558. },
  15559. {
  15560. name: "Gigamacro",
  15561. height: math.unit(120000000.0, "inches")
  15562. }
  15563. ]
  15564. )
  15565. };
  15566. pokemonMakers["Illumise"] = () => {
  15567. return makeCharacter(
  15568. { name: "Illumise" },
  15569. {
  15570. "Illumise": {
  15571. height: math.unit("24", "inches"),
  15572. weight: math.unit("39.0", "lbs"),
  15573. name: "Illumise",
  15574. image: {
  15575. source: "./media/pokemon/Illumise.svg"
  15576. },
  15577. rename: true
  15578. }
  15579. },
  15580. [
  15581. {
  15582. name: "Micro",
  15583. height: math.unit(2.4, "inches")
  15584. },
  15585. {
  15586. name: "Normal",
  15587. height: math.unit(24, "inches"),
  15588. default: true
  15589. },
  15590. {
  15591. name: "Macro",
  15592. height: math.unit(2400.0, "inches")
  15593. },
  15594. {
  15595. name: "Megamacro",
  15596. height: math.unit(120000.0, "inches")
  15597. },
  15598. {
  15599. name: "Gigamacro",
  15600. height: math.unit(240000000.0, "inches")
  15601. }
  15602. ]
  15603. )
  15604. };
  15605. pokemonMakers["Impidimp"] = () => {
  15606. return makeCharacter(
  15607. { name: "Impidimp" },
  15608. {
  15609. "Impidimp": {
  15610. height: math.unit("16", "inches"),
  15611. weight: math.unit("12.1", "lbs"),
  15612. name: "Impidimp",
  15613. image: {
  15614. source: "./media/pokemon/Impidimp.svg"
  15615. },
  15616. rename: true
  15617. }
  15618. },
  15619. [
  15620. {
  15621. name: "Micro",
  15622. height: math.unit(1.6, "inches")
  15623. },
  15624. {
  15625. name: "Normal",
  15626. height: math.unit(16, "inches"),
  15627. default: true
  15628. },
  15629. {
  15630. name: "Macro",
  15631. height: math.unit(1600.0, "inches")
  15632. },
  15633. {
  15634. name: "Megamacro",
  15635. height: math.unit(80000.0, "inches")
  15636. },
  15637. {
  15638. name: "Gigamacro",
  15639. height: math.unit(160000000.0, "inches")
  15640. }
  15641. ]
  15642. )
  15643. };
  15644. pokemonMakers["Incineroar"] = () => {
  15645. return makeCharacter(
  15646. { name: "Incineroar" },
  15647. {
  15648. "Incineroar": {
  15649. height: math.unit("71", "inches"),
  15650. weight: math.unit("183.0", "lbs"),
  15651. name: "Incineroar",
  15652. image: {
  15653. source: "./media/pokemon/Incineroar.svg"
  15654. },
  15655. rename: true
  15656. }
  15657. },
  15658. [
  15659. {
  15660. name: "Micro",
  15661. height: math.unit(7.1, "inches")
  15662. },
  15663. {
  15664. name: "Normal",
  15665. height: math.unit(71, "inches"),
  15666. default: true
  15667. },
  15668. {
  15669. name: "Macro",
  15670. height: math.unit(7100.0, "inches")
  15671. },
  15672. {
  15673. name: "Megamacro",
  15674. height: math.unit(355000.0, "inches")
  15675. },
  15676. {
  15677. name: "Gigamacro",
  15678. height: math.unit(710000000.0, "inches")
  15679. }
  15680. ]
  15681. )
  15682. };
  15683. pokemonMakers["Indeedee"] = () => {
  15684. return makeCharacter(
  15685. { name: "Indeedee" },
  15686. {
  15687. "Female": {
  15688. height: math.unit("35", "inches"),
  15689. weight: math.unit("61.7", "lbs"),
  15690. name: "Female",
  15691. image: {
  15692. source: "./media/pokemon/Indeedee - Female.svg"
  15693. },
  15694. rename: true
  15695. },
  15696. "Male": {
  15697. height: math.unit("35", "inches"),
  15698. weight: math.unit("61.7", "lbs"),
  15699. name: "Male",
  15700. image: {
  15701. source: "./media/pokemon/Indeedee - Male.svg"
  15702. },
  15703. rename: true
  15704. }
  15705. },
  15706. [
  15707. {
  15708. name: "Micro",
  15709. height: math.unit(3.5, "inches")
  15710. },
  15711. {
  15712. name: "Normal",
  15713. height: math.unit(35, "inches"),
  15714. default: true
  15715. },
  15716. {
  15717. name: "Macro",
  15718. height: math.unit(3500.0, "inches")
  15719. },
  15720. {
  15721. name: "Megamacro",
  15722. height: math.unit(175000.0, "inches")
  15723. },
  15724. {
  15725. name: "Gigamacro",
  15726. height: math.unit(350000000.0, "inches")
  15727. }
  15728. ]
  15729. )
  15730. };
  15731. pokemonMakers["Infernape"] = () => {
  15732. return makeCharacter(
  15733. { name: "Infernape" },
  15734. {
  15735. "Infernape": {
  15736. height: math.unit("47", "inches"),
  15737. weight: math.unit("121.3", "lbs"),
  15738. name: "Infernape",
  15739. image: {
  15740. source: "./media/pokemon/Infernape.svg"
  15741. },
  15742. rename: true
  15743. }
  15744. },
  15745. [
  15746. {
  15747. name: "Micro",
  15748. height: math.unit(4.7, "inches")
  15749. },
  15750. {
  15751. name: "Normal",
  15752. height: math.unit(47, "inches"),
  15753. default: true
  15754. },
  15755. {
  15756. name: "Macro",
  15757. height: math.unit(4700.0, "inches")
  15758. },
  15759. {
  15760. name: "Megamacro",
  15761. height: math.unit(235000.0, "inches")
  15762. },
  15763. {
  15764. name: "Gigamacro",
  15765. height: math.unit(470000000.0, "inches")
  15766. }
  15767. ]
  15768. )
  15769. };
  15770. pokemonMakers["Inkay"] = () => {
  15771. return makeCharacter(
  15772. { name: "Inkay" },
  15773. {
  15774. "Inkay": {
  15775. height: math.unit("16", "inches"),
  15776. weight: math.unit("7.7", "lbs"),
  15777. name: "Inkay",
  15778. image: {
  15779. source: "./media/pokemon/Inkay.svg"
  15780. },
  15781. rename: true
  15782. }
  15783. },
  15784. [
  15785. {
  15786. name: "Micro",
  15787. height: math.unit(1.6, "inches")
  15788. },
  15789. {
  15790. name: "Normal",
  15791. height: math.unit(16, "inches"),
  15792. default: true
  15793. },
  15794. {
  15795. name: "Macro",
  15796. height: math.unit(1600.0, "inches")
  15797. },
  15798. {
  15799. name: "Megamacro",
  15800. height: math.unit(80000.0, "inches")
  15801. },
  15802. {
  15803. name: "Gigamacro",
  15804. height: math.unit(160000000.0, "inches")
  15805. }
  15806. ]
  15807. )
  15808. };
  15809. pokemonMakers["Inteleon"] = () => {
  15810. return makeCharacter(
  15811. { name: "Inteleon" },
  15812. {
  15813. "Inteleon": {
  15814. height: math.unit("75", "inches"),
  15815. weight: math.unit("99.6", "lbs"),
  15816. name: "Inteleon",
  15817. image: {
  15818. source: "./media/pokemon/Inteleon.svg"
  15819. },
  15820. rename: true
  15821. }
  15822. },
  15823. [
  15824. {
  15825. name: "Micro",
  15826. height: math.unit(7.5, "inches")
  15827. },
  15828. {
  15829. name: "Normal",
  15830. height: math.unit(75, "inches"),
  15831. default: true
  15832. },
  15833. {
  15834. name: "Macro",
  15835. height: math.unit(7500.0, "inches")
  15836. },
  15837. {
  15838. name: "Megamacro",
  15839. height: math.unit(375000.0, "inches")
  15840. },
  15841. {
  15842. name: "Gigamacro",
  15843. height: math.unit(750000000.0, "inches")
  15844. }
  15845. ]
  15846. )
  15847. };
  15848. pokemonMakers["Ivysaur"] = () => {
  15849. return makeCharacter(
  15850. { name: "Ivysaur" },
  15851. {
  15852. "Ivysaur": {
  15853. height: math.unit("39", "inches"),
  15854. weight: math.unit("28.7", "lbs"),
  15855. name: "Ivysaur",
  15856. image: {
  15857. source: "./media/pokemon/Ivysaur.svg"
  15858. },
  15859. rename: true
  15860. }
  15861. },
  15862. [
  15863. {
  15864. name: "Micro",
  15865. height: math.unit(3.9, "inches")
  15866. },
  15867. {
  15868. name: "Normal",
  15869. height: math.unit(39, "inches"),
  15870. default: true
  15871. },
  15872. {
  15873. name: "Macro",
  15874. height: math.unit(3900.0, "inches")
  15875. },
  15876. {
  15877. name: "Megamacro",
  15878. height: math.unit(195000.0, "inches")
  15879. },
  15880. {
  15881. name: "Gigamacro",
  15882. height: math.unit(390000000.0, "inches")
  15883. }
  15884. ]
  15885. )
  15886. };
  15887. pokemonMakers["Jangmo-o"] = () => {
  15888. return makeCharacter(
  15889. { name: "Jangmo-o" },
  15890. {
  15891. "Jangmo-o": {
  15892. height: math.unit("24", "inches"),
  15893. weight: math.unit("65.5", "lbs"),
  15894. name: "Jangmo-o",
  15895. image: {
  15896. source: "./media/pokemon/Jangmo-o.svg"
  15897. },
  15898. rename: true
  15899. }
  15900. },
  15901. [
  15902. {
  15903. name: "Micro",
  15904. height: math.unit(2.4, "inches")
  15905. },
  15906. {
  15907. name: "Normal",
  15908. height: math.unit(24, "inches"),
  15909. default: true
  15910. },
  15911. {
  15912. name: "Macro",
  15913. height: math.unit(2400.0, "inches")
  15914. },
  15915. {
  15916. name: "Megamacro",
  15917. height: math.unit(120000.0, "inches")
  15918. },
  15919. {
  15920. name: "Gigamacro",
  15921. height: math.unit(240000000.0, "inches")
  15922. }
  15923. ]
  15924. )
  15925. };
  15926. pokemonMakers["Jellicent"] = () => {
  15927. return makeCharacter(
  15928. { name: "Jellicent" },
  15929. {
  15930. "Jellicent": {
  15931. height: math.unit("87", "inches"),
  15932. weight: math.unit("297.6", "lbs"),
  15933. name: "Jellicent",
  15934. image: {
  15935. source: "./media/pokemon/Jellicent.svg"
  15936. },
  15937. rename: true
  15938. }
  15939. },
  15940. [
  15941. {
  15942. name: "Micro",
  15943. height: math.unit(8.7, "inches")
  15944. },
  15945. {
  15946. name: "Normal",
  15947. height: math.unit(87, "inches"),
  15948. default: true
  15949. },
  15950. {
  15951. name: "Macro",
  15952. height: math.unit(8700.0, "inches")
  15953. },
  15954. {
  15955. name: "Megamacro",
  15956. height: math.unit(435000.0, "inches")
  15957. },
  15958. {
  15959. name: "Gigamacro",
  15960. height: math.unit(870000000.0, "inches")
  15961. }
  15962. ]
  15963. )
  15964. };
  15965. pokemonMakers["Jigglypuff"] = () => {
  15966. return makeCharacter(
  15967. { name: "Jigglypuff" },
  15968. {
  15969. "Jigglypuff": {
  15970. height: math.unit("20", "inches"),
  15971. weight: math.unit("12.1", "lbs"),
  15972. name: "Jigglypuff",
  15973. image: {
  15974. source: "./media/pokemon/Jigglypuff.svg"
  15975. },
  15976. rename: true
  15977. }
  15978. },
  15979. [
  15980. {
  15981. name: "Micro",
  15982. height: math.unit(2.0, "inches")
  15983. },
  15984. {
  15985. name: "Normal",
  15986. height: math.unit(20, "inches"),
  15987. default: true
  15988. },
  15989. {
  15990. name: "Macro",
  15991. height: math.unit(2000.0, "inches")
  15992. },
  15993. {
  15994. name: "Megamacro",
  15995. height: math.unit(100000.0, "inches")
  15996. },
  15997. {
  15998. name: "Gigamacro",
  15999. height: math.unit(200000000.0, "inches")
  16000. }
  16001. ]
  16002. )
  16003. };
  16004. pokemonMakers["Jirachi"] = () => {
  16005. return makeCharacter(
  16006. { name: "Jirachi" },
  16007. {
  16008. "Jirachi": {
  16009. height: math.unit("12", "inches"),
  16010. weight: math.unit("2.4", "lbs"),
  16011. name: "Jirachi",
  16012. image: {
  16013. source: "./media/pokemon/Jirachi.svg"
  16014. },
  16015. rename: true
  16016. }
  16017. },
  16018. [
  16019. {
  16020. name: "Micro",
  16021. height: math.unit(1.2, "inches")
  16022. },
  16023. {
  16024. name: "Normal",
  16025. height: math.unit(12, "inches"),
  16026. default: true
  16027. },
  16028. {
  16029. name: "Macro",
  16030. height: math.unit(1200.0, "inches")
  16031. },
  16032. {
  16033. name: "Megamacro",
  16034. height: math.unit(60000.0, "inches")
  16035. },
  16036. {
  16037. name: "Gigamacro",
  16038. height: math.unit(120000000.0, "inches")
  16039. }
  16040. ]
  16041. )
  16042. };
  16043. pokemonMakers["Jolteon"] = () => {
  16044. return makeCharacter(
  16045. { name: "Jolteon" },
  16046. {
  16047. "Jolteon": {
  16048. height: math.unit("31", "inches"),
  16049. weight: math.unit("54.0", "lbs"),
  16050. name: "Jolteon",
  16051. image: {
  16052. source: "./media/pokemon/Jolteon.svg"
  16053. },
  16054. rename: true
  16055. }
  16056. },
  16057. [
  16058. {
  16059. name: "Micro",
  16060. height: math.unit(3.1, "inches")
  16061. },
  16062. {
  16063. name: "Normal",
  16064. height: math.unit(31, "inches"),
  16065. default: true
  16066. },
  16067. {
  16068. name: "Macro",
  16069. height: math.unit(3100.0, "inches")
  16070. },
  16071. {
  16072. name: "Megamacro",
  16073. height: math.unit(155000.0, "inches")
  16074. },
  16075. {
  16076. name: "Gigamacro",
  16077. height: math.unit(310000000.0, "inches")
  16078. }
  16079. ]
  16080. )
  16081. };
  16082. pokemonMakers["Joltik"] = () => {
  16083. return makeCharacter(
  16084. { name: "Joltik" },
  16085. {
  16086. "Joltik": {
  16087. height: math.unit("4", "inches"),
  16088. weight: math.unit("1.3", "lbs"),
  16089. name: "Joltik",
  16090. image: {
  16091. source: "./media/pokemon/Joltik.svg"
  16092. },
  16093. rename: true
  16094. }
  16095. },
  16096. [
  16097. {
  16098. name: "Micro",
  16099. height: math.unit(0.4, "inches")
  16100. },
  16101. {
  16102. name: "Normal",
  16103. height: math.unit(4, "inches"),
  16104. default: true
  16105. },
  16106. {
  16107. name: "Macro",
  16108. height: math.unit(400.0, "inches")
  16109. },
  16110. {
  16111. name: "Megamacro",
  16112. height: math.unit(20000.0, "inches")
  16113. },
  16114. {
  16115. name: "Gigamacro",
  16116. height: math.unit(40000000.0, "inches")
  16117. }
  16118. ]
  16119. )
  16120. };
  16121. pokemonMakers["Jumpluff"] = () => {
  16122. return makeCharacter(
  16123. { name: "Jumpluff" },
  16124. {
  16125. "Jumpluff": {
  16126. height: math.unit("31", "inches"),
  16127. weight: math.unit("6.6", "lbs"),
  16128. name: "Jumpluff",
  16129. image: {
  16130. source: "./media/pokemon/Jumpluff.svg"
  16131. },
  16132. rename: true
  16133. }
  16134. },
  16135. [
  16136. {
  16137. name: "Micro",
  16138. height: math.unit(3.1, "inches")
  16139. },
  16140. {
  16141. name: "Normal",
  16142. height: math.unit(31, "inches"),
  16143. default: true
  16144. },
  16145. {
  16146. name: "Macro",
  16147. height: math.unit(3100.0, "inches")
  16148. },
  16149. {
  16150. name: "Megamacro",
  16151. height: math.unit(155000.0, "inches")
  16152. },
  16153. {
  16154. name: "Gigamacro",
  16155. height: math.unit(310000000.0, "inches")
  16156. }
  16157. ]
  16158. )
  16159. };
  16160. pokemonMakers["Jynx"] = () => {
  16161. return makeCharacter(
  16162. { name: "Jynx" },
  16163. {
  16164. "Jynx": {
  16165. height: math.unit("55", "inches"),
  16166. weight: math.unit("89.5", "lbs"),
  16167. name: "Jynx",
  16168. image: {
  16169. source: "./media/pokemon/Jynx.svg"
  16170. },
  16171. rename: true
  16172. }
  16173. },
  16174. [
  16175. {
  16176. name: "Micro",
  16177. height: math.unit(5.5, "inches")
  16178. },
  16179. {
  16180. name: "Normal",
  16181. height: math.unit(55, "inches"),
  16182. default: true
  16183. },
  16184. {
  16185. name: "Macro",
  16186. height: math.unit(5500.0, "inches")
  16187. },
  16188. {
  16189. name: "Megamacro",
  16190. height: math.unit(275000.0, "inches")
  16191. },
  16192. {
  16193. name: "Gigamacro",
  16194. height: math.unit(550000000.0, "inches")
  16195. }
  16196. ]
  16197. )
  16198. };
  16199. pokemonMakers["Kabuto"] = () => {
  16200. return makeCharacter(
  16201. { name: "Kabuto" },
  16202. {
  16203. "Kabuto": {
  16204. height: math.unit("20", "inches"),
  16205. weight: math.unit("25.4", "lbs"),
  16206. name: "Kabuto",
  16207. image: {
  16208. source: "./media/pokemon/Kabuto.svg"
  16209. },
  16210. rename: true
  16211. }
  16212. },
  16213. [
  16214. {
  16215. name: "Micro",
  16216. height: math.unit(2.0, "inches")
  16217. },
  16218. {
  16219. name: "Normal",
  16220. height: math.unit(20, "inches"),
  16221. default: true
  16222. },
  16223. {
  16224. name: "Macro",
  16225. height: math.unit(2000.0, "inches")
  16226. },
  16227. {
  16228. name: "Megamacro",
  16229. height: math.unit(100000.0, "inches")
  16230. },
  16231. {
  16232. name: "Gigamacro",
  16233. height: math.unit(200000000.0, "inches")
  16234. }
  16235. ]
  16236. )
  16237. };
  16238. pokemonMakers["Kabutops"] = () => {
  16239. return makeCharacter(
  16240. { name: "Kabutops" },
  16241. {
  16242. "Kabutops": {
  16243. height: math.unit("51", "inches"),
  16244. weight: math.unit("89.3", "lbs"),
  16245. name: "Kabutops",
  16246. image: {
  16247. source: "./media/pokemon/Kabutops.svg"
  16248. },
  16249. rename: true
  16250. }
  16251. },
  16252. [
  16253. {
  16254. name: "Micro",
  16255. height: math.unit(5.1, "inches")
  16256. },
  16257. {
  16258. name: "Normal",
  16259. height: math.unit(51, "inches"),
  16260. default: true
  16261. },
  16262. {
  16263. name: "Macro",
  16264. height: math.unit(5100.0, "inches")
  16265. },
  16266. {
  16267. name: "Megamacro",
  16268. height: math.unit(255000.0, "inches")
  16269. },
  16270. {
  16271. name: "Gigamacro",
  16272. height: math.unit(510000000.0, "inches")
  16273. }
  16274. ]
  16275. )
  16276. };
  16277. pokemonMakers["Kadabra"] = () => {
  16278. return makeCharacter(
  16279. { name: "Kadabra" },
  16280. {
  16281. "Kadabra": {
  16282. height: math.unit("51", "inches"),
  16283. weight: math.unit("124.6", "lbs"),
  16284. name: "Kadabra",
  16285. image: {
  16286. source: "./media/pokemon/Kadabra.svg"
  16287. },
  16288. rename: true
  16289. }
  16290. },
  16291. [
  16292. {
  16293. name: "Micro",
  16294. height: math.unit(5.1, "inches")
  16295. },
  16296. {
  16297. name: "Normal",
  16298. height: math.unit(51, "inches"),
  16299. default: true
  16300. },
  16301. {
  16302. name: "Macro",
  16303. height: math.unit(5100.0, "inches")
  16304. },
  16305. {
  16306. name: "Megamacro",
  16307. height: math.unit(255000.0, "inches")
  16308. },
  16309. {
  16310. name: "Gigamacro",
  16311. height: math.unit(510000000.0, "inches")
  16312. }
  16313. ]
  16314. )
  16315. };
  16316. pokemonMakers["Kakuna"] = () => {
  16317. return makeCharacter(
  16318. { name: "Kakuna" },
  16319. {
  16320. "Kakuna": {
  16321. height: math.unit("24", "inches"),
  16322. weight: math.unit("22.0", "lbs"),
  16323. name: "Kakuna",
  16324. image: {
  16325. source: "./media/pokemon/Kakuna.svg"
  16326. },
  16327. rename: true
  16328. }
  16329. },
  16330. [
  16331. {
  16332. name: "Micro",
  16333. height: math.unit(2.4, "inches")
  16334. },
  16335. {
  16336. name: "Normal",
  16337. height: math.unit(24, "inches"),
  16338. default: true
  16339. },
  16340. {
  16341. name: "Macro",
  16342. height: math.unit(2400.0, "inches")
  16343. },
  16344. {
  16345. name: "Megamacro",
  16346. height: math.unit(120000.0, "inches")
  16347. },
  16348. {
  16349. name: "Gigamacro",
  16350. height: math.unit(240000000.0, "inches")
  16351. }
  16352. ]
  16353. )
  16354. };
  16355. pokemonMakers["Kangaskhan"] = () => {
  16356. return makeCharacter(
  16357. { name: "Kangaskhan" },
  16358. {
  16359. "Kangaskhan": {
  16360. height: math.unit("87", "inches"),
  16361. weight: math.unit("176.4", "lbs"),
  16362. name: "Kangaskhan",
  16363. image: {
  16364. source: "./media/pokemon/Kangaskhan.svg"
  16365. },
  16366. rename: true
  16367. },
  16368. "Mega Kangaskhan": {
  16369. height: math.unit("87", "inches"),
  16370. weight: math.unit("220.5", "lbs"),
  16371. name: "Mega Kangaskhan",
  16372. image: {
  16373. source: "./media/pokemon/Mega Kangaskhan.svg"
  16374. },
  16375. rename: true
  16376. }
  16377. },
  16378. [
  16379. {
  16380. name: "Micro",
  16381. height: math.unit(8.7, "inches")
  16382. },
  16383. {
  16384. name: "Normal",
  16385. height: math.unit(87, "inches"),
  16386. default: true
  16387. },
  16388. {
  16389. name: "Macro",
  16390. height: math.unit(8700.0, "inches")
  16391. },
  16392. {
  16393. name: "Megamacro",
  16394. height: math.unit(435000.0, "inches")
  16395. },
  16396. {
  16397. name: "Gigamacro",
  16398. height: math.unit(870000000.0, "inches")
  16399. }
  16400. ]
  16401. )
  16402. };
  16403. pokemonMakers["Karrablast"] = () => {
  16404. return makeCharacter(
  16405. { name: "Karrablast" },
  16406. {
  16407. "Karrablast": {
  16408. height: math.unit("20", "inches"),
  16409. weight: math.unit("13.0", "lbs"),
  16410. name: "Karrablast",
  16411. image: {
  16412. source: "./media/pokemon/Karrablast.svg"
  16413. },
  16414. rename: true
  16415. }
  16416. },
  16417. [
  16418. {
  16419. name: "Micro",
  16420. height: math.unit(2.0, "inches")
  16421. },
  16422. {
  16423. name: "Normal",
  16424. height: math.unit(20, "inches"),
  16425. default: true
  16426. },
  16427. {
  16428. name: "Macro",
  16429. height: math.unit(2000.0, "inches")
  16430. },
  16431. {
  16432. name: "Megamacro",
  16433. height: math.unit(100000.0, "inches")
  16434. },
  16435. {
  16436. name: "Gigamacro",
  16437. height: math.unit(200000000.0, "inches")
  16438. }
  16439. ]
  16440. )
  16441. };
  16442. pokemonMakers["Kartana"] = () => {
  16443. return makeCharacter(
  16444. { name: "Kartana" },
  16445. {
  16446. "Kartana": {
  16447. height: math.unit("12", "inches"),
  16448. weight: math.unit("0.2", "lbs"),
  16449. name: "Kartana",
  16450. image: {
  16451. source: "./media/pokemon/Kartana.svg"
  16452. },
  16453. rename: true
  16454. }
  16455. },
  16456. [
  16457. {
  16458. name: "Micro",
  16459. height: math.unit(1.2, "inches")
  16460. },
  16461. {
  16462. name: "Normal",
  16463. height: math.unit(12, "inches"),
  16464. default: true
  16465. },
  16466. {
  16467. name: "Macro",
  16468. height: math.unit(1200.0, "inches")
  16469. },
  16470. {
  16471. name: "Megamacro",
  16472. height: math.unit(60000.0, "inches")
  16473. },
  16474. {
  16475. name: "Gigamacro",
  16476. height: math.unit(120000000.0, "inches")
  16477. }
  16478. ]
  16479. )
  16480. };
  16481. pokemonMakers["Kecleon"] = () => {
  16482. return makeCharacter(
  16483. { name: "Kecleon" },
  16484. {
  16485. "Kecleon": {
  16486. height: math.unit("39", "inches"),
  16487. weight: math.unit("48.5", "lbs"),
  16488. name: "Kecleon",
  16489. image: {
  16490. source: "./media/pokemon/Kecleon.svg"
  16491. },
  16492. rename: true
  16493. }
  16494. },
  16495. [
  16496. {
  16497. name: "Micro",
  16498. height: math.unit(3.9, "inches")
  16499. },
  16500. {
  16501. name: "Normal",
  16502. height: math.unit(39, "inches"),
  16503. default: true
  16504. },
  16505. {
  16506. name: "Macro",
  16507. height: math.unit(3900.0, "inches")
  16508. },
  16509. {
  16510. name: "Megamacro",
  16511. height: math.unit(195000.0, "inches")
  16512. },
  16513. {
  16514. name: "Gigamacro",
  16515. height: math.unit(390000000.0, "inches")
  16516. }
  16517. ]
  16518. )
  16519. };
  16520. pokemonMakers["Keldeo"] = () => {
  16521. return makeCharacter(
  16522. { name: "Keldeo" },
  16523. {
  16524. "Ordinary Form": {
  16525. height: math.unit("55", "inches"),
  16526. weight: math.unit("106.9", "lbs"),
  16527. name: "Ordinary Form",
  16528. image: {
  16529. source: "./media/pokemon/Keldeo - Ordinary Form.svg"
  16530. },
  16531. rename: true
  16532. },
  16533. "Resolute Form": {
  16534. height: math.unit("55", "inches"),
  16535. weight: math.unit("106.9", "lbs"),
  16536. name: "Resolute Form",
  16537. image: {
  16538. source: "./media/pokemon/Keldeo - Resolute Form.svg"
  16539. },
  16540. rename: true
  16541. }
  16542. },
  16543. [
  16544. {
  16545. name: "Micro",
  16546. height: math.unit(5.5, "inches")
  16547. },
  16548. {
  16549. name: "Normal",
  16550. height: math.unit(55, "inches"),
  16551. default: true
  16552. },
  16553. {
  16554. name: "Macro",
  16555. height: math.unit(5500.0, "inches")
  16556. },
  16557. {
  16558. name: "Megamacro",
  16559. height: math.unit(275000.0, "inches")
  16560. },
  16561. {
  16562. name: "Gigamacro",
  16563. height: math.unit(550000000.0, "inches")
  16564. }
  16565. ]
  16566. )
  16567. };
  16568. pokemonMakers["Kingdra"] = () => {
  16569. return makeCharacter(
  16570. { name: "Kingdra" },
  16571. {
  16572. "Kingdra": {
  16573. height: math.unit("71", "inches"),
  16574. weight: math.unit("335.1", "lbs"),
  16575. name: "Kingdra",
  16576. image: {
  16577. source: "./media/pokemon/Kingdra.svg"
  16578. },
  16579. rename: true
  16580. }
  16581. },
  16582. [
  16583. {
  16584. name: "Micro",
  16585. height: math.unit(7.1, "inches")
  16586. },
  16587. {
  16588. name: "Normal",
  16589. height: math.unit(71, "inches"),
  16590. default: true
  16591. },
  16592. {
  16593. name: "Macro",
  16594. height: math.unit(7100.0, "inches")
  16595. },
  16596. {
  16597. name: "Megamacro",
  16598. height: math.unit(355000.0, "inches")
  16599. },
  16600. {
  16601. name: "Gigamacro",
  16602. height: math.unit(710000000.0, "inches")
  16603. }
  16604. ]
  16605. )
  16606. };
  16607. pokemonMakers["Kirlia"] = () => {
  16608. return makeCharacter(
  16609. { name: "Kirlia" },
  16610. {
  16611. "Kirlia": {
  16612. height: math.unit("31", "inches"),
  16613. weight: math.unit("44.5", "lbs"),
  16614. name: "Kirlia",
  16615. image: {
  16616. source: "./media/pokemon/Kirlia.svg"
  16617. },
  16618. rename: true
  16619. }
  16620. },
  16621. [
  16622. {
  16623. name: "Micro",
  16624. height: math.unit(3.1, "inches")
  16625. },
  16626. {
  16627. name: "Normal",
  16628. height: math.unit(31, "inches"),
  16629. default: true
  16630. },
  16631. {
  16632. name: "Macro",
  16633. height: math.unit(3100.0, "inches")
  16634. },
  16635. {
  16636. name: "Megamacro",
  16637. height: math.unit(155000.0, "inches")
  16638. },
  16639. {
  16640. name: "Gigamacro",
  16641. height: math.unit(310000000.0, "inches")
  16642. }
  16643. ]
  16644. )
  16645. };
  16646. pokemonMakers["Klang"] = () => {
  16647. return makeCharacter(
  16648. { name: "Klang" },
  16649. {
  16650. "Klang": {
  16651. height: math.unit("24", "inches"),
  16652. weight: math.unit("112.4", "lbs"),
  16653. name: "Klang",
  16654. image: {
  16655. source: "./media/pokemon/Klang.svg"
  16656. },
  16657. rename: true
  16658. }
  16659. },
  16660. [
  16661. {
  16662. name: "Micro",
  16663. height: math.unit(2.4, "inches")
  16664. },
  16665. {
  16666. name: "Normal",
  16667. height: math.unit(24, "inches"),
  16668. default: true
  16669. },
  16670. {
  16671. name: "Macro",
  16672. height: math.unit(2400.0, "inches")
  16673. },
  16674. {
  16675. name: "Megamacro",
  16676. height: math.unit(120000.0, "inches")
  16677. },
  16678. {
  16679. name: "Gigamacro",
  16680. height: math.unit(240000000.0, "inches")
  16681. }
  16682. ]
  16683. )
  16684. };
  16685. pokemonMakers["Klefki"] = () => {
  16686. return makeCharacter(
  16687. { name: "Klefki" },
  16688. {
  16689. "Klefki": {
  16690. height: math.unit("8", "inches"),
  16691. weight: math.unit("6.6", "lbs"),
  16692. name: "Klefki",
  16693. image: {
  16694. source: "./media/pokemon/Klefki.svg"
  16695. },
  16696. rename: true
  16697. }
  16698. },
  16699. [
  16700. {
  16701. name: "Micro",
  16702. height: math.unit(0.8, "inches")
  16703. },
  16704. {
  16705. name: "Normal",
  16706. height: math.unit(8, "inches"),
  16707. default: true
  16708. },
  16709. {
  16710. name: "Macro",
  16711. height: math.unit(800.0, "inches")
  16712. },
  16713. {
  16714. name: "Megamacro",
  16715. height: math.unit(40000.0, "inches")
  16716. },
  16717. {
  16718. name: "Gigamacro",
  16719. height: math.unit(80000000.0, "inches")
  16720. }
  16721. ]
  16722. )
  16723. };
  16724. pokemonMakers["Klink"] = () => {
  16725. return makeCharacter(
  16726. { name: "Klink" },
  16727. {
  16728. "Klink": {
  16729. height: math.unit("12", "inches"),
  16730. weight: math.unit("46.3", "lbs"),
  16731. name: "Klink",
  16732. image: {
  16733. source: "./media/pokemon/Klink.svg"
  16734. },
  16735. rename: true
  16736. }
  16737. },
  16738. [
  16739. {
  16740. name: "Micro",
  16741. height: math.unit(1.2, "inches")
  16742. },
  16743. {
  16744. name: "Normal",
  16745. height: math.unit(12, "inches"),
  16746. default: true
  16747. },
  16748. {
  16749. name: "Macro",
  16750. height: math.unit(1200.0, "inches")
  16751. },
  16752. {
  16753. name: "Megamacro",
  16754. height: math.unit(60000.0, "inches")
  16755. },
  16756. {
  16757. name: "Gigamacro",
  16758. height: math.unit(120000000.0, "inches")
  16759. }
  16760. ]
  16761. )
  16762. };
  16763. pokemonMakers["Klinklang"] = () => {
  16764. return makeCharacter(
  16765. { name: "Klinklang" },
  16766. {
  16767. "Klinklang": {
  16768. height: math.unit("24", "inches"),
  16769. weight: math.unit("178.6", "lbs"),
  16770. name: "Klinklang",
  16771. image: {
  16772. source: "./media/pokemon/Klinklang.svg"
  16773. },
  16774. rename: true
  16775. }
  16776. },
  16777. [
  16778. {
  16779. name: "Micro",
  16780. height: math.unit(2.4, "inches")
  16781. },
  16782. {
  16783. name: "Normal",
  16784. height: math.unit(24, "inches"),
  16785. default: true
  16786. },
  16787. {
  16788. name: "Macro",
  16789. height: math.unit(2400.0, "inches")
  16790. },
  16791. {
  16792. name: "Megamacro",
  16793. height: math.unit(120000.0, "inches")
  16794. },
  16795. {
  16796. name: "Gigamacro",
  16797. height: math.unit(240000000.0, "inches")
  16798. }
  16799. ]
  16800. )
  16801. };
  16802. pokemonMakers["Koffing"] = () => {
  16803. return makeCharacter(
  16804. { name: "Koffing" },
  16805. {
  16806. "Koffing": {
  16807. height: math.unit("24", "inches"),
  16808. weight: math.unit("2.2", "lbs"),
  16809. name: "Koffing",
  16810. image: {
  16811. source: "./media/pokemon/Koffing.svg"
  16812. },
  16813. rename: true
  16814. }
  16815. },
  16816. [
  16817. {
  16818. name: "Micro",
  16819. height: math.unit(2.4, "inches")
  16820. },
  16821. {
  16822. name: "Normal",
  16823. height: math.unit(24, "inches"),
  16824. default: true
  16825. },
  16826. {
  16827. name: "Macro",
  16828. height: math.unit(2400.0, "inches")
  16829. },
  16830. {
  16831. name: "Megamacro",
  16832. height: math.unit(120000.0, "inches")
  16833. },
  16834. {
  16835. name: "Gigamacro",
  16836. height: math.unit(240000000.0, "inches")
  16837. }
  16838. ]
  16839. )
  16840. };
  16841. pokemonMakers["Komala"] = () => {
  16842. return makeCharacter(
  16843. { name: "Komala" },
  16844. {
  16845. "Komala": {
  16846. height: math.unit("16", "inches"),
  16847. weight: math.unit("43.9", "lbs"),
  16848. name: "Komala",
  16849. image: {
  16850. source: "./media/pokemon/Komala.svg"
  16851. },
  16852. rename: true
  16853. }
  16854. },
  16855. [
  16856. {
  16857. name: "Micro",
  16858. height: math.unit(1.6, "inches")
  16859. },
  16860. {
  16861. name: "Normal",
  16862. height: math.unit(16, "inches"),
  16863. default: true
  16864. },
  16865. {
  16866. name: "Macro",
  16867. height: math.unit(1600.0, "inches")
  16868. },
  16869. {
  16870. name: "Megamacro",
  16871. height: math.unit(80000.0, "inches")
  16872. },
  16873. {
  16874. name: "Gigamacro",
  16875. height: math.unit(160000000.0, "inches")
  16876. }
  16877. ]
  16878. )
  16879. };
  16880. pokemonMakers["Kommo-o"] = () => {
  16881. return makeCharacter(
  16882. { name: "Kommo-o" },
  16883. {
  16884. "Kommo-o": {
  16885. height: math.unit("63", "inches"),
  16886. weight: math.unit("172.4", "lbs"),
  16887. name: "Kommo-o",
  16888. image: {
  16889. source: "./media/pokemon/Kommo-o.svg"
  16890. },
  16891. rename: true
  16892. }
  16893. },
  16894. [
  16895. {
  16896. name: "Micro",
  16897. height: math.unit(6.3, "inches")
  16898. },
  16899. {
  16900. name: "Normal",
  16901. height: math.unit(63, "inches"),
  16902. default: true
  16903. },
  16904. {
  16905. name: "Macro",
  16906. height: math.unit(6300.0, "inches")
  16907. },
  16908. {
  16909. name: "Megamacro",
  16910. height: math.unit(315000.0, "inches")
  16911. },
  16912. {
  16913. name: "Gigamacro",
  16914. height: math.unit(630000000.0, "inches")
  16915. }
  16916. ]
  16917. )
  16918. };
  16919. pokemonMakers["Krabby"] = () => {
  16920. return makeCharacter(
  16921. { name: "Krabby" },
  16922. {
  16923. "Krabby": {
  16924. height: math.unit("16", "inches"),
  16925. weight: math.unit("14.3", "lbs"),
  16926. name: "Krabby",
  16927. image: {
  16928. source: "./media/pokemon/Krabby.svg"
  16929. },
  16930. rename: true
  16931. }
  16932. },
  16933. [
  16934. {
  16935. name: "Micro",
  16936. height: math.unit(1.6, "inches")
  16937. },
  16938. {
  16939. name: "Normal",
  16940. height: math.unit(16, "inches"),
  16941. default: true
  16942. },
  16943. {
  16944. name: "Macro",
  16945. height: math.unit(1600.0, "inches")
  16946. },
  16947. {
  16948. name: "Megamacro",
  16949. height: math.unit(80000.0, "inches")
  16950. },
  16951. {
  16952. name: "Gigamacro",
  16953. height: math.unit(160000000.0, "inches")
  16954. }
  16955. ]
  16956. )
  16957. };
  16958. pokemonMakers["Kricketot"] = () => {
  16959. return makeCharacter(
  16960. { name: "Kricketot" },
  16961. {
  16962. "Kricketot": {
  16963. height: math.unit("12", "inches"),
  16964. weight: math.unit("4.9", "lbs"),
  16965. name: "Kricketot",
  16966. image: {
  16967. source: "./media/pokemon/Kricketot.svg"
  16968. },
  16969. rename: true
  16970. }
  16971. },
  16972. [
  16973. {
  16974. name: "Micro",
  16975. height: math.unit(1.2, "inches")
  16976. },
  16977. {
  16978. name: "Normal",
  16979. height: math.unit(12, "inches"),
  16980. default: true
  16981. },
  16982. {
  16983. name: "Macro",
  16984. height: math.unit(1200.0, "inches")
  16985. },
  16986. {
  16987. name: "Megamacro",
  16988. height: math.unit(60000.0, "inches")
  16989. },
  16990. {
  16991. name: "Gigamacro",
  16992. height: math.unit(120000000.0, "inches")
  16993. }
  16994. ]
  16995. )
  16996. };
  16997. pokemonMakers["Kricketune"] = () => {
  16998. return makeCharacter(
  16999. { name: "Kricketune" },
  17000. {
  17001. "Kricketune": {
  17002. height: math.unit("39", "inches"),
  17003. weight: math.unit("56.2", "lbs"),
  17004. name: "Kricketune",
  17005. image: {
  17006. source: "./media/pokemon/Kricketune.svg"
  17007. },
  17008. rename: true
  17009. }
  17010. },
  17011. [
  17012. {
  17013. name: "Micro",
  17014. height: math.unit(3.9, "inches")
  17015. },
  17016. {
  17017. name: "Normal",
  17018. height: math.unit(39, "inches"),
  17019. default: true
  17020. },
  17021. {
  17022. name: "Macro",
  17023. height: math.unit(3900.0, "inches")
  17024. },
  17025. {
  17026. name: "Megamacro",
  17027. height: math.unit(195000.0, "inches")
  17028. },
  17029. {
  17030. name: "Gigamacro",
  17031. height: math.unit(390000000.0, "inches")
  17032. }
  17033. ]
  17034. )
  17035. };
  17036. pokemonMakers["Krokorok"] = () => {
  17037. return makeCharacter(
  17038. { name: "Krokorok" },
  17039. {
  17040. "Krokorok": {
  17041. height: math.unit("39", "inches"),
  17042. weight: math.unit("73.6", "lbs"),
  17043. name: "Krokorok",
  17044. image: {
  17045. source: "./media/pokemon/Krokorok.svg"
  17046. },
  17047. rename: true
  17048. }
  17049. },
  17050. [
  17051. {
  17052. name: "Micro",
  17053. height: math.unit(3.9, "inches")
  17054. },
  17055. {
  17056. name: "Normal",
  17057. height: math.unit(39, "inches"),
  17058. default: true
  17059. },
  17060. {
  17061. name: "Macro",
  17062. height: math.unit(3900.0, "inches")
  17063. },
  17064. {
  17065. name: "Megamacro",
  17066. height: math.unit(195000.0, "inches")
  17067. },
  17068. {
  17069. name: "Gigamacro",
  17070. height: math.unit(390000000.0, "inches")
  17071. }
  17072. ]
  17073. )
  17074. };
  17075. pokemonMakers["Krookodile"] = () => {
  17076. return makeCharacter(
  17077. { name: "Krookodile" },
  17078. {
  17079. "Krookodile": {
  17080. height: math.unit("59", "inches"),
  17081. weight: math.unit("212.3", "lbs"),
  17082. name: "Krookodile",
  17083. image: {
  17084. source: "./media/pokemon/Krookodile.svg"
  17085. },
  17086. rename: true
  17087. }
  17088. },
  17089. [
  17090. {
  17091. name: "Micro",
  17092. height: math.unit(5.9, "inches")
  17093. },
  17094. {
  17095. name: "Normal",
  17096. height: math.unit(59, "inches"),
  17097. default: true
  17098. },
  17099. {
  17100. name: "Macro",
  17101. height: math.unit(5900.0, "inches")
  17102. },
  17103. {
  17104. name: "Megamacro",
  17105. height: math.unit(295000.0, "inches")
  17106. },
  17107. {
  17108. name: "Gigamacro",
  17109. height: math.unit(590000000.0, "inches")
  17110. }
  17111. ]
  17112. )
  17113. };
  17114. pokemonMakers["Kyogre"] = () => {
  17115. return makeCharacter(
  17116. { name: "Kyogre" },
  17117. {
  17118. "Kyogre": {
  17119. height: math.unit("177", "inches"),
  17120. weight: math.unit("776.0", "lbs"),
  17121. name: "Kyogre",
  17122. image: {
  17123. source: "./media/pokemon/Kyogre.svg"
  17124. },
  17125. rename: true
  17126. },
  17127. "Primal Kyogre": {
  17128. height: math.unit("386", "inches"),
  17129. weight: math.unit("948.0", "lbs"),
  17130. name: "Primal Kyogre",
  17131. image: {
  17132. source: "./media/pokemon/Primal Kyogre.svg"
  17133. },
  17134. rename: true
  17135. }
  17136. },
  17137. [
  17138. {
  17139. name: "Micro",
  17140. height: math.unit(17.7, "inches")
  17141. },
  17142. {
  17143. name: "Normal",
  17144. height: math.unit(177, "inches"),
  17145. default: true
  17146. },
  17147. {
  17148. name: "Macro",
  17149. height: math.unit(17700.0, "inches")
  17150. },
  17151. {
  17152. name: "Megamacro",
  17153. height: math.unit(885000.0, "inches")
  17154. },
  17155. {
  17156. name: "Gigamacro",
  17157. height: math.unit(1770000000.0, "inches")
  17158. }
  17159. ]
  17160. )
  17161. };
  17162. pokemonMakers["Lairon"] = () => {
  17163. return makeCharacter(
  17164. { name: "Lairon" },
  17165. {
  17166. "Lairon": {
  17167. height: math.unit("35", "inches"),
  17168. weight: math.unit("264.6", "lbs"),
  17169. name: "Lairon",
  17170. image: {
  17171. source: "./media/pokemon/Lairon.svg"
  17172. },
  17173. rename: true
  17174. }
  17175. },
  17176. [
  17177. {
  17178. name: "Micro",
  17179. height: math.unit(3.5, "inches")
  17180. },
  17181. {
  17182. name: "Normal",
  17183. height: math.unit(35, "inches"),
  17184. default: true
  17185. },
  17186. {
  17187. name: "Macro",
  17188. height: math.unit(3500.0, "inches")
  17189. },
  17190. {
  17191. name: "Megamacro",
  17192. height: math.unit(175000.0, "inches")
  17193. },
  17194. {
  17195. name: "Gigamacro",
  17196. height: math.unit(350000000.0, "inches")
  17197. }
  17198. ]
  17199. )
  17200. };
  17201. pokemonMakers["Lampent"] = () => {
  17202. return makeCharacter(
  17203. { name: "Lampent" },
  17204. {
  17205. "Lampent": {
  17206. height: math.unit("24", "inches"),
  17207. weight: math.unit("28.7", "lbs"),
  17208. name: "Lampent",
  17209. image: {
  17210. source: "./media/pokemon/Lampent.svg"
  17211. },
  17212. rename: true
  17213. }
  17214. },
  17215. [
  17216. {
  17217. name: "Micro",
  17218. height: math.unit(2.4, "inches")
  17219. },
  17220. {
  17221. name: "Normal",
  17222. height: math.unit(24, "inches"),
  17223. default: true
  17224. },
  17225. {
  17226. name: "Macro",
  17227. height: math.unit(2400.0, "inches")
  17228. },
  17229. {
  17230. name: "Megamacro",
  17231. height: math.unit(120000.0, "inches")
  17232. },
  17233. {
  17234. name: "Gigamacro",
  17235. height: math.unit(240000000.0, "inches")
  17236. }
  17237. ]
  17238. )
  17239. };
  17240. pokemonMakers["Landorus"] = () => {
  17241. return makeCharacter(
  17242. { name: "Landorus" },
  17243. {
  17244. "Incarnate Forme": {
  17245. height: math.unit("59", "inches"),
  17246. weight: math.unit("149.9", "lbs"),
  17247. name: "Incarnate Forme",
  17248. image: {
  17249. source: "./media/pokemon/Landorus - Incarnate Forme.svg"
  17250. },
  17251. rename: true
  17252. },
  17253. "Therian Forme": {
  17254. height: math.unit("51", "inches"),
  17255. weight: math.unit("149.9", "lbs"),
  17256. name: "Therian Forme",
  17257. image: {
  17258. source: "./media/pokemon/Landorus - Therian Forme.svg"
  17259. },
  17260. rename: true
  17261. }
  17262. },
  17263. [
  17264. {
  17265. name: "Micro",
  17266. height: math.unit(5.9, "inches")
  17267. },
  17268. {
  17269. name: "Normal",
  17270. height: math.unit(59, "inches"),
  17271. default: true
  17272. },
  17273. {
  17274. name: "Macro",
  17275. height: math.unit(5900.0, "inches")
  17276. },
  17277. {
  17278. name: "Megamacro",
  17279. height: math.unit(295000.0, "inches")
  17280. },
  17281. {
  17282. name: "Gigamacro",
  17283. height: math.unit(590000000.0, "inches")
  17284. }
  17285. ]
  17286. )
  17287. };
  17288. pokemonMakers["Lanturn"] = () => {
  17289. return makeCharacter(
  17290. { name: "Lanturn" },
  17291. {
  17292. "Lanturn": {
  17293. height: math.unit("47", "inches"),
  17294. weight: math.unit("49.6", "lbs"),
  17295. name: "Lanturn",
  17296. image: {
  17297. source: "./media/pokemon/Lanturn.svg"
  17298. },
  17299. rename: true
  17300. }
  17301. },
  17302. [
  17303. {
  17304. name: "Micro",
  17305. height: math.unit(4.7, "inches")
  17306. },
  17307. {
  17308. name: "Normal",
  17309. height: math.unit(47, "inches"),
  17310. default: true
  17311. },
  17312. {
  17313. name: "Macro",
  17314. height: math.unit(4700.0, "inches")
  17315. },
  17316. {
  17317. name: "Megamacro",
  17318. height: math.unit(235000.0, "inches")
  17319. },
  17320. {
  17321. name: "Gigamacro",
  17322. height: math.unit(470000000.0, "inches")
  17323. }
  17324. ]
  17325. )
  17326. };
  17327. pokemonMakers["Larvesta"] = () => {
  17328. return makeCharacter(
  17329. { name: "Larvesta" },
  17330. {
  17331. "Larvesta": {
  17332. height: math.unit("43", "inches"),
  17333. weight: math.unit("63.5", "lbs"),
  17334. name: "Larvesta",
  17335. image: {
  17336. source: "./media/pokemon/Larvesta.svg"
  17337. },
  17338. rename: true
  17339. }
  17340. },
  17341. [
  17342. {
  17343. name: "Micro",
  17344. height: math.unit(4.3, "inches")
  17345. },
  17346. {
  17347. name: "Normal",
  17348. height: math.unit(43, "inches"),
  17349. default: true
  17350. },
  17351. {
  17352. name: "Macro",
  17353. height: math.unit(4300.0, "inches")
  17354. },
  17355. {
  17356. name: "Megamacro",
  17357. height: math.unit(215000.0, "inches")
  17358. },
  17359. {
  17360. name: "Gigamacro",
  17361. height: math.unit(430000000.0, "inches")
  17362. }
  17363. ]
  17364. )
  17365. };
  17366. pokemonMakers["Larvitar"] = () => {
  17367. return makeCharacter(
  17368. { name: "Larvitar" },
  17369. {
  17370. "Larvitar": {
  17371. height: math.unit("24", "inches"),
  17372. weight: math.unit("158.7", "lbs"),
  17373. name: "Larvitar",
  17374. image: {
  17375. source: "./media/pokemon/Larvitar.svg"
  17376. },
  17377. rename: true
  17378. }
  17379. },
  17380. [
  17381. {
  17382. name: "Micro",
  17383. height: math.unit(2.4, "inches")
  17384. },
  17385. {
  17386. name: "Normal",
  17387. height: math.unit(24, "inches"),
  17388. default: true
  17389. },
  17390. {
  17391. name: "Macro",
  17392. height: math.unit(2400.0, "inches")
  17393. },
  17394. {
  17395. name: "Megamacro",
  17396. height: math.unit(120000.0, "inches")
  17397. },
  17398. {
  17399. name: "Gigamacro",
  17400. height: math.unit(240000000.0, "inches")
  17401. }
  17402. ]
  17403. )
  17404. };
  17405. pokemonMakers["Latias"] = () => {
  17406. return makeCharacter(
  17407. { name: "Latias" },
  17408. {
  17409. "Latias": {
  17410. height: math.unit("55", "inches"),
  17411. weight: math.unit("88.2", "lbs"),
  17412. name: "Latias",
  17413. image: {
  17414. source: "./media/pokemon/Latias.svg"
  17415. },
  17416. rename: true
  17417. },
  17418. "Mega Latias": {
  17419. height: math.unit("71", "inches"),
  17420. weight: math.unit("114.6", "lbs"),
  17421. name: "Mega Latias",
  17422. image: {
  17423. source: "./media/pokemon/Mega Latias.svg"
  17424. },
  17425. rename: true
  17426. }
  17427. },
  17428. [
  17429. {
  17430. name: "Micro",
  17431. height: math.unit(5.5, "inches")
  17432. },
  17433. {
  17434. name: "Normal",
  17435. height: math.unit(55, "inches"),
  17436. default: true
  17437. },
  17438. {
  17439. name: "Macro",
  17440. height: math.unit(5500.0, "inches")
  17441. },
  17442. {
  17443. name: "Megamacro",
  17444. height: math.unit(275000.0, "inches")
  17445. },
  17446. {
  17447. name: "Gigamacro",
  17448. height: math.unit(550000000.0, "inches")
  17449. }
  17450. ]
  17451. )
  17452. };
  17453. pokemonMakers["Latios"] = () => {
  17454. return makeCharacter(
  17455. { name: "Latios" },
  17456. {
  17457. "Latios": {
  17458. height: math.unit("79", "inches"),
  17459. weight: math.unit("132.3", "lbs"),
  17460. name: "Latios",
  17461. image: {
  17462. source: "./media/pokemon/Latios.svg"
  17463. },
  17464. rename: true
  17465. },
  17466. "Mega Latios": {
  17467. height: math.unit("91", "inches"),
  17468. weight: math.unit("154.3", "lbs"),
  17469. name: "Mega Latios",
  17470. image: {
  17471. source: "./media/pokemon/Mega Latios.svg"
  17472. },
  17473. rename: true
  17474. }
  17475. },
  17476. [
  17477. {
  17478. name: "Micro",
  17479. height: math.unit(7.9, "inches")
  17480. },
  17481. {
  17482. name: "Normal",
  17483. height: math.unit(79, "inches"),
  17484. default: true
  17485. },
  17486. {
  17487. name: "Macro",
  17488. height: math.unit(7900.0, "inches")
  17489. },
  17490. {
  17491. name: "Megamacro",
  17492. height: math.unit(395000.0, "inches")
  17493. },
  17494. {
  17495. name: "Gigamacro",
  17496. height: math.unit(790000000.0, "inches")
  17497. }
  17498. ]
  17499. )
  17500. };
  17501. pokemonMakers["Leafeon"] = () => {
  17502. return makeCharacter(
  17503. { name: "Leafeon" },
  17504. {
  17505. "Leafeon": {
  17506. height: math.unit("39", "inches"),
  17507. weight: math.unit("56.2", "lbs"),
  17508. name: "Leafeon",
  17509. image: {
  17510. source: "./media/pokemon/Leafeon.svg"
  17511. },
  17512. rename: true
  17513. }
  17514. },
  17515. [
  17516. {
  17517. name: "Micro",
  17518. height: math.unit(3.9, "inches")
  17519. },
  17520. {
  17521. name: "Normal",
  17522. height: math.unit(39, "inches"),
  17523. default: true
  17524. },
  17525. {
  17526. name: "Macro",
  17527. height: math.unit(3900.0, "inches")
  17528. },
  17529. {
  17530. name: "Megamacro",
  17531. height: math.unit(195000.0, "inches")
  17532. },
  17533. {
  17534. name: "Gigamacro",
  17535. height: math.unit(390000000.0, "inches")
  17536. }
  17537. ]
  17538. )
  17539. };
  17540. pokemonMakers["Leavanny"] = () => {
  17541. return makeCharacter(
  17542. { name: "Leavanny" },
  17543. {
  17544. "Leavanny": {
  17545. height: math.unit("47", "inches"),
  17546. weight: math.unit("45.2", "lbs"),
  17547. name: "Leavanny",
  17548. image: {
  17549. source: "./media/pokemon/Leavanny.svg"
  17550. },
  17551. rename: true
  17552. }
  17553. },
  17554. [
  17555. {
  17556. name: "Micro",
  17557. height: math.unit(4.7, "inches")
  17558. },
  17559. {
  17560. name: "Normal",
  17561. height: math.unit(47, "inches"),
  17562. default: true
  17563. },
  17564. {
  17565. name: "Macro",
  17566. height: math.unit(4700.0, "inches")
  17567. },
  17568. {
  17569. name: "Megamacro",
  17570. height: math.unit(235000.0, "inches")
  17571. },
  17572. {
  17573. name: "Gigamacro",
  17574. height: math.unit(470000000.0, "inches")
  17575. }
  17576. ]
  17577. )
  17578. };
  17579. pokemonMakers["Ledian"] = () => {
  17580. return makeCharacter(
  17581. { name: "Ledian" },
  17582. {
  17583. "Ledian": {
  17584. height: math.unit("55", "inches"),
  17585. weight: math.unit("78.5", "lbs"),
  17586. name: "Ledian",
  17587. image: {
  17588. source: "./media/pokemon/Ledian.svg"
  17589. },
  17590. rename: true
  17591. }
  17592. },
  17593. [
  17594. {
  17595. name: "Micro",
  17596. height: math.unit(5.5, "inches")
  17597. },
  17598. {
  17599. name: "Normal",
  17600. height: math.unit(55, "inches"),
  17601. default: true
  17602. },
  17603. {
  17604. name: "Macro",
  17605. height: math.unit(5500.0, "inches")
  17606. },
  17607. {
  17608. name: "Megamacro",
  17609. height: math.unit(275000.0, "inches")
  17610. },
  17611. {
  17612. name: "Gigamacro",
  17613. height: math.unit(550000000.0, "inches")
  17614. }
  17615. ]
  17616. )
  17617. };
  17618. pokemonMakers["Ledyba"] = () => {
  17619. return makeCharacter(
  17620. { name: "Ledyba" },
  17621. {
  17622. "Ledyba": {
  17623. height: math.unit("39", "inches"),
  17624. weight: math.unit("23.8", "lbs"),
  17625. name: "Ledyba",
  17626. image: {
  17627. source: "./media/pokemon/Ledyba.svg"
  17628. },
  17629. rename: true
  17630. }
  17631. },
  17632. [
  17633. {
  17634. name: "Micro",
  17635. height: math.unit(3.9, "inches")
  17636. },
  17637. {
  17638. name: "Normal",
  17639. height: math.unit(39, "inches"),
  17640. default: true
  17641. },
  17642. {
  17643. name: "Macro",
  17644. height: math.unit(3900.0, "inches")
  17645. },
  17646. {
  17647. name: "Megamacro",
  17648. height: math.unit(195000.0, "inches")
  17649. },
  17650. {
  17651. name: "Gigamacro",
  17652. height: math.unit(390000000.0, "inches")
  17653. }
  17654. ]
  17655. )
  17656. };
  17657. pokemonMakers["Lickilicky"] = () => {
  17658. return makeCharacter(
  17659. { name: "Lickilicky" },
  17660. {
  17661. "Lickilicky": {
  17662. height: math.unit("67", "inches"),
  17663. weight: math.unit("308.6", "lbs"),
  17664. name: "Lickilicky",
  17665. image: {
  17666. source: "./media/pokemon/Lickilicky.svg"
  17667. },
  17668. rename: true
  17669. }
  17670. },
  17671. [
  17672. {
  17673. name: "Micro",
  17674. height: math.unit(6.7, "inches")
  17675. },
  17676. {
  17677. name: "Normal",
  17678. height: math.unit(67, "inches"),
  17679. default: true
  17680. },
  17681. {
  17682. name: "Macro",
  17683. height: math.unit(6700.0, "inches")
  17684. },
  17685. {
  17686. name: "Megamacro",
  17687. height: math.unit(335000.0, "inches")
  17688. },
  17689. {
  17690. name: "Gigamacro",
  17691. height: math.unit(670000000.0, "inches")
  17692. }
  17693. ]
  17694. )
  17695. };
  17696. pokemonMakers["Lickitung"] = () => {
  17697. return makeCharacter(
  17698. { name: "Lickitung" },
  17699. {
  17700. "Lickitung": {
  17701. height: math.unit("47", "inches"),
  17702. weight: math.unit("144.4", "lbs"),
  17703. name: "Lickitung",
  17704. image: {
  17705. source: "./media/pokemon/Lickitung.svg"
  17706. },
  17707. rename: true
  17708. }
  17709. },
  17710. [
  17711. {
  17712. name: "Micro",
  17713. height: math.unit(4.7, "inches")
  17714. },
  17715. {
  17716. name: "Normal",
  17717. height: math.unit(47, "inches"),
  17718. default: true
  17719. },
  17720. {
  17721. name: "Macro",
  17722. height: math.unit(4700.0, "inches")
  17723. },
  17724. {
  17725. name: "Megamacro",
  17726. height: math.unit(235000.0, "inches")
  17727. },
  17728. {
  17729. name: "Gigamacro",
  17730. height: math.unit(470000000.0, "inches")
  17731. }
  17732. ]
  17733. )
  17734. };
  17735. pokemonMakers["Liepard"] = () => {
  17736. return makeCharacter(
  17737. { name: "Liepard" },
  17738. {
  17739. "Liepard": {
  17740. height: math.unit("43", "inches"),
  17741. weight: math.unit("82.7", "lbs"),
  17742. name: "Liepard",
  17743. image: {
  17744. source: "./media/pokemon/Liepard.svg"
  17745. },
  17746. rename: true
  17747. }
  17748. },
  17749. [
  17750. {
  17751. name: "Micro",
  17752. height: math.unit(4.3, "inches")
  17753. },
  17754. {
  17755. name: "Normal",
  17756. height: math.unit(43, "inches"),
  17757. default: true
  17758. },
  17759. {
  17760. name: "Macro",
  17761. height: math.unit(4300.0, "inches")
  17762. },
  17763. {
  17764. name: "Megamacro",
  17765. height: math.unit(215000.0, "inches")
  17766. },
  17767. {
  17768. name: "Gigamacro",
  17769. height: math.unit(430000000.0, "inches")
  17770. }
  17771. ]
  17772. )
  17773. };
  17774. pokemonMakers["Lileep"] = () => {
  17775. return makeCharacter(
  17776. { name: "Lileep" },
  17777. {
  17778. "Lileep": {
  17779. height: math.unit("39", "inches"),
  17780. weight: math.unit("52.5", "lbs"),
  17781. name: "Lileep",
  17782. image: {
  17783. source: "./media/pokemon/Lileep.svg"
  17784. },
  17785. rename: true
  17786. }
  17787. },
  17788. [
  17789. {
  17790. name: "Micro",
  17791. height: math.unit(3.9, "inches")
  17792. },
  17793. {
  17794. name: "Normal",
  17795. height: math.unit(39, "inches"),
  17796. default: true
  17797. },
  17798. {
  17799. name: "Macro",
  17800. height: math.unit(3900.0, "inches")
  17801. },
  17802. {
  17803. name: "Megamacro",
  17804. height: math.unit(195000.0, "inches")
  17805. },
  17806. {
  17807. name: "Gigamacro",
  17808. height: math.unit(390000000.0, "inches")
  17809. }
  17810. ]
  17811. )
  17812. };
  17813. pokemonMakers["Lilligant"] = () => {
  17814. return makeCharacter(
  17815. { name: "Lilligant" },
  17816. {
  17817. "Lilligant": {
  17818. height: math.unit("43", "inches"),
  17819. weight: math.unit("35.9", "lbs"),
  17820. name: "Lilligant",
  17821. image: {
  17822. source: "./media/pokemon/Lilligant.svg"
  17823. },
  17824. rename: true
  17825. }
  17826. },
  17827. [
  17828. {
  17829. name: "Micro",
  17830. height: math.unit(4.3, "inches")
  17831. },
  17832. {
  17833. name: "Normal",
  17834. height: math.unit(43, "inches"),
  17835. default: true
  17836. },
  17837. {
  17838. name: "Macro",
  17839. height: math.unit(4300.0, "inches")
  17840. },
  17841. {
  17842. name: "Megamacro",
  17843. height: math.unit(215000.0, "inches")
  17844. },
  17845. {
  17846. name: "Gigamacro",
  17847. height: math.unit(430000000.0, "inches")
  17848. }
  17849. ]
  17850. )
  17851. };
  17852. pokemonMakers["Lillipup"] = () => {
  17853. return makeCharacter(
  17854. { name: "Lillipup" },
  17855. {
  17856. "Lillipup": {
  17857. height: math.unit("16", "inches"),
  17858. weight: math.unit("9.0", "lbs"),
  17859. name: "Lillipup",
  17860. image: {
  17861. source: "./media/pokemon/Lillipup.svg"
  17862. },
  17863. rename: true
  17864. }
  17865. },
  17866. [
  17867. {
  17868. name: "Micro",
  17869. height: math.unit(1.6, "inches")
  17870. },
  17871. {
  17872. name: "Normal",
  17873. height: math.unit(16, "inches"),
  17874. default: true
  17875. },
  17876. {
  17877. name: "Macro",
  17878. height: math.unit(1600.0, "inches")
  17879. },
  17880. {
  17881. name: "Megamacro",
  17882. height: math.unit(80000.0, "inches")
  17883. },
  17884. {
  17885. name: "Gigamacro",
  17886. height: math.unit(160000000.0, "inches")
  17887. }
  17888. ]
  17889. )
  17890. };
  17891. pokemonMakers["Linoone"] = () => {
  17892. return makeCharacter(
  17893. { name: "Linoone" },
  17894. {
  17895. "Galarian Form": {
  17896. height: math.unit("20", "inches"),
  17897. weight: math.unit("71.7", "lbs"),
  17898. name: "Galarian Form",
  17899. image: {
  17900. source: "./media/pokemon/Linoone - Galarian Form.svg"
  17901. },
  17902. rename: true
  17903. },
  17904. "Linoone": {
  17905. height: math.unit("20", "inches"),
  17906. weight: math.unit("71.6", "lbs"),
  17907. name: "Linoone",
  17908. image: {
  17909. source: "./media/pokemon/Linoone.svg"
  17910. },
  17911. rename: true
  17912. }
  17913. },
  17914. [
  17915. {
  17916. name: "Micro",
  17917. height: math.unit(2.0, "inches")
  17918. },
  17919. {
  17920. name: "Normal",
  17921. height: math.unit(20, "inches"),
  17922. default: true
  17923. },
  17924. {
  17925. name: "Macro",
  17926. height: math.unit(2000.0, "inches")
  17927. },
  17928. {
  17929. name: "Megamacro",
  17930. height: math.unit(100000.0, "inches")
  17931. },
  17932. {
  17933. name: "Gigamacro",
  17934. height: math.unit(200000000.0, "inches")
  17935. }
  17936. ]
  17937. )
  17938. };
  17939. pokemonMakers["Litleo"] = () => {
  17940. return makeCharacter(
  17941. { name: "Litleo" },
  17942. {
  17943. "Litleo": {
  17944. height: math.unit("24", "inches"),
  17945. weight: math.unit("29.8", "lbs"),
  17946. name: "Litleo",
  17947. image: {
  17948. source: "./media/pokemon/Litleo.svg"
  17949. },
  17950. rename: true
  17951. }
  17952. },
  17953. [
  17954. {
  17955. name: "Micro",
  17956. height: math.unit(2.4, "inches")
  17957. },
  17958. {
  17959. name: "Normal",
  17960. height: math.unit(24, "inches"),
  17961. default: true
  17962. },
  17963. {
  17964. name: "Macro",
  17965. height: math.unit(2400.0, "inches")
  17966. },
  17967. {
  17968. name: "Megamacro",
  17969. height: math.unit(120000.0, "inches")
  17970. },
  17971. {
  17972. name: "Gigamacro",
  17973. height: math.unit(240000000.0, "inches")
  17974. }
  17975. ]
  17976. )
  17977. };
  17978. pokemonMakers["Litten"] = () => {
  17979. return makeCharacter(
  17980. { name: "Litten" },
  17981. {
  17982. "Litten": {
  17983. height: math.unit("16", "inches"),
  17984. weight: math.unit("9.5", "lbs"),
  17985. name: "Litten",
  17986. image: {
  17987. source: "./media/pokemon/Litten.svg"
  17988. },
  17989. rename: true
  17990. }
  17991. },
  17992. [
  17993. {
  17994. name: "Micro",
  17995. height: math.unit(1.6, "inches")
  17996. },
  17997. {
  17998. name: "Normal",
  17999. height: math.unit(16, "inches"),
  18000. default: true
  18001. },
  18002. {
  18003. name: "Macro",
  18004. height: math.unit(1600.0, "inches")
  18005. },
  18006. {
  18007. name: "Megamacro",
  18008. height: math.unit(80000.0, "inches")
  18009. },
  18010. {
  18011. name: "Gigamacro",
  18012. height: math.unit(160000000.0, "inches")
  18013. }
  18014. ]
  18015. )
  18016. };
  18017. pokemonMakers["Litwick"] = () => {
  18018. return makeCharacter(
  18019. { name: "Litwick" },
  18020. {
  18021. "Litwick": {
  18022. height: math.unit("12", "inches"),
  18023. weight: math.unit("6.8", "lbs"),
  18024. name: "Litwick",
  18025. image: {
  18026. source: "./media/pokemon/Litwick.svg"
  18027. },
  18028. rename: true
  18029. }
  18030. },
  18031. [
  18032. {
  18033. name: "Micro",
  18034. height: math.unit(1.2, "inches")
  18035. },
  18036. {
  18037. name: "Normal",
  18038. height: math.unit(12, "inches"),
  18039. default: true
  18040. },
  18041. {
  18042. name: "Macro",
  18043. height: math.unit(1200.0, "inches")
  18044. },
  18045. {
  18046. name: "Megamacro",
  18047. height: math.unit(60000.0, "inches")
  18048. },
  18049. {
  18050. name: "Gigamacro",
  18051. height: math.unit(120000000.0, "inches")
  18052. }
  18053. ]
  18054. )
  18055. };
  18056. pokemonMakers["Lombre"] = () => {
  18057. return makeCharacter(
  18058. { name: "Lombre" },
  18059. {
  18060. "Lombre": {
  18061. height: math.unit("47", "inches"),
  18062. weight: math.unit("71.6", "lbs"),
  18063. name: "Lombre",
  18064. image: {
  18065. source: "./media/pokemon/Lombre.svg"
  18066. },
  18067. rename: true
  18068. }
  18069. },
  18070. [
  18071. {
  18072. name: "Micro",
  18073. height: math.unit(4.7, "inches")
  18074. },
  18075. {
  18076. name: "Normal",
  18077. height: math.unit(47, "inches"),
  18078. default: true
  18079. },
  18080. {
  18081. name: "Macro",
  18082. height: math.unit(4700.0, "inches")
  18083. },
  18084. {
  18085. name: "Megamacro",
  18086. height: math.unit(235000.0, "inches")
  18087. },
  18088. {
  18089. name: "Gigamacro",
  18090. height: math.unit(470000000.0, "inches")
  18091. }
  18092. ]
  18093. )
  18094. };
  18095. pokemonMakers["Lopunny"] = () => {
  18096. return makeCharacter(
  18097. { name: "Lopunny" },
  18098. {
  18099. "Lopunny": {
  18100. height: math.unit("47", "inches"),
  18101. weight: math.unit("73.4", "lbs"),
  18102. name: "Lopunny",
  18103. image: {
  18104. source: "./media/pokemon/Lopunny.svg"
  18105. },
  18106. rename: true
  18107. },
  18108. "Mega Lopunny": {
  18109. height: math.unit("51", "inches"),
  18110. weight: math.unit("62.4", "lbs"),
  18111. name: "Mega Lopunny",
  18112. image: {
  18113. source: "./media/pokemon/Mega Lopunny.svg"
  18114. },
  18115. rename: true
  18116. }
  18117. },
  18118. [
  18119. {
  18120. name: "Micro",
  18121. height: math.unit(4.7, "inches")
  18122. },
  18123. {
  18124. name: "Normal",
  18125. height: math.unit(47, "inches"),
  18126. default: true
  18127. },
  18128. {
  18129. name: "Macro",
  18130. height: math.unit(4700.0, "inches")
  18131. },
  18132. {
  18133. name: "Megamacro",
  18134. height: math.unit(235000.0, "inches")
  18135. },
  18136. {
  18137. name: "Gigamacro",
  18138. height: math.unit(470000000.0, "inches")
  18139. }
  18140. ]
  18141. )
  18142. };
  18143. pokemonMakers["Lotad"] = () => {
  18144. return makeCharacter(
  18145. { name: "Lotad" },
  18146. {
  18147. "Lotad": {
  18148. height: math.unit("20", "inches"),
  18149. weight: math.unit("5.7", "lbs"),
  18150. name: "Lotad",
  18151. image: {
  18152. source: "./media/pokemon/Lotad.svg"
  18153. },
  18154. rename: true
  18155. }
  18156. },
  18157. [
  18158. {
  18159. name: "Micro",
  18160. height: math.unit(2.0, "inches")
  18161. },
  18162. {
  18163. name: "Normal",
  18164. height: math.unit(20, "inches"),
  18165. default: true
  18166. },
  18167. {
  18168. name: "Macro",
  18169. height: math.unit(2000.0, "inches")
  18170. },
  18171. {
  18172. name: "Megamacro",
  18173. height: math.unit(100000.0, "inches")
  18174. },
  18175. {
  18176. name: "Gigamacro",
  18177. height: math.unit(200000000.0, "inches")
  18178. }
  18179. ]
  18180. )
  18181. };
  18182. pokemonMakers["Loudred"] = () => {
  18183. return makeCharacter(
  18184. { name: "Loudred" },
  18185. {
  18186. "Loudred": {
  18187. height: math.unit("39", "inches"),
  18188. weight: math.unit("89.3", "lbs"),
  18189. name: "Loudred",
  18190. image: {
  18191. source: "./media/pokemon/Loudred.svg"
  18192. },
  18193. rename: true
  18194. }
  18195. },
  18196. [
  18197. {
  18198. name: "Micro",
  18199. height: math.unit(3.9, "inches")
  18200. },
  18201. {
  18202. name: "Normal",
  18203. height: math.unit(39, "inches"),
  18204. default: true
  18205. },
  18206. {
  18207. name: "Macro",
  18208. height: math.unit(3900.0, "inches")
  18209. },
  18210. {
  18211. name: "Megamacro",
  18212. height: math.unit(195000.0, "inches")
  18213. },
  18214. {
  18215. name: "Gigamacro",
  18216. height: math.unit(390000000.0, "inches")
  18217. }
  18218. ]
  18219. )
  18220. };
  18221. pokemonMakers["Lucario"] = () => {
  18222. return makeCharacter(
  18223. { name: "Lucario" },
  18224. {
  18225. "Lucario": {
  18226. height: math.unit("47", "inches"),
  18227. weight: math.unit("119.0", "lbs"),
  18228. name: "Lucario",
  18229. image: {
  18230. source: "./media/pokemon/Lucario.svg"
  18231. },
  18232. rename: true
  18233. },
  18234. "Mega Lucario": {
  18235. height: math.unit("51", "inches"),
  18236. weight: math.unit("126.8", "lbs"),
  18237. name: "Mega Lucario",
  18238. image: {
  18239. source: "./media/pokemon/Mega Lucario.svg"
  18240. },
  18241. rename: true
  18242. }
  18243. },
  18244. [
  18245. {
  18246. name: "Micro",
  18247. height: math.unit(4.7, "inches")
  18248. },
  18249. {
  18250. name: "Normal",
  18251. height: math.unit(47, "inches"),
  18252. default: true
  18253. },
  18254. {
  18255. name: "Macro",
  18256. height: math.unit(4700.0, "inches")
  18257. },
  18258. {
  18259. name: "Megamacro",
  18260. height: math.unit(235000.0, "inches")
  18261. },
  18262. {
  18263. name: "Gigamacro",
  18264. height: math.unit(470000000.0, "inches")
  18265. }
  18266. ]
  18267. )
  18268. };
  18269. pokemonMakers["Ludicolo"] = () => {
  18270. return makeCharacter(
  18271. { name: "Ludicolo" },
  18272. {
  18273. "Ludicolo": {
  18274. height: math.unit("59", "inches"),
  18275. weight: math.unit("121.3", "lbs"),
  18276. name: "Ludicolo",
  18277. image: {
  18278. source: "./media/pokemon/Ludicolo.svg"
  18279. },
  18280. rename: true
  18281. }
  18282. },
  18283. [
  18284. {
  18285. name: "Micro",
  18286. height: math.unit(5.9, "inches")
  18287. },
  18288. {
  18289. name: "Normal",
  18290. height: math.unit(59, "inches"),
  18291. default: true
  18292. },
  18293. {
  18294. name: "Macro",
  18295. height: math.unit(5900.0, "inches")
  18296. },
  18297. {
  18298. name: "Megamacro",
  18299. height: math.unit(295000.0, "inches")
  18300. },
  18301. {
  18302. name: "Gigamacro",
  18303. height: math.unit(590000000.0, "inches")
  18304. }
  18305. ]
  18306. )
  18307. };
  18308. pokemonMakers["Lugia"] = () => {
  18309. return makeCharacter(
  18310. { name: "Lugia" },
  18311. {
  18312. "Lugia": {
  18313. height: math.unit("205", "inches"),
  18314. weight: math.unit("476.2", "lbs"),
  18315. name: "Lugia",
  18316. image: {
  18317. source: "./media/pokemon/Lugia.svg"
  18318. },
  18319. rename: true
  18320. }
  18321. },
  18322. [
  18323. {
  18324. name: "Micro",
  18325. height: math.unit(20.5, "inches")
  18326. },
  18327. {
  18328. name: "Normal",
  18329. height: math.unit(205, "inches"),
  18330. default: true
  18331. },
  18332. {
  18333. name: "Macro",
  18334. height: math.unit(20500.0, "inches")
  18335. },
  18336. {
  18337. name: "Megamacro",
  18338. height: math.unit(1025000.0, "inches")
  18339. },
  18340. {
  18341. name: "Gigamacro",
  18342. height: math.unit(2050000000.0, "inches")
  18343. }
  18344. ]
  18345. )
  18346. };
  18347. pokemonMakers["Lumineon"] = () => {
  18348. return makeCharacter(
  18349. { name: "Lumineon" },
  18350. {
  18351. "Lumineon": {
  18352. height: math.unit("47", "inches"),
  18353. weight: math.unit("52.9", "lbs"),
  18354. name: "Lumineon",
  18355. image: {
  18356. source: "./media/pokemon/Lumineon.svg"
  18357. },
  18358. rename: true
  18359. }
  18360. },
  18361. [
  18362. {
  18363. name: "Micro",
  18364. height: math.unit(4.7, "inches")
  18365. },
  18366. {
  18367. name: "Normal",
  18368. height: math.unit(47, "inches"),
  18369. default: true
  18370. },
  18371. {
  18372. name: "Macro",
  18373. height: math.unit(4700.0, "inches")
  18374. },
  18375. {
  18376. name: "Megamacro",
  18377. height: math.unit(235000.0, "inches")
  18378. },
  18379. {
  18380. name: "Gigamacro",
  18381. height: math.unit(470000000.0, "inches")
  18382. }
  18383. ]
  18384. )
  18385. };
  18386. pokemonMakers["Lunala"] = () => {
  18387. return makeCharacter(
  18388. { name: "Lunala" },
  18389. {
  18390. "Lunala": {
  18391. height: math.unit("157", "inches"),
  18392. weight: math.unit("264.6", "lbs"),
  18393. name: "Lunala",
  18394. image: {
  18395. source: "./media/pokemon/Lunala.svg"
  18396. },
  18397. rename: true
  18398. }
  18399. },
  18400. [
  18401. {
  18402. name: "Micro",
  18403. height: math.unit(15.7, "inches")
  18404. },
  18405. {
  18406. name: "Normal",
  18407. height: math.unit(157, "inches"),
  18408. default: true
  18409. },
  18410. {
  18411. name: "Macro",
  18412. height: math.unit(15700.0, "inches")
  18413. },
  18414. {
  18415. name: "Megamacro",
  18416. height: math.unit(785000.0, "inches")
  18417. },
  18418. {
  18419. name: "Gigamacro",
  18420. height: math.unit(1570000000.0, "inches")
  18421. }
  18422. ]
  18423. )
  18424. };
  18425. pokemonMakers["Lunatone"] = () => {
  18426. return makeCharacter(
  18427. { name: "Lunatone" },
  18428. {
  18429. "Lunatone": {
  18430. height: math.unit("39", "inches"),
  18431. weight: math.unit("370.4", "lbs"),
  18432. name: "Lunatone",
  18433. image: {
  18434. source: "./media/pokemon/Lunatone.svg"
  18435. },
  18436. rename: true
  18437. }
  18438. },
  18439. [
  18440. {
  18441. name: "Micro",
  18442. height: math.unit(3.9, "inches")
  18443. },
  18444. {
  18445. name: "Normal",
  18446. height: math.unit(39, "inches"),
  18447. default: true
  18448. },
  18449. {
  18450. name: "Macro",
  18451. height: math.unit(3900.0, "inches")
  18452. },
  18453. {
  18454. name: "Megamacro",
  18455. height: math.unit(195000.0, "inches")
  18456. },
  18457. {
  18458. name: "Gigamacro",
  18459. height: math.unit(390000000.0, "inches")
  18460. }
  18461. ]
  18462. )
  18463. };
  18464. pokemonMakers["Lurantis"] = () => {
  18465. return makeCharacter(
  18466. { name: "Lurantis" },
  18467. {
  18468. "Lurantis": {
  18469. height: math.unit("35", "inches"),
  18470. weight: math.unit("40.8", "lbs"),
  18471. name: "Lurantis",
  18472. image: {
  18473. source: "./media/pokemon/Lurantis.svg"
  18474. },
  18475. rename: true
  18476. }
  18477. },
  18478. [
  18479. {
  18480. name: "Micro",
  18481. height: math.unit(3.5, "inches")
  18482. },
  18483. {
  18484. name: "Normal",
  18485. height: math.unit(35, "inches"),
  18486. default: true
  18487. },
  18488. {
  18489. name: "Macro",
  18490. height: math.unit(3500.0, "inches")
  18491. },
  18492. {
  18493. name: "Megamacro",
  18494. height: math.unit(175000.0, "inches")
  18495. },
  18496. {
  18497. name: "Gigamacro",
  18498. height: math.unit(350000000.0, "inches")
  18499. }
  18500. ]
  18501. )
  18502. };
  18503. pokemonMakers["Luvdisc"] = () => {
  18504. return makeCharacter(
  18505. { name: "Luvdisc" },
  18506. {
  18507. "Luvdisc": {
  18508. height: math.unit("24", "inches"),
  18509. weight: math.unit("19.2", "lbs"),
  18510. name: "Luvdisc",
  18511. image: {
  18512. source: "./media/pokemon/Luvdisc.svg"
  18513. },
  18514. rename: true
  18515. }
  18516. },
  18517. [
  18518. {
  18519. name: "Micro",
  18520. height: math.unit(2.4, "inches")
  18521. },
  18522. {
  18523. name: "Normal",
  18524. height: math.unit(24, "inches"),
  18525. default: true
  18526. },
  18527. {
  18528. name: "Macro",
  18529. height: math.unit(2400.0, "inches")
  18530. },
  18531. {
  18532. name: "Megamacro",
  18533. height: math.unit(120000.0, "inches")
  18534. },
  18535. {
  18536. name: "Gigamacro",
  18537. height: math.unit(240000000.0, "inches")
  18538. }
  18539. ]
  18540. )
  18541. };
  18542. pokemonMakers["Luxio"] = () => {
  18543. return makeCharacter(
  18544. { name: "Luxio" },
  18545. {
  18546. "Luxio": {
  18547. height: math.unit("35", "inches"),
  18548. weight: math.unit("67.2", "lbs"),
  18549. name: "Luxio",
  18550. image: {
  18551. source: "./media/pokemon/Luxio.svg"
  18552. },
  18553. rename: true
  18554. }
  18555. },
  18556. [
  18557. {
  18558. name: "Micro",
  18559. height: math.unit(3.5, "inches")
  18560. },
  18561. {
  18562. name: "Normal",
  18563. height: math.unit(35, "inches"),
  18564. default: true
  18565. },
  18566. {
  18567. name: "Macro",
  18568. height: math.unit(3500.0, "inches")
  18569. },
  18570. {
  18571. name: "Megamacro",
  18572. height: math.unit(175000.0, "inches")
  18573. },
  18574. {
  18575. name: "Gigamacro",
  18576. height: math.unit(350000000.0, "inches")
  18577. }
  18578. ]
  18579. )
  18580. };
  18581. pokemonMakers["Luxray"] = () => {
  18582. return makeCharacter(
  18583. { name: "Luxray" },
  18584. {
  18585. "Luxray": {
  18586. height: math.unit("55", "inches"),
  18587. weight: math.unit("92.6", "lbs"),
  18588. name: "Luxray",
  18589. image: {
  18590. source: "./media/pokemon/Luxray.svg"
  18591. },
  18592. rename: true
  18593. }
  18594. },
  18595. [
  18596. {
  18597. name: "Micro",
  18598. height: math.unit(5.5, "inches")
  18599. },
  18600. {
  18601. name: "Normal",
  18602. height: math.unit(55, "inches"),
  18603. default: true
  18604. },
  18605. {
  18606. name: "Macro",
  18607. height: math.unit(5500.0, "inches")
  18608. },
  18609. {
  18610. name: "Megamacro",
  18611. height: math.unit(275000.0, "inches")
  18612. },
  18613. {
  18614. name: "Gigamacro",
  18615. height: math.unit(550000000.0, "inches")
  18616. }
  18617. ]
  18618. )
  18619. };
  18620. pokemonMakers["Lycanroc"] = () => {
  18621. return makeCharacter(
  18622. { name: "Lycanroc" },
  18623. {
  18624. "Midday Form": {
  18625. height: math.unit("31", "inches"),
  18626. weight: math.unit("55.1", "lbs"),
  18627. name: "Midday Form",
  18628. image: {
  18629. source: "./media/pokemon/Lycanroc - Midday Form.svg"
  18630. },
  18631. rename: true
  18632. },
  18633. "Midnight Form": {
  18634. height: math.unit("43", "inches"),
  18635. weight: math.unit("55.1", "lbs"),
  18636. name: "Midnight Form",
  18637. image: {
  18638. source: "./media/pokemon/Lycanroc - Midnight Form.svg"
  18639. },
  18640. rename: true
  18641. }
  18642. },
  18643. [
  18644. {
  18645. name: "Micro",
  18646. height: math.unit(3.1, "inches")
  18647. },
  18648. {
  18649. name: "Normal",
  18650. height: math.unit(31, "inches"),
  18651. default: true
  18652. },
  18653. {
  18654. name: "Macro",
  18655. height: math.unit(3100.0, "inches")
  18656. },
  18657. {
  18658. name: "Megamacro",
  18659. height: math.unit(155000.0, "inches")
  18660. },
  18661. {
  18662. name: "Gigamacro",
  18663. height: math.unit(310000000.0, "inches")
  18664. }
  18665. ]
  18666. )
  18667. };
  18668. pokemonMakers["Machoke"] = () => {
  18669. return makeCharacter(
  18670. { name: "Machoke" },
  18671. {
  18672. "Machoke": {
  18673. height: math.unit("59", "inches"),
  18674. weight: math.unit("155.4", "lbs"),
  18675. name: "Machoke",
  18676. image: {
  18677. source: "./media/pokemon/Machoke.svg"
  18678. },
  18679. rename: true
  18680. }
  18681. },
  18682. [
  18683. {
  18684. name: "Micro",
  18685. height: math.unit(5.9, "inches")
  18686. },
  18687. {
  18688. name: "Normal",
  18689. height: math.unit(59, "inches"),
  18690. default: true
  18691. },
  18692. {
  18693. name: "Macro",
  18694. height: math.unit(5900.0, "inches")
  18695. },
  18696. {
  18697. name: "Megamacro",
  18698. height: math.unit(295000.0, "inches")
  18699. },
  18700. {
  18701. name: "Gigamacro",
  18702. height: math.unit(590000000.0, "inches")
  18703. }
  18704. ]
  18705. )
  18706. };
  18707. pokemonMakers["Machop"] = () => {
  18708. return makeCharacter(
  18709. { name: "Machop" },
  18710. {
  18711. "Machop": {
  18712. height: math.unit("31", "inches"),
  18713. weight: math.unit("43.0", "lbs"),
  18714. name: "Machop",
  18715. image: {
  18716. source: "./media/pokemon/Machop.svg"
  18717. },
  18718. rename: true
  18719. }
  18720. },
  18721. [
  18722. {
  18723. name: "Micro",
  18724. height: math.unit(3.1, "inches")
  18725. },
  18726. {
  18727. name: "Normal",
  18728. height: math.unit(31, "inches"),
  18729. default: true
  18730. },
  18731. {
  18732. name: "Macro",
  18733. height: math.unit(3100.0, "inches")
  18734. },
  18735. {
  18736. name: "Megamacro",
  18737. height: math.unit(155000.0, "inches")
  18738. },
  18739. {
  18740. name: "Gigamacro",
  18741. height: math.unit(310000000.0, "inches")
  18742. }
  18743. ]
  18744. )
  18745. };
  18746. pokemonMakers["Magby"] = () => {
  18747. return makeCharacter(
  18748. { name: "Magby" },
  18749. {
  18750. "Magby": {
  18751. height: math.unit("28", "inches"),
  18752. weight: math.unit("47.2", "lbs"),
  18753. name: "Magby",
  18754. image: {
  18755. source: "./media/pokemon/Magby.svg"
  18756. },
  18757. rename: true
  18758. }
  18759. },
  18760. [
  18761. {
  18762. name: "Micro",
  18763. height: math.unit(2.8, "inches")
  18764. },
  18765. {
  18766. name: "Normal",
  18767. height: math.unit(28, "inches"),
  18768. default: true
  18769. },
  18770. {
  18771. name: "Macro",
  18772. height: math.unit(2800.0, "inches")
  18773. },
  18774. {
  18775. name: "Megamacro",
  18776. height: math.unit(140000.0, "inches")
  18777. },
  18778. {
  18779. name: "Gigamacro",
  18780. height: math.unit(280000000.0, "inches")
  18781. }
  18782. ]
  18783. )
  18784. };
  18785. pokemonMakers["Magcargo"] = () => {
  18786. return makeCharacter(
  18787. { name: "Magcargo" },
  18788. {
  18789. "Magcargo": {
  18790. height: math.unit("31", "inches"),
  18791. weight: math.unit("121.3", "lbs"),
  18792. name: "Magcargo",
  18793. image: {
  18794. source: "./media/pokemon/Magcargo.svg"
  18795. },
  18796. rename: true
  18797. }
  18798. },
  18799. [
  18800. {
  18801. name: "Micro",
  18802. height: math.unit(3.1, "inches")
  18803. },
  18804. {
  18805. name: "Normal",
  18806. height: math.unit(31, "inches"),
  18807. default: true
  18808. },
  18809. {
  18810. name: "Macro",
  18811. height: math.unit(3100.0, "inches")
  18812. },
  18813. {
  18814. name: "Megamacro",
  18815. height: math.unit(155000.0, "inches")
  18816. },
  18817. {
  18818. name: "Gigamacro",
  18819. height: math.unit(310000000.0, "inches")
  18820. }
  18821. ]
  18822. )
  18823. };
  18824. pokemonMakers["Magearna"] = () => {
  18825. return makeCharacter(
  18826. { name: "Magearna" },
  18827. {
  18828. "Magearna": {
  18829. height: math.unit("39", "inches"),
  18830. weight: math.unit("177.5", "lbs"),
  18831. name: "Magearna",
  18832. image: {
  18833. source: "./media/pokemon/Magearna.svg"
  18834. },
  18835. rename: true
  18836. }
  18837. },
  18838. [
  18839. {
  18840. name: "Micro",
  18841. height: math.unit(3.9, "inches")
  18842. },
  18843. {
  18844. name: "Normal",
  18845. height: math.unit(39, "inches"),
  18846. default: true
  18847. },
  18848. {
  18849. name: "Macro",
  18850. height: math.unit(3900.0, "inches")
  18851. },
  18852. {
  18853. name: "Megamacro",
  18854. height: math.unit(195000.0, "inches")
  18855. },
  18856. {
  18857. name: "Gigamacro",
  18858. height: math.unit(390000000.0, "inches")
  18859. }
  18860. ]
  18861. )
  18862. };
  18863. pokemonMakers["Magikarp"] = () => {
  18864. return makeCharacter(
  18865. { name: "Magikarp" },
  18866. {
  18867. "Magikarp": {
  18868. height: math.unit("35", "inches"),
  18869. weight: math.unit("22.0", "lbs"),
  18870. name: "Magikarp",
  18871. image: {
  18872. source: "./media/pokemon/Magikarp.svg"
  18873. },
  18874. rename: true
  18875. }
  18876. },
  18877. [
  18878. {
  18879. name: "Micro",
  18880. height: math.unit(3.5, "inches")
  18881. },
  18882. {
  18883. name: "Normal",
  18884. height: math.unit(35, "inches"),
  18885. default: true
  18886. },
  18887. {
  18888. name: "Macro",
  18889. height: math.unit(3500.0, "inches")
  18890. },
  18891. {
  18892. name: "Megamacro",
  18893. height: math.unit(175000.0, "inches")
  18894. },
  18895. {
  18896. name: "Gigamacro",
  18897. height: math.unit(350000000.0, "inches")
  18898. }
  18899. ]
  18900. )
  18901. };
  18902. pokemonMakers["Magmar"] = () => {
  18903. return makeCharacter(
  18904. { name: "Magmar" },
  18905. {
  18906. "Magmar": {
  18907. height: math.unit("51", "inches"),
  18908. weight: math.unit("98.1", "lbs"),
  18909. name: "Magmar",
  18910. image: {
  18911. source: "./media/pokemon/Magmar.svg"
  18912. },
  18913. rename: true
  18914. }
  18915. },
  18916. [
  18917. {
  18918. name: "Micro",
  18919. height: math.unit(5.1, "inches")
  18920. },
  18921. {
  18922. name: "Normal",
  18923. height: math.unit(51, "inches"),
  18924. default: true
  18925. },
  18926. {
  18927. name: "Macro",
  18928. height: math.unit(5100.0, "inches")
  18929. },
  18930. {
  18931. name: "Megamacro",
  18932. height: math.unit(255000.0, "inches")
  18933. },
  18934. {
  18935. name: "Gigamacro",
  18936. height: math.unit(510000000.0, "inches")
  18937. }
  18938. ]
  18939. )
  18940. };
  18941. pokemonMakers["Magmortar"] = () => {
  18942. return makeCharacter(
  18943. { name: "Magmortar" },
  18944. {
  18945. "Magmortar": {
  18946. height: math.unit("63", "inches"),
  18947. weight: math.unit("149.9", "lbs"),
  18948. name: "Magmortar",
  18949. image: {
  18950. source: "./media/pokemon/Magmortar.svg"
  18951. },
  18952. rename: true
  18953. }
  18954. },
  18955. [
  18956. {
  18957. name: "Micro",
  18958. height: math.unit(6.3, "inches")
  18959. },
  18960. {
  18961. name: "Normal",
  18962. height: math.unit(63, "inches"),
  18963. default: true
  18964. },
  18965. {
  18966. name: "Macro",
  18967. height: math.unit(6300.0, "inches")
  18968. },
  18969. {
  18970. name: "Megamacro",
  18971. height: math.unit(315000.0, "inches")
  18972. },
  18973. {
  18974. name: "Gigamacro",
  18975. height: math.unit(630000000.0, "inches")
  18976. }
  18977. ]
  18978. )
  18979. };
  18980. pokemonMakers["Magnemite"] = () => {
  18981. return makeCharacter(
  18982. { name: "Magnemite" },
  18983. {
  18984. "Magnemite": {
  18985. height: math.unit("12", "inches"),
  18986. weight: math.unit("13.2", "lbs"),
  18987. name: "Magnemite",
  18988. image: {
  18989. source: "./media/pokemon/Magnemite.svg"
  18990. },
  18991. rename: true
  18992. }
  18993. },
  18994. [
  18995. {
  18996. name: "Micro",
  18997. height: math.unit(1.2, "inches")
  18998. },
  18999. {
  19000. name: "Normal",
  19001. height: math.unit(12, "inches"),
  19002. default: true
  19003. },
  19004. {
  19005. name: "Macro",
  19006. height: math.unit(1200.0, "inches")
  19007. },
  19008. {
  19009. name: "Megamacro",
  19010. height: math.unit(60000.0, "inches")
  19011. },
  19012. {
  19013. name: "Gigamacro",
  19014. height: math.unit(120000000.0, "inches")
  19015. }
  19016. ]
  19017. )
  19018. };
  19019. pokemonMakers["Magneton"] = () => {
  19020. return makeCharacter(
  19021. { name: "Magneton" },
  19022. {
  19023. "Magneton": {
  19024. height: math.unit("39", "inches"),
  19025. weight: math.unit("132.3", "lbs"),
  19026. name: "Magneton",
  19027. image: {
  19028. source: "./media/pokemon/Magneton.svg"
  19029. },
  19030. rename: true
  19031. }
  19032. },
  19033. [
  19034. {
  19035. name: "Micro",
  19036. height: math.unit(3.9, "inches")
  19037. },
  19038. {
  19039. name: "Normal",
  19040. height: math.unit(39, "inches"),
  19041. default: true
  19042. },
  19043. {
  19044. name: "Macro",
  19045. height: math.unit(3900.0, "inches")
  19046. },
  19047. {
  19048. name: "Megamacro",
  19049. height: math.unit(195000.0, "inches")
  19050. },
  19051. {
  19052. name: "Gigamacro",
  19053. height: math.unit(390000000.0, "inches")
  19054. }
  19055. ]
  19056. )
  19057. };
  19058. pokemonMakers["Magnezone"] = () => {
  19059. return makeCharacter(
  19060. { name: "Magnezone" },
  19061. {
  19062. "Magnezone": {
  19063. height: math.unit("47", "inches"),
  19064. weight: math.unit("396.8", "lbs"),
  19065. name: "Magnezone",
  19066. image: {
  19067. source: "./media/pokemon/Magnezone.svg"
  19068. },
  19069. rename: true
  19070. }
  19071. },
  19072. [
  19073. {
  19074. name: "Micro",
  19075. height: math.unit(4.7, "inches")
  19076. },
  19077. {
  19078. name: "Normal",
  19079. height: math.unit(47, "inches"),
  19080. default: true
  19081. },
  19082. {
  19083. name: "Macro",
  19084. height: math.unit(4700.0, "inches")
  19085. },
  19086. {
  19087. name: "Megamacro",
  19088. height: math.unit(235000.0, "inches")
  19089. },
  19090. {
  19091. name: "Gigamacro",
  19092. height: math.unit(470000000.0, "inches")
  19093. }
  19094. ]
  19095. )
  19096. };
  19097. pokemonMakers["Makuhita"] = () => {
  19098. return makeCharacter(
  19099. { name: "Makuhita" },
  19100. {
  19101. "Makuhita": {
  19102. height: math.unit("39", "inches"),
  19103. weight: math.unit("190.5", "lbs"),
  19104. name: "Makuhita",
  19105. image: {
  19106. source: "./media/pokemon/Makuhita.svg"
  19107. },
  19108. rename: true
  19109. }
  19110. },
  19111. [
  19112. {
  19113. name: "Micro",
  19114. height: math.unit(3.9, "inches")
  19115. },
  19116. {
  19117. name: "Normal",
  19118. height: math.unit(39, "inches"),
  19119. default: true
  19120. },
  19121. {
  19122. name: "Macro",
  19123. height: math.unit(3900.0, "inches")
  19124. },
  19125. {
  19126. name: "Megamacro",
  19127. height: math.unit(195000.0, "inches")
  19128. },
  19129. {
  19130. name: "Gigamacro",
  19131. height: math.unit(390000000.0, "inches")
  19132. }
  19133. ]
  19134. )
  19135. };
  19136. pokemonMakers["Malamar"] = () => {
  19137. return makeCharacter(
  19138. { name: "Malamar" },
  19139. {
  19140. "Malamar": {
  19141. height: math.unit("59", "inches"),
  19142. weight: math.unit("103.6", "lbs"),
  19143. name: "Malamar",
  19144. image: {
  19145. source: "./media/pokemon/Malamar.svg"
  19146. },
  19147. rename: true
  19148. }
  19149. },
  19150. [
  19151. {
  19152. name: "Micro",
  19153. height: math.unit(5.9, "inches")
  19154. },
  19155. {
  19156. name: "Normal",
  19157. height: math.unit(59, "inches"),
  19158. default: true
  19159. },
  19160. {
  19161. name: "Macro",
  19162. height: math.unit(5900.0, "inches")
  19163. },
  19164. {
  19165. name: "Megamacro",
  19166. height: math.unit(295000.0, "inches")
  19167. },
  19168. {
  19169. name: "Gigamacro",
  19170. height: math.unit(590000000.0, "inches")
  19171. }
  19172. ]
  19173. )
  19174. };
  19175. pokemonMakers["Mamoswine"] = () => {
  19176. return makeCharacter(
  19177. { name: "Mamoswine" },
  19178. {
  19179. "Mamoswine": {
  19180. height: math.unit("98", "inches"),
  19181. weight: math.unit("641.5", "lbs"),
  19182. name: "Mamoswine",
  19183. image: {
  19184. source: "./media/pokemon/Mamoswine.svg"
  19185. },
  19186. rename: true
  19187. }
  19188. },
  19189. [
  19190. {
  19191. name: "Micro",
  19192. height: math.unit(9.8, "inches")
  19193. },
  19194. {
  19195. name: "Normal",
  19196. height: math.unit(98, "inches"),
  19197. default: true
  19198. },
  19199. {
  19200. name: "Macro",
  19201. height: math.unit(9800.0, "inches")
  19202. },
  19203. {
  19204. name: "Megamacro",
  19205. height: math.unit(490000.0, "inches")
  19206. },
  19207. {
  19208. name: "Gigamacro",
  19209. height: math.unit(980000000.0, "inches")
  19210. }
  19211. ]
  19212. )
  19213. };
  19214. pokemonMakers["Manaphy"] = () => {
  19215. return makeCharacter(
  19216. { name: "Manaphy" },
  19217. {
  19218. "Manaphy": {
  19219. height: math.unit("12", "inches"),
  19220. weight: math.unit("3.1", "lbs"),
  19221. name: "Manaphy",
  19222. image: {
  19223. source: "./media/pokemon/Manaphy.svg"
  19224. },
  19225. rename: true
  19226. }
  19227. },
  19228. [
  19229. {
  19230. name: "Micro",
  19231. height: math.unit(1.2, "inches")
  19232. },
  19233. {
  19234. name: "Normal",
  19235. height: math.unit(12, "inches"),
  19236. default: true
  19237. },
  19238. {
  19239. name: "Macro",
  19240. height: math.unit(1200.0, "inches")
  19241. },
  19242. {
  19243. name: "Megamacro",
  19244. height: math.unit(60000.0, "inches")
  19245. },
  19246. {
  19247. name: "Gigamacro",
  19248. height: math.unit(120000000.0, "inches")
  19249. }
  19250. ]
  19251. )
  19252. };
  19253. pokemonMakers["Mandibuzz"] = () => {
  19254. return makeCharacter(
  19255. { name: "Mandibuzz" },
  19256. {
  19257. "Mandibuzz": {
  19258. height: math.unit("47", "inches"),
  19259. weight: math.unit("87.1", "lbs"),
  19260. name: "Mandibuzz",
  19261. image: {
  19262. source: "./media/pokemon/Mandibuzz.svg"
  19263. },
  19264. rename: true
  19265. }
  19266. },
  19267. [
  19268. {
  19269. name: "Micro",
  19270. height: math.unit(4.7, "inches")
  19271. },
  19272. {
  19273. name: "Normal",
  19274. height: math.unit(47, "inches"),
  19275. default: true
  19276. },
  19277. {
  19278. name: "Macro",
  19279. height: math.unit(4700.0, "inches")
  19280. },
  19281. {
  19282. name: "Megamacro",
  19283. height: math.unit(235000.0, "inches")
  19284. },
  19285. {
  19286. name: "Gigamacro",
  19287. height: math.unit(470000000.0, "inches")
  19288. }
  19289. ]
  19290. )
  19291. };
  19292. pokemonMakers["Manectric"] = () => {
  19293. return makeCharacter(
  19294. { name: "Manectric" },
  19295. {
  19296. "Manectric": {
  19297. height: math.unit("59", "inches"),
  19298. weight: math.unit("88.6", "lbs"),
  19299. name: "Manectric",
  19300. image: {
  19301. source: "./media/pokemon/Manectric.svg"
  19302. },
  19303. rename: true
  19304. },
  19305. "Mega Manectric": {
  19306. height: math.unit("71", "inches"),
  19307. weight: math.unit("97.0", "lbs"),
  19308. name: "Mega Manectric",
  19309. image: {
  19310. source: "./media/pokemon/Mega Manectric.svg"
  19311. },
  19312. rename: true
  19313. }
  19314. },
  19315. [
  19316. {
  19317. name: "Micro",
  19318. height: math.unit(5.9, "inches")
  19319. },
  19320. {
  19321. name: "Normal",
  19322. height: math.unit(59, "inches"),
  19323. default: true
  19324. },
  19325. {
  19326. name: "Macro",
  19327. height: math.unit(5900.0, "inches")
  19328. },
  19329. {
  19330. name: "Megamacro",
  19331. height: math.unit(295000.0, "inches")
  19332. },
  19333. {
  19334. name: "Gigamacro",
  19335. height: math.unit(590000000.0, "inches")
  19336. }
  19337. ]
  19338. )
  19339. };
  19340. pokemonMakers["Mankey"] = () => {
  19341. return makeCharacter(
  19342. { name: "Mankey" },
  19343. {
  19344. "Mankey": {
  19345. height: math.unit("20", "inches"),
  19346. weight: math.unit("61.7", "lbs"),
  19347. name: "Mankey",
  19348. image: {
  19349. source: "./media/pokemon/Mankey.svg"
  19350. },
  19351. rename: true
  19352. }
  19353. },
  19354. [
  19355. {
  19356. name: "Micro",
  19357. height: math.unit(2.0, "inches")
  19358. },
  19359. {
  19360. name: "Normal",
  19361. height: math.unit(20, "inches"),
  19362. default: true
  19363. },
  19364. {
  19365. name: "Macro",
  19366. height: math.unit(2000.0, "inches")
  19367. },
  19368. {
  19369. name: "Megamacro",
  19370. height: math.unit(100000.0, "inches")
  19371. },
  19372. {
  19373. name: "Gigamacro",
  19374. height: math.unit(200000000.0, "inches")
  19375. }
  19376. ]
  19377. )
  19378. };
  19379. pokemonMakers["Mantine"] = () => {
  19380. return makeCharacter(
  19381. { name: "Mantine" },
  19382. {
  19383. "Mantine": {
  19384. height: math.unit("83", "inches"),
  19385. weight: math.unit("485.0", "lbs"),
  19386. name: "Mantine",
  19387. image: {
  19388. source: "./media/pokemon/Mantine.svg"
  19389. },
  19390. rename: true
  19391. }
  19392. },
  19393. [
  19394. {
  19395. name: "Micro",
  19396. height: math.unit(8.3, "inches")
  19397. },
  19398. {
  19399. name: "Normal",
  19400. height: math.unit(83, "inches"),
  19401. default: true
  19402. },
  19403. {
  19404. name: "Macro",
  19405. height: math.unit(8300.0, "inches")
  19406. },
  19407. {
  19408. name: "Megamacro",
  19409. height: math.unit(415000.0, "inches")
  19410. },
  19411. {
  19412. name: "Gigamacro",
  19413. height: math.unit(830000000.0, "inches")
  19414. }
  19415. ]
  19416. )
  19417. };
  19418. pokemonMakers["Mantyke"] = () => {
  19419. return makeCharacter(
  19420. { name: "Mantyke" },
  19421. {
  19422. "Mantyke": {
  19423. height: math.unit("39", "inches"),
  19424. weight: math.unit("143.3", "lbs"),
  19425. name: "Mantyke",
  19426. image: {
  19427. source: "./media/pokemon/Mantyke.svg"
  19428. },
  19429. rename: true
  19430. }
  19431. },
  19432. [
  19433. {
  19434. name: "Micro",
  19435. height: math.unit(3.9, "inches")
  19436. },
  19437. {
  19438. name: "Normal",
  19439. height: math.unit(39, "inches"),
  19440. default: true
  19441. },
  19442. {
  19443. name: "Macro",
  19444. height: math.unit(3900.0, "inches")
  19445. },
  19446. {
  19447. name: "Megamacro",
  19448. height: math.unit(195000.0, "inches")
  19449. },
  19450. {
  19451. name: "Gigamacro",
  19452. height: math.unit(390000000.0, "inches")
  19453. }
  19454. ]
  19455. )
  19456. };
  19457. pokemonMakers["Maractus"] = () => {
  19458. return makeCharacter(
  19459. { name: "Maractus" },
  19460. {
  19461. "Maractus": {
  19462. height: math.unit("39", "inches"),
  19463. weight: math.unit("61.7", "lbs"),
  19464. name: "Maractus",
  19465. image: {
  19466. source: "./media/pokemon/Maractus.svg"
  19467. },
  19468. rename: true
  19469. }
  19470. },
  19471. [
  19472. {
  19473. name: "Micro",
  19474. height: math.unit(3.9, "inches")
  19475. },
  19476. {
  19477. name: "Normal",
  19478. height: math.unit(39, "inches"),
  19479. default: true
  19480. },
  19481. {
  19482. name: "Macro",
  19483. height: math.unit(3900.0, "inches")
  19484. },
  19485. {
  19486. name: "Megamacro",
  19487. height: math.unit(195000.0, "inches")
  19488. },
  19489. {
  19490. name: "Gigamacro",
  19491. height: math.unit(390000000.0, "inches")
  19492. }
  19493. ]
  19494. )
  19495. };
  19496. pokemonMakers["Mareanie"] = () => {
  19497. return makeCharacter(
  19498. { name: "Mareanie" },
  19499. {
  19500. "Mareanie": {
  19501. height: math.unit("16", "inches"),
  19502. weight: math.unit("17.6", "lbs"),
  19503. name: "Mareanie",
  19504. image: {
  19505. source: "./media/pokemon/Mareanie.svg"
  19506. },
  19507. rename: true
  19508. }
  19509. },
  19510. [
  19511. {
  19512. name: "Micro",
  19513. height: math.unit(1.6, "inches")
  19514. },
  19515. {
  19516. name: "Normal",
  19517. height: math.unit(16, "inches"),
  19518. default: true
  19519. },
  19520. {
  19521. name: "Macro",
  19522. height: math.unit(1600.0, "inches")
  19523. },
  19524. {
  19525. name: "Megamacro",
  19526. height: math.unit(80000.0, "inches")
  19527. },
  19528. {
  19529. name: "Gigamacro",
  19530. height: math.unit(160000000.0, "inches")
  19531. }
  19532. ]
  19533. )
  19534. };
  19535. pokemonMakers["Mareep"] = () => {
  19536. return makeCharacter(
  19537. { name: "Mareep" },
  19538. {
  19539. "Mareep": {
  19540. height: math.unit("24", "inches"),
  19541. weight: math.unit("17.2", "lbs"),
  19542. name: "Mareep",
  19543. image: {
  19544. source: "./media/pokemon/Mareep.svg"
  19545. },
  19546. rename: true
  19547. }
  19548. },
  19549. [
  19550. {
  19551. name: "Micro",
  19552. height: math.unit(2.4, "inches")
  19553. },
  19554. {
  19555. name: "Normal",
  19556. height: math.unit(24, "inches"),
  19557. default: true
  19558. },
  19559. {
  19560. name: "Macro",
  19561. height: math.unit(2400.0, "inches")
  19562. },
  19563. {
  19564. name: "Megamacro",
  19565. height: math.unit(120000.0, "inches")
  19566. },
  19567. {
  19568. name: "Gigamacro",
  19569. height: math.unit(240000000.0, "inches")
  19570. }
  19571. ]
  19572. )
  19573. };
  19574. pokemonMakers["Marill"] = () => {
  19575. return makeCharacter(
  19576. { name: "Marill" },
  19577. {
  19578. "Marill": {
  19579. height: math.unit("16", "inches"),
  19580. weight: math.unit("18.7", "lbs"),
  19581. name: "Marill",
  19582. image: {
  19583. source: "./media/pokemon/Marill.svg"
  19584. },
  19585. rename: true
  19586. }
  19587. },
  19588. [
  19589. {
  19590. name: "Micro",
  19591. height: math.unit(1.6, "inches")
  19592. },
  19593. {
  19594. name: "Normal",
  19595. height: math.unit(16, "inches"),
  19596. default: true
  19597. },
  19598. {
  19599. name: "Macro",
  19600. height: math.unit(1600.0, "inches")
  19601. },
  19602. {
  19603. name: "Megamacro",
  19604. height: math.unit(80000.0, "inches")
  19605. },
  19606. {
  19607. name: "Gigamacro",
  19608. height: math.unit(160000000.0, "inches")
  19609. }
  19610. ]
  19611. )
  19612. };
  19613. pokemonMakers["Marowak"] = () => {
  19614. return makeCharacter(
  19615. { name: "Marowak" },
  19616. {
  19617. "Alola Form": {
  19618. height: math.unit("39", "inches"),
  19619. weight: math.unit("75.0", "lbs"),
  19620. name: "Alola Form",
  19621. image: {
  19622. source: "./media/pokemon/Marowak - Alola Form.svg"
  19623. },
  19624. rename: true
  19625. },
  19626. "Marowak": {
  19627. height: math.unit("39", "inches"),
  19628. weight: math.unit("99.2", "lbs"),
  19629. name: "Marowak",
  19630. image: {
  19631. source: "./media/pokemon/Marowak.svg"
  19632. },
  19633. rename: true
  19634. }
  19635. },
  19636. [
  19637. {
  19638. name: "Micro",
  19639. height: math.unit(3.9, "inches")
  19640. },
  19641. {
  19642. name: "Normal",
  19643. height: math.unit(39, "inches"),
  19644. default: true
  19645. },
  19646. {
  19647. name: "Macro",
  19648. height: math.unit(3900.0, "inches")
  19649. },
  19650. {
  19651. name: "Megamacro",
  19652. height: math.unit(195000.0, "inches")
  19653. },
  19654. {
  19655. name: "Gigamacro",
  19656. height: math.unit(390000000.0, "inches")
  19657. }
  19658. ]
  19659. )
  19660. };
  19661. pokemonMakers["Marshadow"] = () => {
  19662. return makeCharacter(
  19663. { name: "Marshadow" },
  19664. {
  19665. "Marshadow": {
  19666. height: math.unit("28", "inches"),
  19667. weight: math.unit("48.9", "lbs"),
  19668. name: "Marshadow",
  19669. image: {
  19670. source: "./media/pokemon/Marshadow.svg"
  19671. },
  19672. rename: true
  19673. }
  19674. },
  19675. [
  19676. {
  19677. name: "Micro",
  19678. height: math.unit(2.8, "inches")
  19679. },
  19680. {
  19681. name: "Normal",
  19682. height: math.unit(28, "inches"),
  19683. default: true
  19684. },
  19685. {
  19686. name: "Macro",
  19687. height: math.unit(2800.0, "inches")
  19688. },
  19689. {
  19690. name: "Megamacro",
  19691. height: math.unit(140000.0, "inches")
  19692. },
  19693. {
  19694. name: "Gigamacro",
  19695. height: math.unit(280000000.0, "inches")
  19696. }
  19697. ]
  19698. )
  19699. };
  19700. pokemonMakers["Marshtomp"] = () => {
  19701. return makeCharacter(
  19702. { name: "Marshtomp" },
  19703. {
  19704. "Marshtomp": {
  19705. height: math.unit("28", "inches"),
  19706. weight: math.unit("61.7", "lbs"),
  19707. name: "Marshtomp",
  19708. image: {
  19709. source: "./media/pokemon/Marshtomp.svg"
  19710. },
  19711. rename: true
  19712. }
  19713. },
  19714. [
  19715. {
  19716. name: "Micro",
  19717. height: math.unit(2.8, "inches")
  19718. },
  19719. {
  19720. name: "Normal",
  19721. height: math.unit(28, "inches"),
  19722. default: true
  19723. },
  19724. {
  19725. name: "Macro",
  19726. height: math.unit(2800.0, "inches")
  19727. },
  19728. {
  19729. name: "Megamacro",
  19730. height: math.unit(140000.0, "inches")
  19731. },
  19732. {
  19733. name: "Gigamacro",
  19734. height: math.unit(280000000.0, "inches")
  19735. }
  19736. ]
  19737. )
  19738. };
  19739. pokemonMakers["Masquerain"] = () => {
  19740. return makeCharacter(
  19741. { name: "Masquerain" },
  19742. {
  19743. "Masquerain": {
  19744. height: math.unit("31", "inches"),
  19745. weight: math.unit("7.9", "lbs"),
  19746. name: "Masquerain",
  19747. image: {
  19748. source: "./media/pokemon/Masquerain.svg"
  19749. },
  19750. rename: true
  19751. }
  19752. },
  19753. [
  19754. {
  19755. name: "Micro",
  19756. height: math.unit(3.1, "inches")
  19757. },
  19758. {
  19759. name: "Normal",
  19760. height: math.unit(31, "inches"),
  19761. default: true
  19762. },
  19763. {
  19764. name: "Macro",
  19765. height: math.unit(3100.0, "inches")
  19766. },
  19767. {
  19768. name: "Megamacro",
  19769. height: math.unit(155000.0, "inches")
  19770. },
  19771. {
  19772. name: "Gigamacro",
  19773. height: math.unit(310000000.0, "inches")
  19774. }
  19775. ]
  19776. )
  19777. };
  19778. pokemonMakers["Mawile"] = () => {
  19779. return makeCharacter(
  19780. { name: "Mawile" },
  19781. {
  19782. "Mawile": {
  19783. height: math.unit("24", "inches"),
  19784. weight: math.unit("25.4", "lbs"),
  19785. name: "Mawile",
  19786. image: {
  19787. source: "./media/pokemon/Mawile.svg"
  19788. },
  19789. rename: true
  19790. },
  19791. "Mega Mawile": {
  19792. height: math.unit("39", "inches"),
  19793. weight: math.unit("51.8", "lbs"),
  19794. name: "Mega Mawile",
  19795. image: {
  19796. source: "./media/pokemon/Mega Mawile.svg"
  19797. },
  19798. rename: true
  19799. }
  19800. },
  19801. [
  19802. {
  19803. name: "Micro",
  19804. height: math.unit(2.4, "inches")
  19805. },
  19806. {
  19807. name: "Normal",
  19808. height: math.unit(24, "inches"),
  19809. default: true
  19810. },
  19811. {
  19812. name: "Macro",
  19813. height: math.unit(2400.0, "inches")
  19814. },
  19815. {
  19816. name: "Megamacro",
  19817. height: math.unit(120000.0, "inches")
  19818. },
  19819. {
  19820. name: "Gigamacro",
  19821. height: math.unit(240000000.0, "inches")
  19822. }
  19823. ]
  19824. )
  19825. };
  19826. pokemonMakers["Medicham"] = () => {
  19827. return makeCharacter(
  19828. { name: "Medicham" },
  19829. {
  19830. "Medicham": {
  19831. height: math.unit("51", "inches"),
  19832. weight: math.unit("69.4", "lbs"),
  19833. name: "Medicham",
  19834. image: {
  19835. source: "./media/pokemon/Medicham.svg"
  19836. },
  19837. rename: true
  19838. },
  19839. "Mega Medicham": {
  19840. height: math.unit("51", "inches"),
  19841. weight: math.unit("69.4", "lbs"),
  19842. name: "Mega Medicham",
  19843. image: {
  19844. source: "./media/pokemon/Mega Medicham.svg"
  19845. },
  19846. rename: true
  19847. }
  19848. },
  19849. [
  19850. {
  19851. name: "Micro",
  19852. height: math.unit(5.1, "inches")
  19853. },
  19854. {
  19855. name: "Normal",
  19856. height: math.unit(51, "inches"),
  19857. default: true
  19858. },
  19859. {
  19860. name: "Macro",
  19861. height: math.unit(5100.0, "inches")
  19862. },
  19863. {
  19864. name: "Megamacro",
  19865. height: math.unit(255000.0, "inches")
  19866. },
  19867. {
  19868. name: "Gigamacro",
  19869. height: math.unit(510000000.0, "inches")
  19870. }
  19871. ]
  19872. )
  19873. };
  19874. pokemonMakers["Meditite"] = () => {
  19875. return makeCharacter(
  19876. { name: "Meditite" },
  19877. {
  19878. "Meditite": {
  19879. height: math.unit("24", "inches"),
  19880. weight: math.unit("24.7", "lbs"),
  19881. name: "Meditite",
  19882. image: {
  19883. source: "./media/pokemon/Meditite.svg"
  19884. },
  19885. rename: true
  19886. }
  19887. },
  19888. [
  19889. {
  19890. name: "Micro",
  19891. height: math.unit(2.4, "inches")
  19892. },
  19893. {
  19894. name: "Normal",
  19895. height: math.unit(24, "inches"),
  19896. default: true
  19897. },
  19898. {
  19899. name: "Macro",
  19900. height: math.unit(2400.0, "inches")
  19901. },
  19902. {
  19903. name: "Megamacro",
  19904. height: math.unit(120000.0, "inches")
  19905. },
  19906. {
  19907. name: "Gigamacro",
  19908. height: math.unit(240000000.0, "inches")
  19909. }
  19910. ]
  19911. )
  19912. };
  19913. pokemonMakers["Metagross"] = () => {
  19914. return makeCharacter(
  19915. { name: "Metagross" },
  19916. {
  19917. "Mega Metagross": {
  19918. height: math.unit("98", "inches"),
  19919. weight: math.unit("2078.7", "lbs"),
  19920. name: "Mega Metagross",
  19921. image: {
  19922. source: "./media/pokemon/Mega Metagross.svg"
  19923. },
  19924. rename: true
  19925. },
  19926. "Metagross": {
  19927. height: math.unit("63", "inches"),
  19928. weight: math.unit("1212.5", "lbs"),
  19929. name: "Metagross",
  19930. image: {
  19931. source: "./media/pokemon/Metagross.svg"
  19932. },
  19933. rename: true
  19934. }
  19935. },
  19936. [
  19937. {
  19938. name: "Micro",
  19939. height: math.unit(9.8, "inches")
  19940. },
  19941. {
  19942. name: "Normal",
  19943. height: math.unit(98, "inches"),
  19944. default: true
  19945. },
  19946. {
  19947. name: "Macro",
  19948. height: math.unit(9800.0, "inches")
  19949. },
  19950. {
  19951. name: "Megamacro",
  19952. height: math.unit(490000.0, "inches")
  19953. },
  19954. {
  19955. name: "Gigamacro",
  19956. height: math.unit(980000000.0, "inches")
  19957. }
  19958. ]
  19959. )
  19960. };
  19961. pokemonMakers["Mewtwo"] = () => {
  19962. return makeCharacter(
  19963. { name: "Mewtwo" },
  19964. {
  19965. "Mega Mewtwo X": {
  19966. height: math.unit("91", "inches"),
  19967. weight: math.unit("280.0", "lbs"),
  19968. name: "Mega Mewtwo X",
  19969. image: {
  19970. source: "./media/pokemon/Mega Mewtwo X.svg"
  19971. },
  19972. rename: true
  19973. },
  19974. "Mega Mewtwo Y": {
  19975. height: math.unit("59", "inches"),
  19976. weight: math.unit("72.8", "lbs"),
  19977. name: "Mega Mewtwo Y",
  19978. image: {
  19979. source: "./media/pokemon/Mega Mewtwo Y.svg"
  19980. },
  19981. rename: true
  19982. },
  19983. "Mewtwo": {
  19984. height: math.unit("79", "inches"),
  19985. weight: math.unit("269.0", "lbs"),
  19986. name: "Mewtwo",
  19987. image: {
  19988. source: "./media/pokemon/Mewtwo.svg"
  19989. },
  19990. rename: true
  19991. }
  19992. },
  19993. [
  19994. {
  19995. name: "Micro",
  19996. height: math.unit(9.1, "inches")
  19997. },
  19998. {
  19999. name: "Normal",
  20000. height: math.unit(91, "inches"),
  20001. default: true
  20002. },
  20003. {
  20004. name: "Macro",
  20005. height: math.unit(9100.0, "inches")
  20006. },
  20007. {
  20008. name: "Megamacro",
  20009. height: math.unit(455000.0, "inches")
  20010. },
  20011. {
  20012. name: "Gigamacro",
  20013. height: math.unit(910000000.0, "inches")
  20014. }
  20015. ]
  20016. )
  20017. };
  20018. pokemonMakers["Pidgeot"] = () => {
  20019. return makeCharacter(
  20020. { name: "Pidgeot" },
  20021. {
  20022. "Mega Pidgeot": {
  20023. height: math.unit("87", "inches"),
  20024. weight: math.unit("111.3", "lbs"),
  20025. name: "Mega Pidgeot",
  20026. image: {
  20027. source: "./media/pokemon/Mega Pidgeot.svg"
  20028. },
  20029. rename: true
  20030. },
  20031. "Pidgeot": {
  20032. height: math.unit("59", "inches"),
  20033. weight: math.unit("87.1", "lbs"),
  20034. name: "Pidgeot",
  20035. image: {
  20036. source: "./media/pokemon/Pidgeot.svg"
  20037. },
  20038. rename: true
  20039. }
  20040. },
  20041. [
  20042. {
  20043. name: "Micro",
  20044. height: math.unit(8.7, "inches")
  20045. },
  20046. {
  20047. name: "Normal",
  20048. height: math.unit(87, "inches"),
  20049. default: true
  20050. },
  20051. {
  20052. name: "Macro",
  20053. height: math.unit(8700.0, "inches")
  20054. },
  20055. {
  20056. name: "Megamacro",
  20057. height: math.unit(435000.0, "inches")
  20058. },
  20059. {
  20060. name: "Gigamacro",
  20061. height: math.unit(870000000.0, "inches")
  20062. }
  20063. ]
  20064. )
  20065. };
  20066. pokemonMakers["Pinsir"] = () => {
  20067. return makeCharacter(
  20068. { name: "Pinsir" },
  20069. {
  20070. "Mega Pinsir": {
  20071. height: math.unit("67", "inches"),
  20072. weight: math.unit("130.1", "lbs"),
  20073. name: "Mega Pinsir",
  20074. image: {
  20075. source: "./media/pokemon/Mega Pinsir.svg"
  20076. },
  20077. rename: true
  20078. },
  20079. "Pinsir": {
  20080. height: math.unit("59", "inches"),
  20081. weight: math.unit("121.3", "lbs"),
  20082. name: "Pinsir",
  20083. image: {
  20084. source: "./media/pokemon/Pinsir.svg"
  20085. },
  20086. rename: true
  20087. }
  20088. },
  20089. [
  20090. {
  20091. name: "Micro",
  20092. height: math.unit(6.7, "inches")
  20093. },
  20094. {
  20095. name: "Normal",
  20096. height: math.unit(67, "inches"),
  20097. default: true
  20098. },
  20099. {
  20100. name: "Macro",
  20101. height: math.unit(6700.0, "inches")
  20102. },
  20103. {
  20104. name: "Megamacro",
  20105. height: math.unit(335000.0, "inches")
  20106. },
  20107. {
  20108. name: "Gigamacro",
  20109. height: math.unit(670000000.0, "inches")
  20110. }
  20111. ]
  20112. )
  20113. };
  20114. pokemonMakers["Rayquaza"] = () => {
  20115. return makeCharacter(
  20116. { name: "Rayquaza" },
  20117. {
  20118. "Mega Rayquaza": {
  20119. height: math.unit("425", "inches"),
  20120. weight: math.unit("864.2", "lbs"),
  20121. name: "Mega Rayquaza",
  20122. image: {
  20123. source: "./media/pokemon/Mega Rayquaza.svg"
  20124. },
  20125. rename: true
  20126. },
  20127. "Rayquaza": {
  20128. height: math.unit("276", "inches"),
  20129. weight: math.unit("455.2", "lbs"),
  20130. name: "Rayquaza",
  20131. image: {
  20132. source: "./media/pokemon/Rayquaza.svg"
  20133. },
  20134. rename: true
  20135. }
  20136. },
  20137. [
  20138. {
  20139. name: "Micro",
  20140. height: math.unit(42.5, "inches")
  20141. },
  20142. {
  20143. name: "Normal",
  20144. height: math.unit(425, "inches"),
  20145. default: true
  20146. },
  20147. {
  20148. name: "Macro",
  20149. height: math.unit(42500.0, "inches")
  20150. },
  20151. {
  20152. name: "Megamacro",
  20153. height: math.unit(2125000.0, "inches")
  20154. },
  20155. {
  20156. name: "Gigamacro",
  20157. height: math.unit(4250000000.0, "inches")
  20158. }
  20159. ]
  20160. )
  20161. };
  20162. pokemonMakers["Sableye"] = () => {
  20163. return makeCharacter(
  20164. { name: "Sableye" },
  20165. {
  20166. "Mega Sableye": {
  20167. height: math.unit("20", "inches"),
  20168. weight: math.unit("354.9", "lbs"),
  20169. name: "Mega Sableye",
  20170. image: {
  20171. source: "./media/pokemon/Mega Sableye.svg"
  20172. },
  20173. rename: true
  20174. },
  20175. "Sableye": {
  20176. height: math.unit("20", "inches"),
  20177. weight: math.unit("24.3", "lbs"),
  20178. name: "Sableye",
  20179. image: {
  20180. source: "./media/pokemon/Sableye.svg"
  20181. },
  20182. rename: true
  20183. }
  20184. },
  20185. [
  20186. {
  20187. name: "Micro",
  20188. height: math.unit(2.0, "inches")
  20189. },
  20190. {
  20191. name: "Normal",
  20192. height: math.unit(20, "inches"),
  20193. default: true
  20194. },
  20195. {
  20196. name: "Macro",
  20197. height: math.unit(2000.0, "inches")
  20198. },
  20199. {
  20200. name: "Megamacro",
  20201. height: math.unit(100000.0, "inches")
  20202. },
  20203. {
  20204. name: "Gigamacro",
  20205. height: math.unit(200000000.0, "inches")
  20206. }
  20207. ]
  20208. )
  20209. };
  20210. pokemonMakers["Salamence"] = () => {
  20211. return makeCharacter(
  20212. { name: "Salamence" },
  20213. {
  20214. "Mega Salamence": {
  20215. height: math.unit("71", "inches"),
  20216. weight: math.unit("248.2", "lbs"),
  20217. name: "Mega Salamence",
  20218. image: {
  20219. source: "./media/pokemon/Mega Salamence.svg"
  20220. },
  20221. rename: true
  20222. },
  20223. "Salamence": {
  20224. height: math.unit("59", "inches"),
  20225. weight: math.unit("226.2", "lbs"),
  20226. name: "Salamence",
  20227. image: {
  20228. source: "./media/pokemon/Salamence.svg"
  20229. },
  20230. rename: true
  20231. }
  20232. },
  20233. [
  20234. {
  20235. name: "Micro",
  20236. height: math.unit(7.1, "inches")
  20237. },
  20238. {
  20239. name: "Normal",
  20240. height: math.unit(71, "inches"),
  20241. default: true
  20242. },
  20243. {
  20244. name: "Macro",
  20245. height: math.unit(7100.0, "inches")
  20246. },
  20247. {
  20248. name: "Megamacro",
  20249. height: math.unit(355000.0, "inches")
  20250. },
  20251. {
  20252. name: "Gigamacro",
  20253. height: math.unit(710000000.0, "inches")
  20254. }
  20255. ]
  20256. )
  20257. };
  20258. pokemonMakers["Sceptile"] = () => {
  20259. return makeCharacter(
  20260. { name: "Sceptile" },
  20261. {
  20262. "Mega Sceptile": {
  20263. height: math.unit("75", "inches"),
  20264. weight: math.unit("121.7", "lbs"),
  20265. name: "Mega Sceptile",
  20266. image: {
  20267. source: "./media/pokemon/Mega Sceptile.svg"
  20268. },
  20269. rename: true
  20270. },
  20271. "Sceptile": {
  20272. height: math.unit("67", "inches"),
  20273. weight: math.unit("115.1", "lbs"),
  20274. name: "Sceptile",
  20275. image: {
  20276. source: "./media/pokemon/Sceptile.svg"
  20277. },
  20278. rename: true
  20279. }
  20280. },
  20281. [
  20282. {
  20283. name: "Micro",
  20284. height: math.unit(7.5, "inches")
  20285. },
  20286. {
  20287. name: "Normal",
  20288. height: math.unit(75, "inches"),
  20289. default: true
  20290. },
  20291. {
  20292. name: "Macro",
  20293. height: math.unit(7500.0, "inches")
  20294. },
  20295. {
  20296. name: "Megamacro",
  20297. height: math.unit(375000.0, "inches")
  20298. },
  20299. {
  20300. name: "Gigamacro",
  20301. height: math.unit(750000000.0, "inches")
  20302. }
  20303. ]
  20304. )
  20305. };
  20306. pokemonMakers["Scizor"] = () => {
  20307. return makeCharacter(
  20308. { name: "Scizor" },
  20309. {
  20310. "Mega Scizor": {
  20311. height: math.unit("79", "inches"),
  20312. weight: math.unit("275.6", "lbs"),
  20313. name: "Mega Scizor",
  20314. image: {
  20315. source: "./media/pokemon/Mega Scizor.svg"
  20316. },
  20317. rename: true
  20318. },
  20319. "Scizor": {
  20320. height: math.unit("71", "inches"),
  20321. weight: math.unit("260.1", "lbs"),
  20322. name: "Scizor",
  20323. image: {
  20324. source: "./media/pokemon/Scizor.svg"
  20325. },
  20326. rename: true
  20327. }
  20328. },
  20329. [
  20330. {
  20331. name: "Micro",
  20332. height: math.unit(7.9, "inches")
  20333. },
  20334. {
  20335. name: "Normal",
  20336. height: math.unit(79, "inches"),
  20337. default: true
  20338. },
  20339. {
  20340. name: "Macro",
  20341. height: math.unit(7900.0, "inches")
  20342. },
  20343. {
  20344. name: "Megamacro",
  20345. height: math.unit(395000.0, "inches")
  20346. },
  20347. {
  20348. name: "Gigamacro",
  20349. height: math.unit(790000000.0, "inches")
  20350. }
  20351. ]
  20352. )
  20353. };
  20354. pokemonMakers["Sharpedo"] = () => {
  20355. return makeCharacter(
  20356. { name: "Sharpedo" },
  20357. {
  20358. "Mega Sharpedo": {
  20359. height: math.unit("98", "inches"),
  20360. weight: math.unit("287.3", "lbs"),
  20361. name: "Mega Sharpedo",
  20362. image: {
  20363. source: "./media/pokemon/Mega Sharpedo.svg"
  20364. },
  20365. rename: true
  20366. },
  20367. "Sharpedo": {
  20368. height: math.unit("71", "inches"),
  20369. weight: math.unit("195.8", "lbs"),
  20370. name: "Sharpedo",
  20371. image: {
  20372. source: "./media/pokemon/Sharpedo.svg"
  20373. },
  20374. rename: true
  20375. }
  20376. },
  20377. [
  20378. {
  20379. name: "Micro",
  20380. height: math.unit(9.8, "inches")
  20381. },
  20382. {
  20383. name: "Normal",
  20384. height: math.unit(98, "inches"),
  20385. default: true
  20386. },
  20387. {
  20388. name: "Macro",
  20389. height: math.unit(9800.0, "inches")
  20390. },
  20391. {
  20392. name: "Megamacro",
  20393. height: math.unit(490000.0, "inches")
  20394. },
  20395. {
  20396. name: "Gigamacro",
  20397. height: math.unit(980000000.0, "inches")
  20398. }
  20399. ]
  20400. )
  20401. };
  20402. pokemonMakers["Slowbro"] = () => {
  20403. return makeCharacter(
  20404. { name: "Slowbro" },
  20405. {
  20406. "Mega Slowbro": {
  20407. height: math.unit("79", "inches"),
  20408. weight: math.unit("264.6", "lbs"),
  20409. name: "Mega Slowbro",
  20410. image: {
  20411. source: "./media/pokemon/Mega Slowbro.svg"
  20412. },
  20413. rename: true
  20414. },
  20415. "Slowbro": {
  20416. height: math.unit("63", "inches"),
  20417. weight: math.unit("173.1", "lbs"),
  20418. name: "Slowbro",
  20419. image: {
  20420. source: "./media/pokemon/Slowbro.svg"
  20421. },
  20422. rename: true
  20423. }
  20424. },
  20425. [
  20426. {
  20427. name: "Micro",
  20428. height: math.unit(7.9, "inches")
  20429. },
  20430. {
  20431. name: "Normal",
  20432. height: math.unit(79, "inches"),
  20433. default: true
  20434. },
  20435. {
  20436. name: "Macro",
  20437. height: math.unit(7900.0, "inches")
  20438. },
  20439. {
  20440. name: "Megamacro",
  20441. height: math.unit(395000.0, "inches")
  20442. },
  20443. {
  20444. name: "Gigamacro",
  20445. height: math.unit(790000000.0, "inches")
  20446. }
  20447. ]
  20448. )
  20449. };
  20450. pokemonMakers["Steelix"] = () => {
  20451. return makeCharacter(
  20452. { name: "Steelix" },
  20453. {
  20454. "Mega Steelix": {
  20455. height: math.unit("413", "inches"),
  20456. weight: math.unit("1631.4", "lbs"),
  20457. name: "Mega Steelix",
  20458. image: {
  20459. source: "./media/pokemon/Mega Steelix.svg"
  20460. },
  20461. rename: true
  20462. },
  20463. "Steelix": {
  20464. height: math.unit("362", "inches"),
  20465. weight: math.unit("881.8", "lbs"),
  20466. name: "Steelix",
  20467. image: {
  20468. source: "./media/pokemon/Steelix.svg"
  20469. },
  20470. rename: true
  20471. }
  20472. },
  20473. [
  20474. {
  20475. name: "Micro",
  20476. height: math.unit(41.3, "inches")
  20477. },
  20478. {
  20479. name: "Normal",
  20480. height: math.unit(413, "inches"),
  20481. default: true
  20482. },
  20483. {
  20484. name: "Macro",
  20485. height: math.unit(41300.0, "inches")
  20486. },
  20487. {
  20488. name: "Megamacro",
  20489. height: math.unit(2065000.0, "inches")
  20490. },
  20491. {
  20492. name: "Gigamacro",
  20493. height: math.unit(4130000000.0, "inches")
  20494. }
  20495. ]
  20496. )
  20497. };
  20498. pokemonMakers["Swampert"] = () => {
  20499. return makeCharacter(
  20500. { name: "Swampert" },
  20501. {
  20502. "Mega Swampert": {
  20503. height: math.unit("75", "inches"),
  20504. weight: math.unit("224.9", "lbs"),
  20505. name: "Mega Swampert",
  20506. image: {
  20507. source: "./media/pokemon/Mega Swampert.svg"
  20508. },
  20509. rename: true
  20510. },
  20511. "Swampert": {
  20512. height: math.unit("59", "inches"),
  20513. weight: math.unit("180.6", "lbs"),
  20514. name: "Swampert",
  20515. image: {
  20516. source: "./media/pokemon/Swampert.svg"
  20517. },
  20518. rename: true
  20519. }
  20520. },
  20521. [
  20522. {
  20523. name: "Micro",
  20524. height: math.unit(7.5, "inches")
  20525. },
  20526. {
  20527. name: "Normal",
  20528. height: math.unit(75, "inches"),
  20529. default: true
  20530. },
  20531. {
  20532. name: "Macro",
  20533. height: math.unit(7500.0, "inches")
  20534. },
  20535. {
  20536. name: "Megamacro",
  20537. height: math.unit(375000.0, "inches")
  20538. },
  20539. {
  20540. name: "Gigamacro",
  20541. height: math.unit(750000000.0, "inches")
  20542. }
  20543. ]
  20544. )
  20545. };
  20546. pokemonMakers["Tyranitar"] = () => {
  20547. return makeCharacter(
  20548. { name: "Tyranitar" },
  20549. {
  20550. "Mega Tyranitar": {
  20551. height: math.unit("98", "inches"),
  20552. weight: math.unit("562.2", "lbs"),
  20553. name: "Mega Tyranitar",
  20554. image: {
  20555. source: "./media/pokemon/Mega Tyranitar.svg"
  20556. },
  20557. rename: true
  20558. },
  20559. "Tyranitar": {
  20560. height: math.unit("79", "inches"),
  20561. weight: math.unit("445.3", "lbs"),
  20562. name: "Tyranitar",
  20563. image: {
  20564. source: "./media/pokemon/Tyranitar.svg"
  20565. },
  20566. rename: true
  20567. }
  20568. },
  20569. [
  20570. {
  20571. name: "Micro",
  20572. height: math.unit(9.8, "inches")
  20573. },
  20574. {
  20575. name: "Normal",
  20576. height: math.unit(98, "inches"),
  20577. default: true
  20578. },
  20579. {
  20580. name: "Macro",
  20581. height: math.unit(9800.0, "inches")
  20582. },
  20583. {
  20584. name: "Megamacro",
  20585. height: math.unit(490000.0, "inches")
  20586. },
  20587. {
  20588. name: "Gigamacro",
  20589. height: math.unit(980000000.0, "inches")
  20590. }
  20591. ]
  20592. )
  20593. };
  20594. pokemonMakers["Venusaur"] = () => {
  20595. return makeCharacter(
  20596. { name: "Venusaur" },
  20597. {
  20598. "Mega Venusaur": {
  20599. height: math.unit("94", "inches"),
  20600. weight: math.unit("342.8", "lbs"),
  20601. name: "Mega Venusaur",
  20602. image: {
  20603. source: "./media/pokemon/Mega Venusaur.svg"
  20604. },
  20605. rename: true
  20606. },
  20607. "Venusaur": {
  20608. height: math.unit("79", "inches"),
  20609. weight: math.unit("220.5", "lbs"),
  20610. name: "Venusaur",
  20611. image: {
  20612. source: "./media/pokemon/Venusaur.svg"
  20613. },
  20614. rename: true
  20615. }
  20616. },
  20617. [
  20618. {
  20619. name: "Micro",
  20620. height: math.unit(9.4, "inches")
  20621. },
  20622. {
  20623. name: "Normal",
  20624. height: math.unit(94, "inches"),
  20625. default: true
  20626. },
  20627. {
  20628. name: "Macro",
  20629. height: math.unit(9400.0, "inches")
  20630. },
  20631. {
  20632. name: "Megamacro",
  20633. height: math.unit(470000.0, "inches")
  20634. },
  20635. {
  20636. name: "Gigamacro",
  20637. height: math.unit(940000000.0, "inches")
  20638. }
  20639. ]
  20640. )
  20641. };
  20642. pokemonMakers["Meganium"] = () => {
  20643. return makeCharacter(
  20644. { name: "Meganium" },
  20645. {
  20646. "Meganium": {
  20647. height: math.unit("71", "inches"),
  20648. weight: math.unit("221.6", "lbs"),
  20649. name: "Meganium",
  20650. image: {
  20651. source: "./media/pokemon/Meganium.svg"
  20652. },
  20653. rename: true
  20654. }
  20655. },
  20656. [
  20657. {
  20658. name: "Micro",
  20659. height: math.unit(7.1, "inches")
  20660. },
  20661. {
  20662. name: "Normal",
  20663. height: math.unit(71, "inches"),
  20664. default: true
  20665. },
  20666. {
  20667. name: "Macro",
  20668. height: math.unit(7100.0, "inches")
  20669. },
  20670. {
  20671. name: "Megamacro",
  20672. height: math.unit(355000.0, "inches")
  20673. },
  20674. {
  20675. name: "Gigamacro",
  20676. height: math.unit(710000000.0, "inches")
  20677. }
  20678. ]
  20679. )
  20680. };
  20681. pokemonMakers["Melmetal"] = () => {
  20682. return makeCharacter(
  20683. { name: "Melmetal" },
  20684. {
  20685. "Melmetal": {
  20686. height: math.unit("98", "inches"),
  20687. weight: math.unit("1763.7", "lbs"),
  20688. name: "Melmetal",
  20689. image: {
  20690. source: "./media/pokemon/Melmetal.svg"
  20691. },
  20692. rename: true
  20693. }
  20694. },
  20695. [
  20696. {
  20697. name: "Micro",
  20698. height: math.unit(9.8, "inches")
  20699. },
  20700. {
  20701. name: "Normal",
  20702. height: math.unit(98, "inches"),
  20703. default: true
  20704. },
  20705. {
  20706. name: "Macro",
  20707. height: math.unit(9800.0, "inches")
  20708. },
  20709. {
  20710. name: "Megamacro",
  20711. height: math.unit(490000.0, "inches")
  20712. },
  20713. {
  20714. name: "Gigamacro",
  20715. height: math.unit(980000000.0, "inches")
  20716. }
  20717. ]
  20718. )
  20719. };
  20720. pokemonMakers["Meloetta"] = () => {
  20721. return makeCharacter(
  20722. { name: "Meloetta" },
  20723. {
  20724. "Aria Forme": {
  20725. height: math.unit("24", "inches"),
  20726. weight: math.unit("14.3", "lbs"),
  20727. name: "Aria Forme",
  20728. image: {
  20729. source: "./media/pokemon/Meloetta - Aria Forme.svg"
  20730. },
  20731. rename: true
  20732. },
  20733. "Pirouette Forme": {
  20734. height: math.unit("24", "inches"),
  20735. weight: math.unit("14.3", "lbs"),
  20736. name: "Pirouette Forme",
  20737. image: {
  20738. source: "./media/pokemon/Meloetta - Pirouette Forme.svg"
  20739. },
  20740. rename: true
  20741. }
  20742. },
  20743. [
  20744. {
  20745. name: "Micro",
  20746. height: math.unit(2.4, "inches")
  20747. },
  20748. {
  20749. name: "Normal",
  20750. height: math.unit(24, "inches"),
  20751. default: true
  20752. },
  20753. {
  20754. name: "Macro",
  20755. height: math.unit(2400.0, "inches")
  20756. },
  20757. {
  20758. name: "Megamacro",
  20759. height: math.unit(120000.0, "inches")
  20760. },
  20761. {
  20762. name: "Gigamacro",
  20763. height: math.unit(240000000.0, "inches")
  20764. }
  20765. ]
  20766. )
  20767. };
  20768. pokemonMakers["Meltan"] = () => {
  20769. return makeCharacter(
  20770. { name: "Meltan" },
  20771. {
  20772. "Meltan": {
  20773. height: math.unit("8", "inches"),
  20774. weight: math.unit("17.6", "lbs"),
  20775. name: "Meltan",
  20776. image: {
  20777. source: "./media/pokemon/Meltan.svg"
  20778. },
  20779. rename: true
  20780. }
  20781. },
  20782. [
  20783. {
  20784. name: "Micro",
  20785. height: math.unit(0.8, "inches")
  20786. },
  20787. {
  20788. name: "Normal",
  20789. height: math.unit(8, "inches"),
  20790. default: true
  20791. },
  20792. {
  20793. name: "Macro",
  20794. height: math.unit(800.0, "inches")
  20795. },
  20796. {
  20797. name: "Megamacro",
  20798. height: math.unit(40000.0, "inches")
  20799. },
  20800. {
  20801. name: "Gigamacro",
  20802. height: math.unit(80000000.0, "inches")
  20803. }
  20804. ]
  20805. )
  20806. };
  20807. pokemonMakers["Meowstic"] = () => {
  20808. return makeCharacter(
  20809. { name: "Meowstic" },
  20810. {
  20811. "Female": {
  20812. height: math.unit("24", "inches"),
  20813. weight: math.unit("18.7", "lbs"),
  20814. name: "Female",
  20815. image: {
  20816. source: "./media/pokemon/Meowstic - Female.svg"
  20817. },
  20818. rename: true
  20819. },
  20820. "Male": {
  20821. height: math.unit("24", "inches"),
  20822. weight: math.unit("18.7", "lbs"),
  20823. name: "Male",
  20824. image: {
  20825. source: "./media/pokemon/Meowstic - Male.svg"
  20826. },
  20827. rename: true
  20828. }
  20829. },
  20830. [
  20831. {
  20832. name: "Micro",
  20833. height: math.unit(2.4, "inches")
  20834. },
  20835. {
  20836. name: "Normal",
  20837. height: math.unit(24, "inches"),
  20838. default: true
  20839. },
  20840. {
  20841. name: "Macro",
  20842. height: math.unit(2400.0, "inches")
  20843. },
  20844. {
  20845. name: "Megamacro",
  20846. height: math.unit(120000.0, "inches")
  20847. },
  20848. {
  20849. name: "Gigamacro",
  20850. height: math.unit(240000000.0, "inches")
  20851. }
  20852. ]
  20853. )
  20854. };
  20855. pokemonMakers["Mesprit"] = () => {
  20856. return makeCharacter(
  20857. { name: "Mesprit" },
  20858. {
  20859. "Mesprit": {
  20860. height: math.unit("12", "inches"),
  20861. weight: math.unit("0.7", "lbs"),
  20862. name: "Mesprit",
  20863. image: {
  20864. source: "./media/pokemon/Mesprit.svg"
  20865. },
  20866. rename: true
  20867. }
  20868. },
  20869. [
  20870. {
  20871. name: "Micro",
  20872. height: math.unit(1.2, "inches")
  20873. },
  20874. {
  20875. name: "Normal",
  20876. height: math.unit(12, "inches"),
  20877. default: true
  20878. },
  20879. {
  20880. name: "Macro",
  20881. height: math.unit(1200.0, "inches")
  20882. },
  20883. {
  20884. name: "Megamacro",
  20885. height: math.unit(60000.0, "inches")
  20886. },
  20887. {
  20888. name: "Gigamacro",
  20889. height: math.unit(120000000.0, "inches")
  20890. }
  20891. ]
  20892. )
  20893. };
  20894. pokemonMakers["Metang"] = () => {
  20895. return makeCharacter(
  20896. { name: "Metang" },
  20897. {
  20898. "Metang": {
  20899. height: math.unit("47", "inches"),
  20900. weight: math.unit("446.4", "lbs"),
  20901. name: "Metang",
  20902. image: {
  20903. source: "./media/pokemon/Metang.svg"
  20904. },
  20905. rename: true
  20906. }
  20907. },
  20908. [
  20909. {
  20910. name: "Micro",
  20911. height: math.unit(4.7, "inches")
  20912. },
  20913. {
  20914. name: "Normal",
  20915. height: math.unit(47, "inches"),
  20916. default: true
  20917. },
  20918. {
  20919. name: "Macro",
  20920. height: math.unit(4700.0, "inches")
  20921. },
  20922. {
  20923. name: "Megamacro",
  20924. height: math.unit(235000.0, "inches")
  20925. },
  20926. {
  20927. name: "Gigamacro",
  20928. height: math.unit(470000000.0, "inches")
  20929. }
  20930. ]
  20931. )
  20932. };
  20933. pokemonMakers["Metapod"] = () => {
  20934. return makeCharacter(
  20935. { name: "Metapod" },
  20936. {
  20937. "Metapod": {
  20938. height: math.unit("28", "inches"),
  20939. weight: math.unit("21.8", "lbs"),
  20940. name: "Metapod",
  20941. image: {
  20942. source: "./media/pokemon/Metapod.svg"
  20943. },
  20944. rename: true
  20945. }
  20946. },
  20947. [
  20948. {
  20949. name: "Micro",
  20950. height: math.unit(2.8, "inches")
  20951. },
  20952. {
  20953. name: "Normal",
  20954. height: math.unit(28, "inches"),
  20955. default: true
  20956. },
  20957. {
  20958. name: "Macro",
  20959. height: math.unit(2800.0, "inches")
  20960. },
  20961. {
  20962. name: "Megamacro",
  20963. height: math.unit(140000.0, "inches")
  20964. },
  20965. {
  20966. name: "Gigamacro",
  20967. height: math.unit(280000000.0, "inches")
  20968. }
  20969. ]
  20970. )
  20971. };
  20972. pokemonMakers["Mew"] = () => {
  20973. return makeCharacter(
  20974. { name: "Mew" },
  20975. {
  20976. "Mew": {
  20977. height: math.unit("16", "inches"),
  20978. weight: math.unit("8.8", "lbs"),
  20979. name: "Mew",
  20980. image: {
  20981. source: "./media/pokemon/Mew.svg"
  20982. },
  20983. rename: true
  20984. }
  20985. },
  20986. [
  20987. {
  20988. name: "Micro",
  20989. height: math.unit(1.6, "inches")
  20990. },
  20991. {
  20992. name: "Normal",
  20993. height: math.unit(16, "inches"),
  20994. default: true
  20995. },
  20996. {
  20997. name: "Macro",
  20998. height: math.unit(1600.0, "inches")
  20999. },
  21000. {
  21001. name: "Megamacro",
  21002. height: math.unit(80000.0, "inches")
  21003. },
  21004. {
  21005. name: "Gigamacro",
  21006. height: math.unit(160000000.0, "inches")
  21007. }
  21008. ]
  21009. )
  21010. };
  21011. pokemonMakers["Mienfoo"] = () => {
  21012. return makeCharacter(
  21013. { name: "Mienfoo" },
  21014. {
  21015. "Mienfoo": {
  21016. height: math.unit("35", "inches"),
  21017. weight: math.unit("44.1", "lbs"),
  21018. name: "Mienfoo",
  21019. image: {
  21020. source: "./media/pokemon/Mienfoo.svg"
  21021. },
  21022. rename: true
  21023. }
  21024. },
  21025. [
  21026. {
  21027. name: "Micro",
  21028. height: math.unit(3.5, "inches")
  21029. },
  21030. {
  21031. name: "Normal",
  21032. height: math.unit(35, "inches"),
  21033. default: true
  21034. },
  21035. {
  21036. name: "Macro",
  21037. height: math.unit(3500.0, "inches")
  21038. },
  21039. {
  21040. name: "Megamacro",
  21041. height: math.unit(175000.0, "inches")
  21042. },
  21043. {
  21044. name: "Gigamacro",
  21045. height: math.unit(350000000.0, "inches")
  21046. }
  21047. ]
  21048. )
  21049. };
  21050. pokemonMakers["Mienshao"] = () => {
  21051. return makeCharacter(
  21052. { name: "Mienshao" },
  21053. {
  21054. "Mienshao": {
  21055. height: math.unit("55", "inches"),
  21056. weight: math.unit("78.3", "lbs"),
  21057. name: "Mienshao",
  21058. image: {
  21059. source: "./media/pokemon/Mienshao.svg"
  21060. },
  21061. rename: true
  21062. }
  21063. },
  21064. [
  21065. {
  21066. name: "Micro",
  21067. height: math.unit(5.5, "inches")
  21068. },
  21069. {
  21070. name: "Normal",
  21071. height: math.unit(55, "inches"),
  21072. default: true
  21073. },
  21074. {
  21075. name: "Macro",
  21076. height: math.unit(5500.0, "inches")
  21077. },
  21078. {
  21079. name: "Megamacro",
  21080. height: math.unit(275000.0, "inches")
  21081. },
  21082. {
  21083. name: "Gigamacro",
  21084. height: math.unit(550000000.0, "inches")
  21085. }
  21086. ]
  21087. )
  21088. };
  21089. pokemonMakers["Mightyena"] = () => {
  21090. return makeCharacter(
  21091. { name: "Mightyena" },
  21092. {
  21093. "Mightyena": {
  21094. height: math.unit("39", "inches"),
  21095. weight: math.unit("81.6", "lbs"),
  21096. name: "Mightyena",
  21097. image: {
  21098. source: "./media/pokemon/Mightyena.svg"
  21099. },
  21100. rename: true
  21101. }
  21102. },
  21103. [
  21104. {
  21105. name: "Micro",
  21106. height: math.unit(3.9, "inches")
  21107. },
  21108. {
  21109. name: "Normal",
  21110. height: math.unit(39, "inches"),
  21111. default: true
  21112. },
  21113. {
  21114. name: "Macro",
  21115. height: math.unit(3900.0, "inches")
  21116. },
  21117. {
  21118. name: "Megamacro",
  21119. height: math.unit(195000.0, "inches")
  21120. },
  21121. {
  21122. name: "Gigamacro",
  21123. height: math.unit(390000000.0, "inches")
  21124. }
  21125. ]
  21126. )
  21127. };
  21128. pokemonMakers["Milcery"] = () => {
  21129. return makeCharacter(
  21130. { name: "Milcery" },
  21131. {
  21132. "Milcery": {
  21133. height: math.unit("8", "inches"),
  21134. weight: math.unit("0.7", "lbs"),
  21135. name: "Milcery",
  21136. image: {
  21137. source: "./media/pokemon/Milcery.svg"
  21138. },
  21139. rename: true
  21140. }
  21141. },
  21142. [
  21143. {
  21144. name: "Micro",
  21145. height: math.unit(0.8, "inches")
  21146. },
  21147. {
  21148. name: "Normal",
  21149. height: math.unit(8, "inches"),
  21150. default: true
  21151. },
  21152. {
  21153. name: "Macro",
  21154. height: math.unit(800.0, "inches")
  21155. },
  21156. {
  21157. name: "Megamacro",
  21158. height: math.unit(40000.0, "inches")
  21159. },
  21160. {
  21161. name: "Gigamacro",
  21162. height: math.unit(80000000.0, "inches")
  21163. }
  21164. ]
  21165. )
  21166. };
  21167. pokemonMakers["Milotic"] = () => {
  21168. return makeCharacter(
  21169. { name: "Milotic" },
  21170. {
  21171. "Milotic": {
  21172. height: math.unit("244", "inches"),
  21173. weight: math.unit("357.1", "lbs"),
  21174. name: "Milotic",
  21175. image: {
  21176. source: "./media/pokemon/Milotic.svg"
  21177. },
  21178. rename: true
  21179. }
  21180. },
  21181. [
  21182. {
  21183. name: "Micro",
  21184. height: math.unit(24.4, "inches")
  21185. },
  21186. {
  21187. name: "Normal",
  21188. height: math.unit(244, "inches"),
  21189. default: true
  21190. },
  21191. {
  21192. name: "Macro",
  21193. height: math.unit(24400.0, "inches")
  21194. },
  21195. {
  21196. name: "Megamacro",
  21197. height: math.unit(1220000.0, "inches")
  21198. },
  21199. {
  21200. name: "Gigamacro",
  21201. height: math.unit(2440000000.0, "inches")
  21202. }
  21203. ]
  21204. )
  21205. };
  21206. pokemonMakers["Miltank"] = () => {
  21207. return makeCharacter(
  21208. { name: "Miltank" },
  21209. {
  21210. "Miltank": {
  21211. height: math.unit("47", "inches"),
  21212. weight: math.unit("166.4", "lbs"),
  21213. name: "Miltank",
  21214. image: {
  21215. source: "./media/pokemon/Miltank.svg"
  21216. },
  21217. rename: true
  21218. }
  21219. },
  21220. [
  21221. {
  21222. name: "Micro",
  21223. height: math.unit(4.7, "inches")
  21224. },
  21225. {
  21226. name: "Normal",
  21227. height: math.unit(47, "inches"),
  21228. default: true
  21229. },
  21230. {
  21231. name: "Macro",
  21232. height: math.unit(4700.0, "inches")
  21233. },
  21234. {
  21235. name: "Megamacro",
  21236. height: math.unit(235000.0, "inches")
  21237. },
  21238. {
  21239. name: "Gigamacro",
  21240. height: math.unit(470000000.0, "inches")
  21241. }
  21242. ]
  21243. )
  21244. };
  21245. pokemonMakers["Mime Jr."] = () => {
  21246. return makeCharacter(
  21247. { name: "Mime Jr." },
  21248. {
  21249. "Mime Jr.": {
  21250. height: math.unit("24", "inches"),
  21251. weight: math.unit("28.7", "lbs"),
  21252. name: "Mime Jr.",
  21253. image: {
  21254. source: "./media/pokemon/Mime Jr.svg"
  21255. },
  21256. rename: true
  21257. }
  21258. },
  21259. [
  21260. {
  21261. name: "Micro",
  21262. height: math.unit(2.4, "inches")
  21263. },
  21264. {
  21265. name: "Normal",
  21266. height: math.unit(24, "inches"),
  21267. default: true
  21268. },
  21269. {
  21270. name: "Macro",
  21271. height: math.unit(2400.0, "inches")
  21272. },
  21273. {
  21274. name: "Megamacro",
  21275. height: math.unit(120000.0, "inches")
  21276. },
  21277. {
  21278. name: "Gigamacro",
  21279. height: math.unit(240000000.0, "inches")
  21280. }
  21281. ]
  21282. )
  21283. };
  21284. pokemonMakers["Mimikyu"] = () => {
  21285. return makeCharacter(
  21286. { name: "Mimikyu" },
  21287. {
  21288. "Mimikyu": {
  21289. height: math.unit("8", "inches"),
  21290. weight: math.unit("1.5", "lbs"),
  21291. name: "Mimikyu",
  21292. image: {
  21293. source: "./media/pokemon/Mimikyu.svg"
  21294. },
  21295. rename: true
  21296. }
  21297. },
  21298. [
  21299. {
  21300. name: "Micro",
  21301. height: math.unit(0.8, "inches")
  21302. },
  21303. {
  21304. name: "Normal",
  21305. height: math.unit(8, "inches"),
  21306. default: true
  21307. },
  21308. {
  21309. name: "Macro",
  21310. height: math.unit(800.0, "inches")
  21311. },
  21312. {
  21313. name: "Megamacro",
  21314. height: math.unit(40000.0, "inches")
  21315. },
  21316. {
  21317. name: "Gigamacro",
  21318. height: math.unit(80000000.0, "inches")
  21319. }
  21320. ]
  21321. )
  21322. };
  21323. pokemonMakers["Minccino"] = () => {
  21324. return makeCharacter(
  21325. { name: "Minccino" },
  21326. {
  21327. "Minccino": {
  21328. height: math.unit("16", "inches"),
  21329. weight: math.unit("12.8", "lbs"),
  21330. name: "Minccino",
  21331. image: {
  21332. source: "./media/pokemon/Minccino.svg"
  21333. },
  21334. rename: true
  21335. }
  21336. },
  21337. [
  21338. {
  21339. name: "Micro",
  21340. height: math.unit(1.6, "inches")
  21341. },
  21342. {
  21343. name: "Normal",
  21344. height: math.unit(16, "inches"),
  21345. default: true
  21346. },
  21347. {
  21348. name: "Macro",
  21349. height: math.unit(1600.0, "inches")
  21350. },
  21351. {
  21352. name: "Megamacro",
  21353. height: math.unit(80000.0, "inches")
  21354. },
  21355. {
  21356. name: "Gigamacro",
  21357. height: math.unit(160000000.0, "inches")
  21358. }
  21359. ]
  21360. )
  21361. };
  21362. pokemonMakers["Minior"] = () => {
  21363. return makeCharacter(
  21364. { name: "Minior" },
  21365. {
  21366. "Meteor Form": {
  21367. height: math.unit("12", "inches"),
  21368. weight: math.unit("88.2", "lbs"),
  21369. name: "Meteor Form",
  21370. image: {
  21371. source: "./media/pokemon/Minior - Meteor Form.svg"
  21372. },
  21373. rename: true
  21374. },
  21375. "Red Core": {
  21376. height: math.unit("12", "inches"),
  21377. weight: math.unit("0.7", "lbs"),
  21378. name: "Red Core",
  21379. image: {
  21380. source: "./media/pokemon/Minior - Red Core.svg"
  21381. },
  21382. rename: true
  21383. }
  21384. },
  21385. [
  21386. {
  21387. name: "Micro",
  21388. height: math.unit(1.2, "inches")
  21389. },
  21390. {
  21391. name: "Normal",
  21392. height: math.unit(12, "inches"),
  21393. default: true
  21394. },
  21395. {
  21396. name: "Macro",
  21397. height: math.unit(1200.0, "inches")
  21398. },
  21399. {
  21400. name: "Megamacro",
  21401. height: math.unit(60000.0, "inches")
  21402. },
  21403. {
  21404. name: "Gigamacro",
  21405. height: math.unit(120000000.0, "inches")
  21406. }
  21407. ]
  21408. )
  21409. };
  21410. pokemonMakers["Minun"] = () => {
  21411. return makeCharacter(
  21412. { name: "Minun" },
  21413. {
  21414. "Minun": {
  21415. height: math.unit("16", "inches"),
  21416. weight: math.unit("9.3", "lbs"),
  21417. name: "Minun",
  21418. image: {
  21419. source: "./media/pokemon/Minun.svg"
  21420. },
  21421. rename: true
  21422. }
  21423. },
  21424. [
  21425. {
  21426. name: "Micro",
  21427. height: math.unit(1.6, "inches")
  21428. },
  21429. {
  21430. name: "Normal",
  21431. height: math.unit(16, "inches"),
  21432. default: true
  21433. },
  21434. {
  21435. name: "Macro",
  21436. height: math.unit(1600.0, "inches")
  21437. },
  21438. {
  21439. name: "Megamacro",
  21440. height: math.unit(80000.0, "inches")
  21441. },
  21442. {
  21443. name: "Gigamacro",
  21444. height: math.unit(160000000.0, "inches")
  21445. }
  21446. ]
  21447. )
  21448. };
  21449. pokemonMakers["Misdreavus"] = () => {
  21450. return makeCharacter(
  21451. { name: "Misdreavus" },
  21452. {
  21453. "Misdreavus": {
  21454. height: math.unit("28", "inches"),
  21455. weight: math.unit("2.2", "lbs"),
  21456. name: "Misdreavus",
  21457. image: {
  21458. source: "./media/pokemon/Misdreavus.svg"
  21459. },
  21460. rename: true
  21461. }
  21462. },
  21463. [
  21464. {
  21465. name: "Micro",
  21466. height: math.unit(2.8, "inches")
  21467. },
  21468. {
  21469. name: "Normal",
  21470. height: math.unit(28, "inches"),
  21471. default: true
  21472. },
  21473. {
  21474. name: "Macro",
  21475. height: math.unit(2800.0, "inches")
  21476. },
  21477. {
  21478. name: "Megamacro",
  21479. height: math.unit(140000.0, "inches")
  21480. },
  21481. {
  21482. name: "Gigamacro",
  21483. height: math.unit(280000000.0, "inches")
  21484. }
  21485. ]
  21486. )
  21487. };
  21488. pokemonMakers["Mismagius"] = () => {
  21489. return makeCharacter(
  21490. { name: "Mismagius" },
  21491. {
  21492. "Mismagius": {
  21493. height: math.unit("35", "inches"),
  21494. weight: math.unit("9.7", "lbs"),
  21495. name: "Mismagius",
  21496. image: {
  21497. source: "./media/pokemon/Mismagius.svg"
  21498. },
  21499. rename: true
  21500. }
  21501. },
  21502. [
  21503. {
  21504. name: "Micro",
  21505. height: math.unit(3.5, "inches")
  21506. },
  21507. {
  21508. name: "Normal",
  21509. height: math.unit(35, "inches"),
  21510. default: true
  21511. },
  21512. {
  21513. name: "Macro",
  21514. height: math.unit(3500.0, "inches")
  21515. },
  21516. {
  21517. name: "Megamacro",
  21518. height: math.unit(175000.0, "inches")
  21519. },
  21520. {
  21521. name: "Gigamacro",
  21522. height: math.unit(350000000.0, "inches")
  21523. }
  21524. ]
  21525. )
  21526. };
  21527. pokemonMakers["Moltres"] = () => {
  21528. return makeCharacter(
  21529. { name: "Moltres" },
  21530. {
  21531. "Moltres": {
  21532. height: math.unit("79", "inches"),
  21533. weight: math.unit("132.3", "lbs"),
  21534. name: "Moltres",
  21535. image: {
  21536. source: "./media/pokemon/Moltres.svg"
  21537. },
  21538. rename: true
  21539. }
  21540. },
  21541. [
  21542. {
  21543. name: "Micro",
  21544. height: math.unit(7.9, "inches")
  21545. },
  21546. {
  21547. name: "Normal",
  21548. height: math.unit(79, "inches"),
  21549. default: true
  21550. },
  21551. {
  21552. name: "Macro",
  21553. height: math.unit(7900.0, "inches")
  21554. },
  21555. {
  21556. name: "Megamacro",
  21557. height: math.unit(395000.0, "inches")
  21558. },
  21559. {
  21560. name: "Gigamacro",
  21561. height: math.unit(790000000.0, "inches")
  21562. }
  21563. ]
  21564. )
  21565. };
  21566. pokemonMakers["Monferno"] = () => {
  21567. return makeCharacter(
  21568. { name: "Monferno" },
  21569. {
  21570. "Monferno": {
  21571. height: math.unit("35", "inches"),
  21572. weight: math.unit("48.5", "lbs"),
  21573. name: "Monferno",
  21574. image: {
  21575. source: "./media/pokemon/Monferno.svg"
  21576. },
  21577. rename: true
  21578. }
  21579. },
  21580. [
  21581. {
  21582. name: "Micro",
  21583. height: math.unit(3.5, "inches")
  21584. },
  21585. {
  21586. name: "Normal",
  21587. height: math.unit(35, "inches"),
  21588. default: true
  21589. },
  21590. {
  21591. name: "Macro",
  21592. height: math.unit(3500.0, "inches")
  21593. },
  21594. {
  21595. name: "Megamacro",
  21596. height: math.unit(175000.0, "inches")
  21597. },
  21598. {
  21599. name: "Gigamacro",
  21600. height: math.unit(350000000.0, "inches")
  21601. }
  21602. ]
  21603. )
  21604. };
  21605. pokemonMakers["Morelull"] = () => {
  21606. return makeCharacter(
  21607. { name: "Morelull" },
  21608. {
  21609. "Morelull": {
  21610. height: math.unit("8", "inches"),
  21611. weight: math.unit("3.3", "lbs"),
  21612. name: "Morelull",
  21613. image: {
  21614. source: "./media/pokemon/Morelull.svg"
  21615. },
  21616. rename: true
  21617. }
  21618. },
  21619. [
  21620. {
  21621. name: "Micro",
  21622. height: math.unit(0.8, "inches")
  21623. },
  21624. {
  21625. name: "Normal",
  21626. height: math.unit(8, "inches"),
  21627. default: true
  21628. },
  21629. {
  21630. name: "Macro",
  21631. height: math.unit(800.0, "inches")
  21632. },
  21633. {
  21634. name: "Megamacro",
  21635. height: math.unit(40000.0, "inches")
  21636. },
  21637. {
  21638. name: "Gigamacro",
  21639. height: math.unit(80000000.0, "inches")
  21640. }
  21641. ]
  21642. )
  21643. };
  21644. pokemonMakers["Morgrem"] = () => {
  21645. return makeCharacter(
  21646. { name: "Morgrem" },
  21647. {
  21648. "Morgrem": {
  21649. height: math.unit("31", "inches"),
  21650. weight: math.unit("27.6", "lbs"),
  21651. name: "Morgrem",
  21652. image: {
  21653. source: "./media/pokemon/Morgrem.svg"
  21654. },
  21655. rename: true
  21656. }
  21657. },
  21658. [
  21659. {
  21660. name: "Micro",
  21661. height: math.unit(3.1, "inches")
  21662. },
  21663. {
  21664. name: "Normal",
  21665. height: math.unit(31, "inches"),
  21666. default: true
  21667. },
  21668. {
  21669. name: "Macro",
  21670. height: math.unit(3100.0, "inches")
  21671. },
  21672. {
  21673. name: "Megamacro",
  21674. height: math.unit(155000.0, "inches")
  21675. },
  21676. {
  21677. name: "Gigamacro",
  21678. height: math.unit(310000000.0, "inches")
  21679. }
  21680. ]
  21681. )
  21682. };
  21683. pokemonMakers["Morpeko"] = () => {
  21684. return makeCharacter(
  21685. { name: "Morpeko" },
  21686. {
  21687. "Full Belly Mode": {
  21688. height: math.unit("12", "inches"),
  21689. weight: math.unit("6.6", "lbs"),
  21690. name: "Full Belly Mode",
  21691. image: {
  21692. source: "./media/pokemon/Morpeko - Full Belly Mode.svg"
  21693. },
  21694. rename: true
  21695. },
  21696. "Hangry Mode": {
  21697. height: math.unit("12", "inches"),
  21698. weight: math.unit("6.6", "lbs"),
  21699. name: "Hangry Mode",
  21700. image: {
  21701. source: "./media/pokemon/Morpeko - Hangry Mode.svg"
  21702. },
  21703. rename: true
  21704. }
  21705. },
  21706. [
  21707. {
  21708. name: "Micro",
  21709. height: math.unit(1.2, "inches")
  21710. },
  21711. {
  21712. name: "Normal",
  21713. height: math.unit(12, "inches"),
  21714. default: true
  21715. },
  21716. {
  21717. name: "Macro",
  21718. height: math.unit(1200.0, "inches")
  21719. },
  21720. {
  21721. name: "Megamacro",
  21722. height: math.unit(60000.0, "inches")
  21723. },
  21724. {
  21725. name: "Gigamacro",
  21726. height: math.unit(120000000.0, "inches")
  21727. }
  21728. ]
  21729. )
  21730. };
  21731. pokemonMakers["Mothim"] = () => {
  21732. return makeCharacter(
  21733. { name: "Mothim" },
  21734. {
  21735. "Mothim": {
  21736. height: math.unit("35", "inches"),
  21737. weight: math.unit("51.4", "lbs"),
  21738. name: "Mothim",
  21739. image: {
  21740. source: "./media/pokemon/Mothim.svg"
  21741. },
  21742. rename: true
  21743. }
  21744. },
  21745. [
  21746. {
  21747. name: "Micro",
  21748. height: math.unit(3.5, "inches")
  21749. },
  21750. {
  21751. name: "Normal",
  21752. height: math.unit(35, "inches"),
  21753. default: true
  21754. },
  21755. {
  21756. name: "Macro",
  21757. height: math.unit(3500.0, "inches")
  21758. },
  21759. {
  21760. name: "Megamacro",
  21761. height: math.unit(175000.0, "inches")
  21762. },
  21763. {
  21764. name: "Gigamacro",
  21765. height: math.unit(350000000.0, "inches")
  21766. }
  21767. ]
  21768. )
  21769. };
  21770. pokemonMakers["Mr. Mime"] = () => {
  21771. return makeCharacter(
  21772. { name: "Mr. Mime" },
  21773. {
  21774. "Galarian Form": {
  21775. height: math.unit("55", "inches"),
  21776. weight: math.unit("125.2", "lbs"),
  21777. name: "Galarian Form",
  21778. image: {
  21779. source: "./media/pokemon/Mr. - Galarian Form.svg"
  21780. },
  21781. rename: true
  21782. },
  21783. "Mr. Mime": {
  21784. height: math.unit("51", "inches"),
  21785. weight: math.unit("120.1", "lbs"),
  21786. name: "Mr. Mime",
  21787. image: {
  21788. source: "./media/pokemon/Mr. Mime.svg"
  21789. },
  21790. rename: true
  21791. },
  21792. "Mr. Rime": {
  21793. height: math.unit("59", "inches"),
  21794. weight: math.unit("128.3", "lbs"),
  21795. name: "Mr. Rime",
  21796. image: {
  21797. source: "./media/pokemon/Mr. Rime.svg"
  21798. },
  21799. rename: true
  21800. }
  21801. },
  21802. [
  21803. {
  21804. name: "Micro",
  21805. height: math.unit(5.5, "inches")
  21806. },
  21807. {
  21808. name: "Normal",
  21809. height: math.unit(55, "inches"),
  21810. default: true
  21811. },
  21812. {
  21813. name: "Macro",
  21814. height: math.unit(5500.0, "inches")
  21815. },
  21816. {
  21817. name: "Megamacro",
  21818. height: math.unit(275000.0, "inches")
  21819. },
  21820. {
  21821. name: "Gigamacro",
  21822. height: math.unit(550000000.0, "inches")
  21823. }
  21824. ]
  21825. )
  21826. };
  21827. pokemonMakers["Mudbray"] = () => {
  21828. return makeCharacter(
  21829. { name: "Mudbray" },
  21830. {
  21831. "Mudbray": {
  21832. height: math.unit("39", "inches"),
  21833. weight: math.unit("242.5", "lbs"),
  21834. name: "Mudbray",
  21835. image: {
  21836. source: "./media/pokemon/Mudbray.svg"
  21837. },
  21838. rename: true
  21839. }
  21840. },
  21841. [
  21842. {
  21843. name: "Micro",
  21844. height: math.unit(3.9, "inches")
  21845. },
  21846. {
  21847. name: "Normal",
  21848. height: math.unit(39, "inches"),
  21849. default: true
  21850. },
  21851. {
  21852. name: "Macro",
  21853. height: math.unit(3900.0, "inches")
  21854. },
  21855. {
  21856. name: "Megamacro",
  21857. height: math.unit(195000.0, "inches")
  21858. },
  21859. {
  21860. name: "Gigamacro",
  21861. height: math.unit(390000000.0, "inches")
  21862. }
  21863. ]
  21864. )
  21865. };
  21866. pokemonMakers["Mudkip"] = () => {
  21867. return makeCharacter(
  21868. { name: "Mudkip" },
  21869. {
  21870. "Mudkip": {
  21871. height: math.unit("16", "inches"),
  21872. weight: math.unit("16.8", "lbs"),
  21873. name: "Mudkip",
  21874. image: {
  21875. source: "./media/pokemon/Mudkip.svg"
  21876. },
  21877. rename: true
  21878. }
  21879. },
  21880. [
  21881. {
  21882. name: "Micro",
  21883. height: math.unit(1.6, "inches")
  21884. },
  21885. {
  21886. name: "Normal",
  21887. height: math.unit(16, "inches"),
  21888. default: true
  21889. },
  21890. {
  21891. name: "Macro",
  21892. height: math.unit(1600.0, "inches")
  21893. },
  21894. {
  21895. name: "Megamacro",
  21896. height: math.unit(80000.0, "inches")
  21897. },
  21898. {
  21899. name: "Gigamacro",
  21900. height: math.unit(160000000.0, "inches")
  21901. }
  21902. ]
  21903. )
  21904. };
  21905. pokemonMakers["Mudsdale"] = () => {
  21906. return makeCharacter(
  21907. { name: "Mudsdale" },
  21908. {
  21909. "Mudsdale": {
  21910. height: math.unit("98", "inches"),
  21911. weight: math.unit("2028.3", "lbs"),
  21912. name: "Mudsdale",
  21913. image: {
  21914. source: "./media/pokemon/Mudsdale.svg"
  21915. },
  21916. rename: true
  21917. }
  21918. },
  21919. [
  21920. {
  21921. name: "Micro",
  21922. height: math.unit(9.8, "inches")
  21923. },
  21924. {
  21925. name: "Normal",
  21926. height: math.unit(98, "inches"),
  21927. default: true
  21928. },
  21929. {
  21930. name: "Macro",
  21931. height: math.unit(9800.0, "inches")
  21932. },
  21933. {
  21934. name: "Megamacro",
  21935. height: math.unit(490000.0, "inches")
  21936. },
  21937. {
  21938. name: "Gigamacro",
  21939. height: math.unit(980000000.0, "inches")
  21940. }
  21941. ]
  21942. )
  21943. };
  21944. pokemonMakers["Muk"] = () => {
  21945. return makeCharacter(
  21946. { name: "Muk" },
  21947. {
  21948. "Alola Form": {
  21949. height: math.unit("39", "inches"),
  21950. weight: math.unit("114.6", "lbs"),
  21951. name: "Alola Form",
  21952. image: {
  21953. source: "./media/pokemon/Muk - Alola Form.svg"
  21954. },
  21955. rename: true
  21956. },
  21957. "Muk": {
  21958. height: math.unit("47", "inches"),
  21959. weight: math.unit("66.1", "lbs"),
  21960. name: "Muk",
  21961. image: {
  21962. source: "./media/pokemon/Muk.svg"
  21963. },
  21964. rename: true
  21965. }
  21966. },
  21967. [
  21968. {
  21969. name: "Micro",
  21970. height: math.unit(3.9, "inches")
  21971. },
  21972. {
  21973. name: "Normal",
  21974. height: math.unit(39, "inches"),
  21975. default: true
  21976. },
  21977. {
  21978. name: "Macro",
  21979. height: math.unit(3900.0, "inches")
  21980. },
  21981. {
  21982. name: "Megamacro",
  21983. height: math.unit(195000.0, "inches")
  21984. },
  21985. {
  21986. name: "Gigamacro",
  21987. height: math.unit(390000000.0, "inches")
  21988. }
  21989. ]
  21990. )
  21991. };
  21992. pokemonMakers["Munchlax"] = () => {
  21993. return makeCharacter(
  21994. { name: "Munchlax" },
  21995. {
  21996. "Munchlax": {
  21997. height: math.unit("24", "inches"),
  21998. weight: math.unit("231.5", "lbs"),
  21999. name: "Munchlax",
  22000. image: {
  22001. source: "./media/pokemon/Munchlax.svg"
  22002. },
  22003. rename: true
  22004. }
  22005. },
  22006. [
  22007. {
  22008. name: "Micro",
  22009. height: math.unit(2.4, "inches")
  22010. },
  22011. {
  22012. name: "Normal",
  22013. height: math.unit(24, "inches"),
  22014. default: true
  22015. },
  22016. {
  22017. name: "Macro",
  22018. height: math.unit(2400.0, "inches")
  22019. },
  22020. {
  22021. name: "Megamacro",
  22022. height: math.unit(120000.0, "inches")
  22023. },
  22024. {
  22025. name: "Gigamacro",
  22026. height: math.unit(240000000.0, "inches")
  22027. }
  22028. ]
  22029. )
  22030. };
  22031. pokemonMakers["Munna"] = () => {
  22032. return makeCharacter(
  22033. { name: "Munna" },
  22034. {
  22035. "Munna": {
  22036. height: math.unit("24", "inches"),
  22037. weight: math.unit("51.4", "lbs"),
  22038. name: "Munna",
  22039. image: {
  22040. source: "./media/pokemon/Munna.svg"
  22041. },
  22042. rename: true
  22043. }
  22044. },
  22045. [
  22046. {
  22047. name: "Micro",
  22048. height: math.unit(2.4, "inches")
  22049. },
  22050. {
  22051. name: "Normal",
  22052. height: math.unit(24, "inches"),
  22053. default: true
  22054. },
  22055. {
  22056. name: "Macro",
  22057. height: math.unit(2400.0, "inches")
  22058. },
  22059. {
  22060. name: "Megamacro",
  22061. height: math.unit(120000.0, "inches")
  22062. },
  22063. {
  22064. name: "Gigamacro",
  22065. height: math.unit(240000000.0, "inches")
  22066. }
  22067. ]
  22068. )
  22069. };
  22070. pokemonMakers["Murkrow"] = () => {
  22071. return makeCharacter(
  22072. { name: "Murkrow" },
  22073. {
  22074. "Murkrow": {
  22075. height: math.unit("20", "inches"),
  22076. weight: math.unit("4.6", "lbs"),
  22077. name: "Murkrow",
  22078. image: {
  22079. source: "./media/pokemon/Murkrow.svg"
  22080. },
  22081. rename: true
  22082. }
  22083. },
  22084. [
  22085. {
  22086. name: "Micro",
  22087. height: math.unit(2.0, "inches")
  22088. },
  22089. {
  22090. name: "Normal",
  22091. height: math.unit(20, "inches"),
  22092. default: true
  22093. },
  22094. {
  22095. name: "Macro",
  22096. height: math.unit(2000.0, "inches")
  22097. },
  22098. {
  22099. name: "Megamacro",
  22100. height: math.unit(100000.0, "inches")
  22101. },
  22102. {
  22103. name: "Gigamacro",
  22104. height: math.unit(200000000.0, "inches")
  22105. }
  22106. ]
  22107. )
  22108. };
  22109. pokemonMakers["Musharna"] = () => {
  22110. return makeCharacter(
  22111. { name: "Musharna" },
  22112. {
  22113. "Musharna": {
  22114. height: math.unit("43", "inches"),
  22115. weight: math.unit("133.4", "lbs"),
  22116. name: "Musharna",
  22117. image: {
  22118. source: "./media/pokemon/Musharna.svg"
  22119. },
  22120. rename: true
  22121. }
  22122. },
  22123. [
  22124. {
  22125. name: "Micro",
  22126. height: math.unit(4.3, "inches")
  22127. },
  22128. {
  22129. name: "Normal",
  22130. height: math.unit(43, "inches"),
  22131. default: true
  22132. },
  22133. {
  22134. name: "Macro",
  22135. height: math.unit(4300.0, "inches")
  22136. },
  22137. {
  22138. name: "Megamacro",
  22139. height: math.unit(215000.0, "inches")
  22140. },
  22141. {
  22142. name: "Gigamacro",
  22143. height: math.unit(430000000.0, "inches")
  22144. }
  22145. ]
  22146. )
  22147. };
  22148. pokemonMakers["Naganadel"] = () => {
  22149. return makeCharacter(
  22150. { name: "Naganadel" },
  22151. {
  22152. "Naganadel": {
  22153. height: math.unit("142", "inches"),
  22154. weight: math.unit("330.7", "lbs"),
  22155. name: "Naganadel",
  22156. image: {
  22157. source: "./media/pokemon/Naganadel.svg"
  22158. },
  22159. rename: true
  22160. }
  22161. },
  22162. [
  22163. {
  22164. name: "Micro",
  22165. height: math.unit(14.2, "inches")
  22166. },
  22167. {
  22168. name: "Normal",
  22169. height: math.unit(142, "inches"),
  22170. default: true
  22171. },
  22172. {
  22173. name: "Macro",
  22174. height: math.unit(14200.0, "inches")
  22175. },
  22176. {
  22177. name: "Megamacro",
  22178. height: math.unit(710000.0, "inches")
  22179. },
  22180. {
  22181. name: "Gigamacro",
  22182. height: math.unit(1420000000.0, "inches")
  22183. }
  22184. ]
  22185. )
  22186. };
  22187. pokemonMakers["Natu"] = () => {
  22188. return makeCharacter(
  22189. { name: "Natu" },
  22190. {
  22191. "Natu": {
  22192. height: math.unit("8", "inches"),
  22193. weight: math.unit("4.4", "lbs"),
  22194. name: "Natu",
  22195. image: {
  22196. source: "./media/pokemon/Natu.svg"
  22197. },
  22198. rename: true
  22199. }
  22200. },
  22201. [
  22202. {
  22203. name: "Micro",
  22204. height: math.unit(0.8, "inches")
  22205. },
  22206. {
  22207. name: "Normal",
  22208. height: math.unit(8, "inches"),
  22209. default: true
  22210. },
  22211. {
  22212. name: "Macro",
  22213. height: math.unit(800.0, "inches")
  22214. },
  22215. {
  22216. name: "Megamacro",
  22217. height: math.unit(40000.0, "inches")
  22218. },
  22219. {
  22220. name: "Gigamacro",
  22221. height: math.unit(80000000.0, "inches")
  22222. }
  22223. ]
  22224. )
  22225. };
  22226. pokemonMakers["Necrozma"] = () => {
  22227. return makeCharacter(
  22228. { name: "Necrozma" },
  22229. {
  22230. "Dawn Wings": {
  22231. height: math.unit("165", "inches"),
  22232. weight: math.unit("771.6", "lbs"),
  22233. name: "Dawn Wings",
  22234. image: {
  22235. source: "./media/pokemon/Necrozma - Dawn Wings.svg"
  22236. },
  22237. rename: true
  22238. },
  22239. "Dusk Mane": {
  22240. height: math.unit("150", "inches"),
  22241. weight: math.unit("1014.1", "lbs"),
  22242. name: "Dusk Mane",
  22243. image: {
  22244. source: "./media/pokemon/Necrozma - Dusk Mane.svg"
  22245. },
  22246. rename: true
  22247. },
  22248. "Necrozma": {
  22249. height: math.unit("94", "inches"),
  22250. weight: math.unit("507.1", "lbs"),
  22251. name: "Necrozma",
  22252. image: {
  22253. source: "./media/pokemon/Necrozma.svg"
  22254. },
  22255. rename: true
  22256. },
  22257. "Ultra Necrozma": {
  22258. height: math.unit("295", "inches"),
  22259. weight: math.unit("507.1", "lbs"),
  22260. name: "Ultra Necrozma",
  22261. image: {
  22262. source: "./media/pokemon/Ultra Necrozma.svg"
  22263. },
  22264. rename: true
  22265. }
  22266. },
  22267. [
  22268. {
  22269. name: "Micro",
  22270. height: math.unit(16.5, "inches")
  22271. },
  22272. {
  22273. name: "Normal",
  22274. height: math.unit(165, "inches"),
  22275. default: true
  22276. },
  22277. {
  22278. name: "Macro",
  22279. height: math.unit(16500.0, "inches")
  22280. },
  22281. {
  22282. name: "Megamacro",
  22283. height: math.unit(825000.0, "inches")
  22284. },
  22285. {
  22286. name: "Gigamacro",
  22287. height: math.unit(1650000000.0, "inches")
  22288. }
  22289. ]
  22290. )
  22291. };
  22292. pokemonMakers["Nickit"] = () => {
  22293. return makeCharacter(
  22294. { name: "Nickit" },
  22295. {
  22296. "Nickit": {
  22297. height: math.unit("24", "inches"),
  22298. weight: math.unit("19.6", "lbs"),
  22299. name: "Nickit",
  22300. image: {
  22301. source: "./media/pokemon/Nickit.svg"
  22302. },
  22303. rename: true
  22304. }
  22305. },
  22306. [
  22307. {
  22308. name: "Micro",
  22309. height: math.unit(2.4, "inches")
  22310. },
  22311. {
  22312. name: "Normal",
  22313. height: math.unit(24, "inches"),
  22314. default: true
  22315. },
  22316. {
  22317. name: "Macro",
  22318. height: math.unit(2400.0, "inches")
  22319. },
  22320. {
  22321. name: "Megamacro",
  22322. height: math.unit(120000.0, "inches")
  22323. },
  22324. {
  22325. name: "Gigamacro",
  22326. height: math.unit(240000000.0, "inches")
  22327. }
  22328. ]
  22329. )
  22330. };
  22331. pokemonMakers["Nidoking"] = () => {
  22332. return makeCharacter(
  22333. { name: "Nidoking" },
  22334. {
  22335. "Nidoking": {
  22336. height: math.unit("55", "inches"),
  22337. weight: math.unit("136.7", "lbs"),
  22338. name: "Nidoking",
  22339. image: {
  22340. source: "./media/pokemon/Nidoking.svg"
  22341. },
  22342. rename: true
  22343. }
  22344. },
  22345. [
  22346. {
  22347. name: "Micro",
  22348. height: math.unit(5.5, "inches")
  22349. },
  22350. {
  22351. name: "Normal",
  22352. height: math.unit(55, "inches"),
  22353. default: true
  22354. },
  22355. {
  22356. name: "Macro",
  22357. height: math.unit(5500.0, "inches")
  22358. },
  22359. {
  22360. name: "Megamacro",
  22361. height: math.unit(275000.0, "inches")
  22362. },
  22363. {
  22364. name: "Gigamacro",
  22365. height: math.unit(550000000.0, "inches")
  22366. }
  22367. ]
  22368. )
  22369. };
  22370. pokemonMakers["Nidoqueen"] = () => {
  22371. return makeCharacter(
  22372. { name: "Nidoqueen" },
  22373. {
  22374. "Nidoqueen": {
  22375. height: math.unit("51", "inches"),
  22376. weight: math.unit("132.3", "lbs"),
  22377. name: "Nidoqueen",
  22378. image: {
  22379. source: "./media/pokemon/Nidoqueen.svg"
  22380. },
  22381. rename: true
  22382. }
  22383. },
  22384. [
  22385. {
  22386. name: "Micro",
  22387. height: math.unit(5.1, "inches")
  22388. },
  22389. {
  22390. name: "Normal",
  22391. height: math.unit(51, "inches"),
  22392. default: true
  22393. },
  22394. {
  22395. name: "Macro",
  22396. height: math.unit(5100.0, "inches")
  22397. },
  22398. {
  22399. name: "Megamacro",
  22400. height: math.unit(255000.0, "inches")
  22401. },
  22402. {
  22403. name: "Gigamacro",
  22404. height: math.unit(510000000.0, "inches")
  22405. }
  22406. ]
  22407. )
  22408. };
  22409. pokemonMakers["Nidoran♀"] = () => {
  22410. return makeCharacter(
  22411. { name: "Nidoran♀" },
  22412. {
  22413. "Nidoran♀": {
  22414. height: math.unit("16", "inches"),
  22415. weight: math.unit("15.4", "lbs"),
  22416. name: "Nidoran♀",
  22417. image: {
  22418. source: "./media/pokemon/Nidoran♀.svg"
  22419. },
  22420. rename: true
  22421. }
  22422. },
  22423. [
  22424. {
  22425. name: "Micro",
  22426. height: math.unit(1.6, "inches")
  22427. },
  22428. {
  22429. name: "Normal",
  22430. height: math.unit(16, "inches"),
  22431. default: true
  22432. },
  22433. {
  22434. name: "Macro",
  22435. height: math.unit(1600.0, "inches")
  22436. },
  22437. {
  22438. name: "Megamacro",
  22439. height: math.unit(80000.0, "inches")
  22440. },
  22441. {
  22442. name: "Gigamacro",
  22443. height: math.unit(160000000.0, "inches")
  22444. }
  22445. ]
  22446. )
  22447. };
  22448. pokemonMakers["Nidoran♂"] = () => {
  22449. return makeCharacter(
  22450. { name: "Nidoran♂" },
  22451. {
  22452. "Nidoran♂": {
  22453. height: math.unit("20", "inches"),
  22454. weight: math.unit("19.8", "lbs"),
  22455. name: "Nidoran♂",
  22456. image: {
  22457. source: "./media/pokemon/Nidoran♂.svg"
  22458. },
  22459. rename: true
  22460. }
  22461. },
  22462. [
  22463. {
  22464. name: "Micro",
  22465. height: math.unit(2.0, "inches")
  22466. },
  22467. {
  22468. name: "Normal",
  22469. height: math.unit(20, "inches"),
  22470. default: true
  22471. },
  22472. {
  22473. name: "Macro",
  22474. height: math.unit(2000.0, "inches")
  22475. },
  22476. {
  22477. name: "Megamacro",
  22478. height: math.unit(100000.0, "inches")
  22479. },
  22480. {
  22481. name: "Gigamacro",
  22482. height: math.unit(200000000.0, "inches")
  22483. }
  22484. ]
  22485. )
  22486. };
  22487. pokemonMakers["Nidorina"] = () => {
  22488. return makeCharacter(
  22489. { name: "Nidorina" },
  22490. {
  22491. "Nidorina": {
  22492. height: math.unit("31", "inches"),
  22493. weight: math.unit("44.1", "lbs"),
  22494. name: "Nidorina",
  22495. image: {
  22496. source: "./media/pokemon/Nidorina.svg"
  22497. },
  22498. rename: true
  22499. }
  22500. },
  22501. [
  22502. {
  22503. name: "Micro",
  22504. height: math.unit(3.1, "inches")
  22505. },
  22506. {
  22507. name: "Normal",
  22508. height: math.unit(31, "inches"),
  22509. default: true
  22510. },
  22511. {
  22512. name: "Macro",
  22513. height: math.unit(3100.0, "inches")
  22514. },
  22515. {
  22516. name: "Megamacro",
  22517. height: math.unit(155000.0, "inches")
  22518. },
  22519. {
  22520. name: "Gigamacro",
  22521. height: math.unit(310000000.0, "inches")
  22522. }
  22523. ]
  22524. )
  22525. };
  22526. pokemonMakers["Nidorino"] = () => {
  22527. return makeCharacter(
  22528. { name: "Nidorino" },
  22529. {
  22530. "Nidorino": {
  22531. height: math.unit("35", "inches"),
  22532. weight: math.unit("43.0", "lbs"),
  22533. name: "Nidorino",
  22534. image: {
  22535. source: "./media/pokemon/Nidorino.svg"
  22536. },
  22537. rename: true
  22538. }
  22539. },
  22540. [
  22541. {
  22542. name: "Micro",
  22543. height: math.unit(3.5, "inches")
  22544. },
  22545. {
  22546. name: "Normal",
  22547. height: math.unit(35, "inches"),
  22548. default: true
  22549. },
  22550. {
  22551. name: "Macro",
  22552. height: math.unit(3500.0, "inches")
  22553. },
  22554. {
  22555. name: "Megamacro",
  22556. height: math.unit(175000.0, "inches")
  22557. },
  22558. {
  22559. name: "Gigamacro",
  22560. height: math.unit(350000000.0, "inches")
  22561. }
  22562. ]
  22563. )
  22564. };
  22565. pokemonMakers["Nihilego"] = () => {
  22566. return makeCharacter(
  22567. { name: "Nihilego" },
  22568. {
  22569. "Nihilego": {
  22570. height: math.unit("47", "inches"),
  22571. weight: math.unit("122.4", "lbs"),
  22572. name: "Nihilego",
  22573. image: {
  22574. source: "./media/pokemon/Nihilego.svg"
  22575. },
  22576. rename: true
  22577. }
  22578. },
  22579. [
  22580. {
  22581. name: "Micro",
  22582. height: math.unit(4.7, "inches")
  22583. },
  22584. {
  22585. name: "Normal",
  22586. height: math.unit(47, "inches"),
  22587. default: true
  22588. },
  22589. {
  22590. name: "Macro",
  22591. height: math.unit(4700.0, "inches")
  22592. },
  22593. {
  22594. name: "Megamacro",
  22595. height: math.unit(235000.0, "inches")
  22596. },
  22597. {
  22598. name: "Gigamacro",
  22599. height: math.unit(470000000.0, "inches")
  22600. }
  22601. ]
  22602. )
  22603. };
  22604. pokemonMakers["Nincada"] = () => {
  22605. return makeCharacter(
  22606. { name: "Nincada" },
  22607. {
  22608. "Nincada": {
  22609. height: math.unit("20", "inches"),
  22610. weight: math.unit("12.1", "lbs"),
  22611. name: "Nincada",
  22612. image: {
  22613. source: "./media/pokemon/Nincada.svg"
  22614. },
  22615. rename: true
  22616. }
  22617. },
  22618. [
  22619. {
  22620. name: "Micro",
  22621. height: math.unit(2.0, "inches")
  22622. },
  22623. {
  22624. name: "Normal",
  22625. height: math.unit(20, "inches"),
  22626. default: true
  22627. },
  22628. {
  22629. name: "Macro",
  22630. height: math.unit(2000.0, "inches")
  22631. },
  22632. {
  22633. name: "Megamacro",
  22634. height: math.unit(100000.0, "inches")
  22635. },
  22636. {
  22637. name: "Gigamacro",
  22638. height: math.unit(200000000.0, "inches")
  22639. }
  22640. ]
  22641. )
  22642. };
  22643. pokemonMakers["Ninetales"] = () => {
  22644. return makeCharacter(
  22645. { name: "Ninetales" },
  22646. {
  22647. "Alola Form": {
  22648. height: math.unit("43", "inches"),
  22649. weight: math.unit("43.9", "lbs"),
  22650. name: "Alola Form",
  22651. image: {
  22652. source: "./media/pokemon/Ninetales - Alola Form.svg"
  22653. },
  22654. rename: true
  22655. },
  22656. "Ninetales": {
  22657. height: math.unit("43", "inches"),
  22658. weight: math.unit("43.9", "lbs"),
  22659. name: "Ninetales",
  22660. image: {
  22661. source: "./media/pokemon/Ninetales.svg"
  22662. },
  22663. rename: true
  22664. }
  22665. },
  22666. [
  22667. {
  22668. name: "Micro",
  22669. height: math.unit(4.3, "inches")
  22670. },
  22671. {
  22672. name: "Normal",
  22673. height: math.unit(43, "inches"),
  22674. default: true
  22675. },
  22676. {
  22677. name: "Macro",
  22678. height: math.unit(4300.0, "inches")
  22679. },
  22680. {
  22681. name: "Megamacro",
  22682. height: math.unit(215000.0, "inches")
  22683. },
  22684. {
  22685. name: "Gigamacro",
  22686. height: math.unit(430000000.0, "inches")
  22687. }
  22688. ]
  22689. )
  22690. };
  22691. pokemonMakers["Ninjask"] = () => {
  22692. return makeCharacter(
  22693. { name: "Ninjask" },
  22694. {
  22695. "Ninjask": {
  22696. height: math.unit("31", "inches"),
  22697. weight: math.unit("26.5", "lbs"),
  22698. name: "Ninjask",
  22699. image: {
  22700. source: "./media/pokemon/Ninjask.svg"
  22701. },
  22702. rename: true
  22703. }
  22704. },
  22705. [
  22706. {
  22707. name: "Micro",
  22708. height: math.unit(3.1, "inches")
  22709. },
  22710. {
  22711. name: "Normal",
  22712. height: math.unit(31, "inches"),
  22713. default: true
  22714. },
  22715. {
  22716. name: "Macro",
  22717. height: math.unit(3100.0, "inches")
  22718. },
  22719. {
  22720. name: "Megamacro",
  22721. height: math.unit(155000.0, "inches")
  22722. },
  22723. {
  22724. name: "Gigamacro",
  22725. height: math.unit(310000000.0, "inches")
  22726. }
  22727. ]
  22728. )
  22729. };
  22730. pokemonMakers["Noctowl"] = () => {
  22731. return makeCharacter(
  22732. { name: "Noctowl" },
  22733. {
  22734. "Noctowl": {
  22735. height: math.unit("63", "inches"),
  22736. weight: math.unit("89.9", "lbs"),
  22737. name: "Noctowl",
  22738. image: {
  22739. source: "./media/pokemon/Noctowl.svg"
  22740. },
  22741. rename: true
  22742. }
  22743. },
  22744. [
  22745. {
  22746. name: "Micro",
  22747. height: math.unit(6.3, "inches")
  22748. },
  22749. {
  22750. name: "Normal",
  22751. height: math.unit(63, "inches"),
  22752. default: true
  22753. },
  22754. {
  22755. name: "Macro",
  22756. height: math.unit(6300.0, "inches")
  22757. },
  22758. {
  22759. name: "Megamacro",
  22760. height: math.unit(315000.0, "inches")
  22761. },
  22762. {
  22763. name: "Gigamacro",
  22764. height: math.unit(630000000.0, "inches")
  22765. }
  22766. ]
  22767. )
  22768. };
  22769. pokemonMakers["Noibat"] = () => {
  22770. return makeCharacter(
  22771. { name: "Noibat" },
  22772. {
  22773. "Noibat": {
  22774. height: math.unit("20", "inches"),
  22775. weight: math.unit("17.6", "lbs"),
  22776. name: "Noibat",
  22777. image: {
  22778. source: "./media/pokemon/Noibat.svg"
  22779. },
  22780. rename: true
  22781. }
  22782. },
  22783. [
  22784. {
  22785. name: "Micro",
  22786. height: math.unit(2.0, "inches")
  22787. },
  22788. {
  22789. name: "Normal",
  22790. height: math.unit(20, "inches"),
  22791. default: true
  22792. },
  22793. {
  22794. name: "Macro",
  22795. height: math.unit(2000.0, "inches")
  22796. },
  22797. {
  22798. name: "Megamacro",
  22799. height: math.unit(100000.0, "inches")
  22800. },
  22801. {
  22802. name: "Gigamacro",
  22803. height: math.unit(200000000.0, "inches")
  22804. }
  22805. ]
  22806. )
  22807. };
  22808. pokemonMakers["Noivern"] = () => {
  22809. return makeCharacter(
  22810. { name: "Noivern" },
  22811. {
  22812. "Noivern": {
  22813. height: math.unit("59", "inches"),
  22814. weight: math.unit("187.4", "lbs"),
  22815. name: "Noivern",
  22816. image: {
  22817. source: "./media/pokemon/Noivern.svg"
  22818. },
  22819. rename: true
  22820. }
  22821. },
  22822. [
  22823. {
  22824. name: "Micro",
  22825. height: math.unit(5.9, "inches")
  22826. },
  22827. {
  22828. name: "Normal",
  22829. height: math.unit(59, "inches"),
  22830. default: true
  22831. },
  22832. {
  22833. name: "Macro",
  22834. height: math.unit(5900.0, "inches")
  22835. },
  22836. {
  22837. name: "Megamacro",
  22838. height: math.unit(295000.0, "inches")
  22839. },
  22840. {
  22841. name: "Gigamacro",
  22842. height: math.unit(590000000.0, "inches")
  22843. }
  22844. ]
  22845. )
  22846. };
  22847. pokemonMakers["Nosepass"] = () => {
  22848. return makeCharacter(
  22849. { name: "Nosepass" },
  22850. {
  22851. "Nosepass": {
  22852. height: math.unit("39", "inches"),
  22853. weight: math.unit("213.8", "lbs"),
  22854. name: "Nosepass",
  22855. image: {
  22856. source: "./media/pokemon/Nosepass.svg"
  22857. },
  22858. rename: true
  22859. }
  22860. },
  22861. [
  22862. {
  22863. name: "Micro",
  22864. height: math.unit(3.9, "inches")
  22865. },
  22866. {
  22867. name: "Normal",
  22868. height: math.unit(39, "inches"),
  22869. default: true
  22870. },
  22871. {
  22872. name: "Macro",
  22873. height: math.unit(3900.0, "inches")
  22874. },
  22875. {
  22876. name: "Megamacro",
  22877. height: math.unit(195000.0, "inches")
  22878. },
  22879. {
  22880. name: "Gigamacro",
  22881. height: math.unit(390000000.0, "inches")
  22882. }
  22883. ]
  22884. )
  22885. };
  22886. pokemonMakers["Numel"] = () => {
  22887. return makeCharacter(
  22888. { name: "Numel" },
  22889. {
  22890. "Numel": {
  22891. height: math.unit("28", "inches"),
  22892. weight: math.unit("52.9", "lbs"),
  22893. name: "Numel",
  22894. image: {
  22895. source: "./media/pokemon/Numel.svg"
  22896. },
  22897. rename: true
  22898. }
  22899. },
  22900. [
  22901. {
  22902. name: "Micro",
  22903. height: math.unit(2.8, "inches")
  22904. },
  22905. {
  22906. name: "Normal",
  22907. height: math.unit(28, "inches"),
  22908. default: true
  22909. },
  22910. {
  22911. name: "Macro",
  22912. height: math.unit(2800.0, "inches")
  22913. },
  22914. {
  22915. name: "Megamacro",
  22916. height: math.unit(140000.0, "inches")
  22917. },
  22918. {
  22919. name: "Gigamacro",
  22920. height: math.unit(280000000.0, "inches")
  22921. }
  22922. ]
  22923. )
  22924. };
  22925. pokemonMakers["Nuzleaf"] = () => {
  22926. return makeCharacter(
  22927. { name: "Nuzleaf" },
  22928. {
  22929. "Nuzleaf": {
  22930. height: math.unit("39", "inches"),
  22931. weight: math.unit("61.7", "lbs"),
  22932. name: "Nuzleaf",
  22933. image: {
  22934. source: "./media/pokemon/Nuzleaf.svg"
  22935. },
  22936. rename: true
  22937. }
  22938. },
  22939. [
  22940. {
  22941. name: "Micro",
  22942. height: math.unit(3.9, "inches")
  22943. },
  22944. {
  22945. name: "Normal",
  22946. height: math.unit(39, "inches"),
  22947. default: true
  22948. },
  22949. {
  22950. name: "Macro",
  22951. height: math.unit(3900.0, "inches")
  22952. },
  22953. {
  22954. name: "Megamacro",
  22955. height: math.unit(195000.0, "inches")
  22956. },
  22957. {
  22958. name: "Gigamacro",
  22959. height: math.unit(390000000.0, "inches")
  22960. }
  22961. ]
  22962. )
  22963. };
  22964. pokemonMakers["Obstagoon"] = () => {
  22965. return makeCharacter(
  22966. { name: "Obstagoon" },
  22967. {
  22968. "Obstagoon": {
  22969. height: math.unit("63", "inches"),
  22970. weight: math.unit("101.4", "lbs"),
  22971. name: "Obstagoon",
  22972. image: {
  22973. source: "./media/pokemon/Obstagoon.svg"
  22974. },
  22975. rename: true
  22976. }
  22977. },
  22978. [
  22979. {
  22980. name: "Micro",
  22981. height: math.unit(6.3, "inches")
  22982. },
  22983. {
  22984. name: "Normal",
  22985. height: math.unit(63, "inches"),
  22986. default: true
  22987. },
  22988. {
  22989. name: "Macro",
  22990. height: math.unit(6300.0, "inches")
  22991. },
  22992. {
  22993. name: "Megamacro",
  22994. height: math.unit(315000.0, "inches")
  22995. },
  22996. {
  22997. name: "Gigamacro",
  22998. height: math.unit(630000000.0, "inches")
  22999. }
  23000. ]
  23001. )
  23002. };
  23003. pokemonMakers["Octillery"] = () => {
  23004. return makeCharacter(
  23005. { name: "Octillery" },
  23006. {
  23007. "Octillery": {
  23008. height: math.unit("35", "inches"),
  23009. weight: math.unit("62.8", "lbs"),
  23010. name: "Octillery",
  23011. image: {
  23012. source: "./media/pokemon/Octillery.svg"
  23013. },
  23014. rename: true
  23015. }
  23016. },
  23017. [
  23018. {
  23019. name: "Micro",
  23020. height: math.unit(3.5, "inches")
  23021. },
  23022. {
  23023. name: "Normal",
  23024. height: math.unit(35, "inches"),
  23025. default: true
  23026. },
  23027. {
  23028. name: "Macro",
  23029. height: math.unit(3500.0, "inches")
  23030. },
  23031. {
  23032. name: "Megamacro",
  23033. height: math.unit(175000.0, "inches")
  23034. },
  23035. {
  23036. name: "Gigamacro",
  23037. height: math.unit(350000000.0, "inches")
  23038. }
  23039. ]
  23040. )
  23041. };
  23042. pokemonMakers["Oddish"] = () => {
  23043. return makeCharacter(
  23044. { name: "Oddish" },
  23045. {
  23046. "Oddish": {
  23047. height: math.unit("20", "inches"),
  23048. weight: math.unit("11.9", "lbs"),
  23049. name: "Oddish",
  23050. image: {
  23051. source: "./media/pokemon/Oddish.svg"
  23052. },
  23053. rename: true
  23054. }
  23055. },
  23056. [
  23057. {
  23058. name: "Micro",
  23059. height: math.unit(2.0, "inches")
  23060. },
  23061. {
  23062. name: "Normal",
  23063. height: math.unit(20, "inches"),
  23064. default: true
  23065. },
  23066. {
  23067. name: "Macro",
  23068. height: math.unit(2000.0, "inches")
  23069. },
  23070. {
  23071. name: "Megamacro",
  23072. height: math.unit(100000.0, "inches")
  23073. },
  23074. {
  23075. name: "Gigamacro",
  23076. height: math.unit(200000000.0, "inches")
  23077. }
  23078. ]
  23079. )
  23080. };
  23081. pokemonMakers["Omanyte"] = () => {
  23082. return makeCharacter(
  23083. { name: "Omanyte" },
  23084. {
  23085. "Omanyte": {
  23086. height: math.unit("16", "inches"),
  23087. weight: math.unit("16.5", "lbs"),
  23088. name: "Omanyte",
  23089. image: {
  23090. source: "./media/pokemon/Omanyte.svg"
  23091. },
  23092. rename: true
  23093. }
  23094. },
  23095. [
  23096. {
  23097. name: "Micro",
  23098. height: math.unit(1.6, "inches")
  23099. },
  23100. {
  23101. name: "Normal",
  23102. height: math.unit(16, "inches"),
  23103. default: true
  23104. },
  23105. {
  23106. name: "Macro",
  23107. height: math.unit(1600.0, "inches")
  23108. },
  23109. {
  23110. name: "Megamacro",
  23111. height: math.unit(80000.0, "inches")
  23112. },
  23113. {
  23114. name: "Gigamacro",
  23115. height: math.unit(160000000.0, "inches")
  23116. }
  23117. ]
  23118. )
  23119. };
  23120. pokemonMakers["Omastar"] = () => {
  23121. return makeCharacter(
  23122. { name: "Omastar" },
  23123. {
  23124. "Omastar": {
  23125. height: math.unit("39", "inches"),
  23126. weight: math.unit("77.2", "lbs"),
  23127. name: "Omastar",
  23128. image: {
  23129. source: "./media/pokemon/Omastar.svg"
  23130. },
  23131. rename: true
  23132. }
  23133. },
  23134. [
  23135. {
  23136. name: "Micro",
  23137. height: math.unit(3.9, "inches")
  23138. },
  23139. {
  23140. name: "Normal",
  23141. height: math.unit(39, "inches"),
  23142. default: true
  23143. },
  23144. {
  23145. name: "Macro",
  23146. height: math.unit(3900.0, "inches")
  23147. },
  23148. {
  23149. name: "Megamacro",
  23150. height: math.unit(195000.0, "inches")
  23151. },
  23152. {
  23153. name: "Gigamacro",
  23154. height: math.unit(390000000.0, "inches")
  23155. }
  23156. ]
  23157. )
  23158. };
  23159. pokemonMakers["Onix"] = () => {
  23160. return makeCharacter(
  23161. { name: "Onix" },
  23162. {
  23163. "Onix": {
  23164. height: math.unit("346", "inches"),
  23165. weight: math.unit("463.0", "lbs"),
  23166. name: "Onix",
  23167. image: {
  23168. source: "./media/pokemon/Onix.svg"
  23169. },
  23170. rename: true
  23171. }
  23172. },
  23173. [
  23174. {
  23175. name: "Micro",
  23176. height: math.unit(34.6, "inches")
  23177. },
  23178. {
  23179. name: "Normal",
  23180. height: math.unit(346, "inches"),
  23181. default: true
  23182. },
  23183. {
  23184. name: "Macro",
  23185. height: math.unit(34600.0, "inches")
  23186. },
  23187. {
  23188. name: "Megamacro",
  23189. height: math.unit(1730000.0, "inches")
  23190. },
  23191. {
  23192. name: "Gigamacro",
  23193. height: math.unit(3460000000.0, "inches")
  23194. }
  23195. ]
  23196. )
  23197. };
  23198. pokemonMakers["Oranguru"] = () => {
  23199. return makeCharacter(
  23200. { name: "Oranguru" },
  23201. {
  23202. "Oranguru": {
  23203. height: math.unit("59", "inches"),
  23204. weight: math.unit("167.6", "lbs"),
  23205. name: "Oranguru",
  23206. image: {
  23207. source: "./media/pokemon/Oranguru.svg"
  23208. },
  23209. rename: true
  23210. }
  23211. },
  23212. [
  23213. {
  23214. name: "Micro",
  23215. height: math.unit(5.9, "inches")
  23216. },
  23217. {
  23218. name: "Normal",
  23219. height: math.unit(59, "inches"),
  23220. default: true
  23221. },
  23222. {
  23223. name: "Macro",
  23224. height: math.unit(5900.0, "inches")
  23225. },
  23226. {
  23227. name: "Megamacro",
  23228. height: math.unit(295000.0, "inches")
  23229. },
  23230. {
  23231. name: "Gigamacro",
  23232. height: math.unit(590000000.0, "inches")
  23233. }
  23234. ]
  23235. )
  23236. };
  23237. pokemonMakers["Oricorio"] = () => {
  23238. return makeCharacter(
  23239. { name: "Oricorio" },
  23240. {
  23241. "Baile Style": {
  23242. height: math.unit("24", "inches"),
  23243. weight: math.unit("7.5", "lbs"),
  23244. name: "Baile Style",
  23245. image: {
  23246. source: "./media/pokemon/Oricorio - Baile Style.svg"
  23247. },
  23248. rename: true
  23249. },
  23250. "Pa'u Style": {
  23251. height: math.unit("24", "inches"),
  23252. weight: math.unit("7.5", "lbs"),
  23253. name: "Pa'u Style",
  23254. image: {
  23255. source: "./media/pokemon/Oricorio - Pa'u Style.svg"
  23256. },
  23257. rename: true
  23258. },
  23259. "Pom-Pom Style": {
  23260. height: math.unit("24", "inches"),
  23261. weight: math.unit("7.5", "lbs"),
  23262. name: "Pom-Pom Style",
  23263. image: {
  23264. source: "./media/pokemon/Oricorio - Pom-Pom Style.svg"
  23265. },
  23266. rename: true
  23267. },
  23268. "Sensu Style": {
  23269. height: math.unit("24", "inches"),
  23270. weight: math.unit("7.5", "lbs"),
  23271. name: "Sensu Style",
  23272. image: {
  23273. source: "./media/pokemon/Oricorio - Sensu Style.svg"
  23274. },
  23275. rename: true
  23276. }
  23277. },
  23278. [
  23279. {
  23280. name: "Micro",
  23281. height: math.unit(2.4, "inches")
  23282. },
  23283. {
  23284. name: "Normal",
  23285. height: math.unit(24, "inches"),
  23286. default: true
  23287. },
  23288. {
  23289. name: "Macro",
  23290. height: math.unit(2400.0, "inches")
  23291. },
  23292. {
  23293. name: "Megamacro",
  23294. height: math.unit(120000.0, "inches")
  23295. },
  23296. {
  23297. name: "Gigamacro",
  23298. height: math.unit(240000000.0, "inches")
  23299. }
  23300. ]
  23301. )
  23302. };
  23303. pokemonMakers["Oshawott"] = () => {
  23304. return makeCharacter(
  23305. { name: "Oshawott" },
  23306. {
  23307. "Oshawott": {
  23308. height: math.unit("20", "inches"),
  23309. weight: math.unit("13.0", "lbs"),
  23310. name: "Oshawott",
  23311. image: {
  23312. source: "./media/pokemon/Oshawott.svg"
  23313. },
  23314. rename: true
  23315. }
  23316. },
  23317. [
  23318. {
  23319. name: "Micro",
  23320. height: math.unit(2.0, "inches")
  23321. },
  23322. {
  23323. name: "Normal",
  23324. height: math.unit(20, "inches"),
  23325. default: true
  23326. },
  23327. {
  23328. name: "Macro",
  23329. height: math.unit(2000.0, "inches")
  23330. },
  23331. {
  23332. name: "Megamacro",
  23333. height: math.unit(100000.0, "inches")
  23334. },
  23335. {
  23336. name: "Gigamacro",
  23337. height: math.unit(200000000.0, "inches")
  23338. }
  23339. ]
  23340. )
  23341. };
  23342. pokemonMakers["Pachirisu"] = () => {
  23343. return makeCharacter(
  23344. { name: "Pachirisu" },
  23345. {
  23346. "Pachirisu": {
  23347. height: math.unit("16", "inches"),
  23348. weight: math.unit("8.6", "lbs"),
  23349. name: "Pachirisu",
  23350. image: {
  23351. source: "./media/pokemon/Pachirisu.svg"
  23352. },
  23353. rename: true
  23354. }
  23355. },
  23356. [
  23357. {
  23358. name: "Micro",
  23359. height: math.unit(1.6, "inches")
  23360. },
  23361. {
  23362. name: "Normal",
  23363. height: math.unit(16, "inches"),
  23364. default: true
  23365. },
  23366. {
  23367. name: "Macro",
  23368. height: math.unit(1600.0, "inches")
  23369. },
  23370. {
  23371. name: "Megamacro",
  23372. height: math.unit(80000.0, "inches")
  23373. },
  23374. {
  23375. name: "Gigamacro",
  23376. height: math.unit(160000000.0, "inches")
  23377. }
  23378. ]
  23379. )
  23380. };
  23381. pokemonMakers["Palkia"] = () => {
  23382. return makeCharacter(
  23383. { name: "Palkia" },
  23384. {
  23385. "Palkia": {
  23386. height: math.unit("165", "inches"),
  23387. weight: math.unit("740.8", "lbs"),
  23388. name: "Palkia",
  23389. image: {
  23390. source: "./media/pokemon/Palkia.svg"
  23391. },
  23392. rename: true
  23393. }
  23394. },
  23395. [
  23396. {
  23397. name: "Micro",
  23398. height: math.unit(16.5, "inches")
  23399. },
  23400. {
  23401. name: "Normal",
  23402. height: math.unit(165, "inches"),
  23403. default: true
  23404. },
  23405. {
  23406. name: "Macro",
  23407. height: math.unit(16500.0, "inches")
  23408. },
  23409. {
  23410. name: "Megamacro",
  23411. height: math.unit(825000.0, "inches")
  23412. },
  23413. {
  23414. name: "Gigamacro",
  23415. height: math.unit(1650000000.0, "inches")
  23416. }
  23417. ]
  23418. )
  23419. };
  23420. pokemonMakers["Palossand"] = () => {
  23421. return makeCharacter(
  23422. { name: "Palossand" },
  23423. {
  23424. "Palossand": {
  23425. height: math.unit("51", "inches"),
  23426. weight: math.unit("551.2", "lbs"),
  23427. name: "Palossand",
  23428. image: {
  23429. source: "./media/pokemon/Palossand.svg"
  23430. },
  23431. rename: true
  23432. }
  23433. },
  23434. [
  23435. {
  23436. name: "Micro",
  23437. height: math.unit(5.1, "inches")
  23438. },
  23439. {
  23440. name: "Normal",
  23441. height: math.unit(51, "inches"),
  23442. default: true
  23443. },
  23444. {
  23445. name: "Macro",
  23446. height: math.unit(5100.0, "inches")
  23447. },
  23448. {
  23449. name: "Megamacro",
  23450. height: math.unit(255000.0, "inches")
  23451. },
  23452. {
  23453. name: "Gigamacro",
  23454. height: math.unit(510000000.0, "inches")
  23455. }
  23456. ]
  23457. )
  23458. };
  23459. pokemonMakers["Palpitoad"] = () => {
  23460. return makeCharacter(
  23461. { name: "Palpitoad" },
  23462. {
  23463. "Palpitoad": {
  23464. height: math.unit("31", "inches"),
  23465. weight: math.unit("37.5", "lbs"),
  23466. name: "Palpitoad",
  23467. image: {
  23468. source: "./media/pokemon/Palpitoad.svg"
  23469. },
  23470. rename: true
  23471. }
  23472. },
  23473. [
  23474. {
  23475. name: "Micro",
  23476. height: math.unit(3.1, "inches")
  23477. },
  23478. {
  23479. name: "Normal",
  23480. height: math.unit(31, "inches"),
  23481. default: true
  23482. },
  23483. {
  23484. name: "Macro",
  23485. height: math.unit(3100.0, "inches")
  23486. },
  23487. {
  23488. name: "Megamacro",
  23489. height: math.unit(155000.0, "inches")
  23490. },
  23491. {
  23492. name: "Gigamacro",
  23493. height: math.unit(310000000.0, "inches")
  23494. }
  23495. ]
  23496. )
  23497. };
  23498. pokemonMakers["Pancham"] = () => {
  23499. return makeCharacter(
  23500. { name: "Pancham" },
  23501. {
  23502. "Pancham": {
  23503. height: math.unit("24", "inches"),
  23504. weight: math.unit("17.6", "lbs"),
  23505. name: "Pancham",
  23506. image: {
  23507. source: "./media/pokemon/Pancham.svg"
  23508. },
  23509. rename: true
  23510. }
  23511. },
  23512. [
  23513. {
  23514. name: "Micro",
  23515. height: math.unit(2.4, "inches")
  23516. },
  23517. {
  23518. name: "Normal",
  23519. height: math.unit(24, "inches"),
  23520. default: true
  23521. },
  23522. {
  23523. name: "Macro",
  23524. height: math.unit(2400.0, "inches")
  23525. },
  23526. {
  23527. name: "Megamacro",
  23528. height: math.unit(120000.0, "inches")
  23529. },
  23530. {
  23531. name: "Gigamacro",
  23532. height: math.unit(240000000.0, "inches")
  23533. }
  23534. ]
  23535. )
  23536. };
  23537. pokemonMakers["Pangoro"] = () => {
  23538. return makeCharacter(
  23539. { name: "Pangoro" },
  23540. {
  23541. "Pangoro": {
  23542. height: math.unit("83", "inches"),
  23543. weight: math.unit("299.8", "lbs"),
  23544. name: "Pangoro",
  23545. image: {
  23546. source: "./media/pokemon/Pangoro.svg"
  23547. },
  23548. rename: true
  23549. }
  23550. },
  23551. [
  23552. {
  23553. name: "Micro",
  23554. height: math.unit(8.3, "inches")
  23555. },
  23556. {
  23557. name: "Normal",
  23558. height: math.unit(83, "inches"),
  23559. default: true
  23560. },
  23561. {
  23562. name: "Macro",
  23563. height: math.unit(8300.0, "inches")
  23564. },
  23565. {
  23566. name: "Megamacro",
  23567. height: math.unit(415000.0, "inches")
  23568. },
  23569. {
  23570. name: "Gigamacro",
  23571. height: math.unit(830000000.0, "inches")
  23572. }
  23573. ]
  23574. )
  23575. };
  23576. pokemonMakers["Panpour"] = () => {
  23577. return makeCharacter(
  23578. { name: "Panpour" },
  23579. {
  23580. "Panpour": {
  23581. height: math.unit("24", "inches"),
  23582. weight: math.unit("29.8", "lbs"),
  23583. name: "Panpour",
  23584. image: {
  23585. source: "./media/pokemon/Panpour.svg"
  23586. },
  23587. rename: true
  23588. }
  23589. },
  23590. [
  23591. {
  23592. name: "Micro",
  23593. height: math.unit(2.4, "inches")
  23594. },
  23595. {
  23596. name: "Normal",
  23597. height: math.unit(24, "inches"),
  23598. default: true
  23599. },
  23600. {
  23601. name: "Macro",
  23602. height: math.unit(2400.0, "inches")
  23603. },
  23604. {
  23605. name: "Megamacro",
  23606. height: math.unit(120000.0, "inches")
  23607. },
  23608. {
  23609. name: "Gigamacro",
  23610. height: math.unit(240000000.0, "inches")
  23611. }
  23612. ]
  23613. )
  23614. };
  23615. pokemonMakers["Pansage"] = () => {
  23616. return makeCharacter(
  23617. { name: "Pansage" },
  23618. {
  23619. "Pansage": {
  23620. height: math.unit("24", "inches"),
  23621. weight: math.unit("23.1", "lbs"),
  23622. name: "Pansage",
  23623. image: {
  23624. source: "./media/pokemon/Pansage.svg"
  23625. },
  23626. rename: true
  23627. }
  23628. },
  23629. [
  23630. {
  23631. name: "Micro",
  23632. height: math.unit(2.4, "inches")
  23633. },
  23634. {
  23635. name: "Normal",
  23636. height: math.unit(24, "inches"),
  23637. default: true
  23638. },
  23639. {
  23640. name: "Macro",
  23641. height: math.unit(2400.0, "inches")
  23642. },
  23643. {
  23644. name: "Megamacro",
  23645. height: math.unit(120000.0, "inches")
  23646. },
  23647. {
  23648. name: "Gigamacro",
  23649. height: math.unit(240000000.0, "inches")
  23650. }
  23651. ]
  23652. )
  23653. };
  23654. pokemonMakers["Pansear"] = () => {
  23655. return makeCharacter(
  23656. { name: "Pansear" },
  23657. {
  23658. "Pansear": {
  23659. height: math.unit("24", "inches"),
  23660. weight: math.unit("24.3", "lbs"),
  23661. name: "Pansear",
  23662. image: {
  23663. source: "./media/pokemon/Pansear.svg"
  23664. },
  23665. rename: true
  23666. }
  23667. },
  23668. [
  23669. {
  23670. name: "Micro",
  23671. height: math.unit(2.4, "inches")
  23672. },
  23673. {
  23674. name: "Normal",
  23675. height: math.unit(24, "inches"),
  23676. default: true
  23677. },
  23678. {
  23679. name: "Macro",
  23680. height: math.unit(2400.0, "inches")
  23681. },
  23682. {
  23683. name: "Megamacro",
  23684. height: math.unit(120000.0, "inches")
  23685. },
  23686. {
  23687. name: "Gigamacro",
  23688. height: math.unit(240000000.0, "inches")
  23689. }
  23690. ]
  23691. )
  23692. };
  23693. pokemonMakers["Paras"] = () => {
  23694. return makeCharacter(
  23695. { name: "Paras" },
  23696. {
  23697. "Paras": {
  23698. height: math.unit("12", "inches"),
  23699. weight: math.unit("11.9", "lbs"),
  23700. name: "Paras",
  23701. image: {
  23702. source: "./media/pokemon/Paras.svg"
  23703. },
  23704. rename: true
  23705. }
  23706. },
  23707. [
  23708. {
  23709. name: "Micro",
  23710. height: math.unit(1.2, "inches")
  23711. },
  23712. {
  23713. name: "Normal",
  23714. height: math.unit(12, "inches"),
  23715. default: true
  23716. },
  23717. {
  23718. name: "Macro",
  23719. height: math.unit(1200.0, "inches")
  23720. },
  23721. {
  23722. name: "Megamacro",
  23723. height: math.unit(60000.0, "inches")
  23724. },
  23725. {
  23726. name: "Gigamacro",
  23727. height: math.unit(120000000.0, "inches")
  23728. }
  23729. ]
  23730. )
  23731. };
  23732. pokemonMakers["Parasect"] = () => {
  23733. return makeCharacter(
  23734. { name: "Parasect" },
  23735. {
  23736. "Parasect": {
  23737. height: math.unit("39", "inches"),
  23738. weight: math.unit("65.0", "lbs"),
  23739. name: "Parasect",
  23740. image: {
  23741. source: "./media/pokemon/Parasect.svg"
  23742. },
  23743. rename: true
  23744. }
  23745. },
  23746. [
  23747. {
  23748. name: "Micro",
  23749. height: math.unit(3.9, "inches")
  23750. },
  23751. {
  23752. name: "Normal",
  23753. height: math.unit(39, "inches"),
  23754. default: true
  23755. },
  23756. {
  23757. name: "Macro",
  23758. height: math.unit(3900.0, "inches")
  23759. },
  23760. {
  23761. name: "Megamacro",
  23762. height: math.unit(195000.0, "inches")
  23763. },
  23764. {
  23765. name: "Gigamacro",
  23766. height: math.unit(390000000.0, "inches")
  23767. }
  23768. ]
  23769. )
  23770. };
  23771. pokemonMakers["Passimian"] = () => {
  23772. return makeCharacter(
  23773. { name: "Passimian" },
  23774. {
  23775. "Passimian": {
  23776. height: math.unit("79", "inches"),
  23777. weight: math.unit("182.5", "lbs"),
  23778. name: "Passimian",
  23779. image: {
  23780. source: "./media/pokemon/Passimian.svg"
  23781. },
  23782. rename: true
  23783. }
  23784. },
  23785. [
  23786. {
  23787. name: "Micro",
  23788. height: math.unit(7.9, "inches")
  23789. },
  23790. {
  23791. name: "Normal",
  23792. height: math.unit(79, "inches"),
  23793. default: true
  23794. },
  23795. {
  23796. name: "Macro",
  23797. height: math.unit(7900.0, "inches")
  23798. },
  23799. {
  23800. name: "Megamacro",
  23801. height: math.unit(395000.0, "inches")
  23802. },
  23803. {
  23804. name: "Gigamacro",
  23805. height: math.unit(790000000.0, "inches")
  23806. }
  23807. ]
  23808. )
  23809. };
  23810. pokemonMakers["Patrat"] = () => {
  23811. return makeCharacter(
  23812. { name: "Patrat" },
  23813. {
  23814. "Patrat": {
  23815. height: math.unit("20", "inches"),
  23816. weight: math.unit("25.6", "lbs"),
  23817. name: "Patrat",
  23818. image: {
  23819. source: "./media/pokemon/Patrat.svg"
  23820. },
  23821. rename: true
  23822. }
  23823. },
  23824. [
  23825. {
  23826. name: "Micro",
  23827. height: math.unit(2.0, "inches")
  23828. },
  23829. {
  23830. name: "Normal",
  23831. height: math.unit(20, "inches"),
  23832. default: true
  23833. },
  23834. {
  23835. name: "Macro",
  23836. height: math.unit(2000.0, "inches")
  23837. },
  23838. {
  23839. name: "Megamacro",
  23840. height: math.unit(100000.0, "inches")
  23841. },
  23842. {
  23843. name: "Gigamacro",
  23844. height: math.unit(200000000.0, "inches")
  23845. }
  23846. ]
  23847. )
  23848. };
  23849. pokemonMakers["Pawniard"] = () => {
  23850. return makeCharacter(
  23851. { name: "Pawniard" },
  23852. {
  23853. "Pawniard": {
  23854. height: math.unit("20", "inches"),
  23855. weight: math.unit("22.5", "lbs"),
  23856. name: "Pawniard",
  23857. image: {
  23858. source: "./media/pokemon/Pawniard.svg"
  23859. },
  23860. rename: true
  23861. }
  23862. },
  23863. [
  23864. {
  23865. name: "Micro",
  23866. height: math.unit(2.0, "inches")
  23867. },
  23868. {
  23869. name: "Normal",
  23870. height: math.unit(20, "inches"),
  23871. default: true
  23872. },
  23873. {
  23874. name: "Macro",
  23875. height: math.unit(2000.0, "inches")
  23876. },
  23877. {
  23878. name: "Megamacro",
  23879. height: math.unit(100000.0, "inches")
  23880. },
  23881. {
  23882. name: "Gigamacro",
  23883. height: math.unit(200000000.0, "inches")
  23884. }
  23885. ]
  23886. )
  23887. };
  23888. pokemonMakers["Pelipper"] = () => {
  23889. return makeCharacter(
  23890. { name: "Pelipper" },
  23891. {
  23892. "Pelipper": {
  23893. height: math.unit("47", "inches"),
  23894. weight: math.unit("61.7", "lbs"),
  23895. name: "Pelipper",
  23896. image: {
  23897. source: "./media/pokemon/Pelipper.svg"
  23898. },
  23899. rename: true
  23900. }
  23901. },
  23902. [
  23903. {
  23904. name: "Micro",
  23905. height: math.unit(4.7, "inches")
  23906. },
  23907. {
  23908. name: "Normal",
  23909. height: math.unit(47, "inches"),
  23910. default: true
  23911. },
  23912. {
  23913. name: "Macro",
  23914. height: math.unit(4700.0, "inches")
  23915. },
  23916. {
  23917. name: "Megamacro",
  23918. height: math.unit(235000.0, "inches")
  23919. },
  23920. {
  23921. name: "Gigamacro",
  23922. height: math.unit(470000000.0, "inches")
  23923. }
  23924. ]
  23925. )
  23926. };
  23927. pokemonMakers["Perrserker"] = () => {
  23928. return makeCharacter(
  23929. { name: "Perrserker" },
  23930. {
  23931. "Perrserker": {
  23932. height: math.unit("31", "inches"),
  23933. weight: math.unit("61.7", "lbs"),
  23934. name: "Perrserker",
  23935. image: {
  23936. source: "./media/pokemon/Perrserker.svg"
  23937. },
  23938. rename: true
  23939. }
  23940. },
  23941. [
  23942. {
  23943. name: "Micro",
  23944. height: math.unit(3.1, "inches")
  23945. },
  23946. {
  23947. name: "Normal",
  23948. height: math.unit(31, "inches"),
  23949. default: true
  23950. },
  23951. {
  23952. name: "Macro",
  23953. height: math.unit(3100.0, "inches")
  23954. },
  23955. {
  23956. name: "Megamacro",
  23957. height: math.unit(155000.0, "inches")
  23958. },
  23959. {
  23960. name: "Gigamacro",
  23961. height: math.unit(310000000.0, "inches")
  23962. }
  23963. ]
  23964. )
  23965. };
  23966. pokemonMakers["Persian"] = () => {
  23967. return makeCharacter(
  23968. { name: "Persian" },
  23969. {
  23970. "Alola Form": {
  23971. height: math.unit("43", "inches"),
  23972. weight: math.unit("72.8", "lbs"),
  23973. name: "Alola Form",
  23974. image: {
  23975. source: "./media/pokemon/Persian - Alola Form.svg"
  23976. },
  23977. rename: true
  23978. },
  23979. "Persian": {
  23980. height: math.unit("39", "inches"),
  23981. weight: math.unit("70.5", "lbs"),
  23982. name: "Persian",
  23983. image: {
  23984. source: "./media/pokemon/Persian.svg"
  23985. },
  23986. rename: true
  23987. }
  23988. },
  23989. [
  23990. {
  23991. name: "Micro",
  23992. height: math.unit(4.3, "inches")
  23993. },
  23994. {
  23995. name: "Normal",
  23996. height: math.unit(43, "inches"),
  23997. default: true
  23998. },
  23999. {
  24000. name: "Macro",
  24001. height: math.unit(4300.0, "inches")
  24002. },
  24003. {
  24004. name: "Megamacro",
  24005. height: math.unit(215000.0, "inches")
  24006. },
  24007. {
  24008. name: "Gigamacro",
  24009. height: math.unit(430000000.0, "inches")
  24010. }
  24011. ]
  24012. )
  24013. };
  24014. pokemonMakers["Petilil"] = () => {
  24015. return makeCharacter(
  24016. { name: "Petilil" },
  24017. {
  24018. "Petilil": {
  24019. height: math.unit("20", "inches"),
  24020. weight: math.unit("14.6", "lbs"),
  24021. name: "Petilil",
  24022. image: {
  24023. source: "./media/pokemon/Petilil.svg"
  24024. },
  24025. rename: true
  24026. }
  24027. },
  24028. [
  24029. {
  24030. name: "Micro",
  24031. height: math.unit(2.0, "inches")
  24032. },
  24033. {
  24034. name: "Normal",
  24035. height: math.unit(20, "inches"),
  24036. default: true
  24037. },
  24038. {
  24039. name: "Macro",
  24040. height: math.unit(2000.0, "inches")
  24041. },
  24042. {
  24043. name: "Megamacro",
  24044. height: math.unit(100000.0, "inches")
  24045. },
  24046. {
  24047. name: "Gigamacro",
  24048. height: math.unit(200000000.0, "inches")
  24049. }
  24050. ]
  24051. )
  24052. };
  24053. pokemonMakers["Phanpy"] = () => {
  24054. return makeCharacter(
  24055. { name: "Phanpy" },
  24056. {
  24057. "Phanpy": {
  24058. height: math.unit("20", "inches"),
  24059. weight: math.unit("73.9", "lbs"),
  24060. name: "Phanpy",
  24061. image: {
  24062. source: "./media/pokemon/Phanpy.svg"
  24063. },
  24064. rename: true
  24065. }
  24066. },
  24067. [
  24068. {
  24069. name: "Micro",
  24070. height: math.unit(2.0, "inches")
  24071. },
  24072. {
  24073. name: "Normal",
  24074. height: math.unit(20, "inches"),
  24075. default: true
  24076. },
  24077. {
  24078. name: "Macro",
  24079. height: math.unit(2000.0, "inches")
  24080. },
  24081. {
  24082. name: "Megamacro",
  24083. height: math.unit(100000.0, "inches")
  24084. },
  24085. {
  24086. name: "Gigamacro",
  24087. height: math.unit(200000000.0, "inches")
  24088. }
  24089. ]
  24090. )
  24091. };
  24092. pokemonMakers["Phantump"] = () => {
  24093. return makeCharacter(
  24094. { name: "Phantump" },
  24095. {
  24096. "Phantump": {
  24097. height: math.unit("16", "inches"),
  24098. weight: math.unit("15.4", "lbs"),
  24099. name: "Phantump",
  24100. image: {
  24101. source: "./media/pokemon/Phantump.svg"
  24102. },
  24103. rename: true
  24104. }
  24105. },
  24106. [
  24107. {
  24108. name: "Micro",
  24109. height: math.unit(1.6, "inches")
  24110. },
  24111. {
  24112. name: "Normal",
  24113. height: math.unit(16, "inches"),
  24114. default: true
  24115. },
  24116. {
  24117. name: "Macro",
  24118. height: math.unit(1600.0, "inches")
  24119. },
  24120. {
  24121. name: "Megamacro",
  24122. height: math.unit(80000.0, "inches")
  24123. },
  24124. {
  24125. name: "Gigamacro",
  24126. height: math.unit(160000000.0, "inches")
  24127. }
  24128. ]
  24129. )
  24130. };
  24131. pokemonMakers["Pheromosa"] = () => {
  24132. return makeCharacter(
  24133. { name: "Pheromosa" },
  24134. {
  24135. "Pheromosa": {
  24136. height: math.unit("71", "inches"),
  24137. weight: math.unit("55.1", "lbs"),
  24138. name: "Pheromosa",
  24139. image: {
  24140. source: "./media/pokemon/Pheromosa.svg"
  24141. },
  24142. rename: true
  24143. }
  24144. },
  24145. [
  24146. {
  24147. name: "Micro",
  24148. height: math.unit(7.1, "inches")
  24149. },
  24150. {
  24151. name: "Normal",
  24152. height: math.unit(71, "inches"),
  24153. default: true
  24154. },
  24155. {
  24156. name: "Macro",
  24157. height: math.unit(7100.0, "inches")
  24158. },
  24159. {
  24160. name: "Megamacro",
  24161. height: math.unit(355000.0, "inches")
  24162. },
  24163. {
  24164. name: "Gigamacro",
  24165. height: math.unit(710000000.0, "inches")
  24166. }
  24167. ]
  24168. )
  24169. };
  24170. pokemonMakers["Phione"] = () => {
  24171. return makeCharacter(
  24172. { name: "Phione" },
  24173. {
  24174. "Phione": {
  24175. height: math.unit("16", "inches"),
  24176. weight: math.unit("6.8", "lbs"),
  24177. name: "Phione",
  24178. image: {
  24179. source: "./media/pokemon/Phione.svg"
  24180. },
  24181. rename: true
  24182. }
  24183. },
  24184. [
  24185. {
  24186. name: "Micro",
  24187. height: math.unit(1.6, "inches")
  24188. },
  24189. {
  24190. name: "Normal",
  24191. height: math.unit(16, "inches"),
  24192. default: true
  24193. },
  24194. {
  24195. name: "Macro",
  24196. height: math.unit(1600.0, "inches")
  24197. },
  24198. {
  24199. name: "Megamacro",
  24200. height: math.unit(80000.0, "inches")
  24201. },
  24202. {
  24203. name: "Gigamacro",
  24204. height: math.unit(160000000.0, "inches")
  24205. }
  24206. ]
  24207. )
  24208. };
  24209. pokemonMakers["Pichu"] = () => {
  24210. return makeCharacter(
  24211. { name: "Pichu" },
  24212. {
  24213. "Pichu": {
  24214. height: math.unit("12", "inches"),
  24215. weight: math.unit("4.4", "lbs"),
  24216. name: "Pichu",
  24217. image: {
  24218. source: "./media/pokemon/Pichu.svg"
  24219. },
  24220. rename: true
  24221. }
  24222. },
  24223. [
  24224. {
  24225. name: "Micro",
  24226. height: math.unit(1.2, "inches")
  24227. },
  24228. {
  24229. name: "Normal",
  24230. height: math.unit(12, "inches"),
  24231. default: true
  24232. },
  24233. {
  24234. name: "Macro",
  24235. height: math.unit(1200.0, "inches")
  24236. },
  24237. {
  24238. name: "Megamacro",
  24239. height: math.unit(60000.0, "inches")
  24240. },
  24241. {
  24242. name: "Gigamacro",
  24243. height: math.unit(120000000.0, "inches")
  24244. }
  24245. ]
  24246. )
  24247. };
  24248. pokemonMakers["Pidgeotto"] = () => {
  24249. return makeCharacter(
  24250. { name: "Pidgeotto" },
  24251. {
  24252. "Pidgeotto": {
  24253. height: math.unit("43", "inches"),
  24254. weight: math.unit("66.1", "lbs"),
  24255. name: "Pidgeotto",
  24256. image: {
  24257. source: "./media/pokemon/Pidgeotto.svg"
  24258. },
  24259. rename: true
  24260. }
  24261. },
  24262. [
  24263. {
  24264. name: "Micro",
  24265. height: math.unit(4.3, "inches")
  24266. },
  24267. {
  24268. name: "Normal",
  24269. height: math.unit(43, "inches"),
  24270. default: true
  24271. },
  24272. {
  24273. name: "Macro",
  24274. height: math.unit(4300.0, "inches")
  24275. },
  24276. {
  24277. name: "Megamacro",
  24278. height: math.unit(215000.0, "inches")
  24279. },
  24280. {
  24281. name: "Gigamacro",
  24282. height: math.unit(430000000.0, "inches")
  24283. }
  24284. ]
  24285. )
  24286. };
  24287. pokemonMakers["Pidgey"] = () => {
  24288. return makeCharacter(
  24289. { name: "Pidgey" },
  24290. {
  24291. "Pidgey": {
  24292. height: math.unit("12", "inches"),
  24293. weight: math.unit("4.0", "lbs"),
  24294. name: "Pidgey",
  24295. image: {
  24296. source: "./media/pokemon/Pidgey.svg"
  24297. },
  24298. rename: true
  24299. }
  24300. },
  24301. [
  24302. {
  24303. name: "Micro",
  24304. height: math.unit(1.2, "inches")
  24305. },
  24306. {
  24307. name: "Normal",
  24308. height: math.unit(12, "inches"),
  24309. default: true
  24310. },
  24311. {
  24312. name: "Macro",
  24313. height: math.unit(1200.0, "inches")
  24314. },
  24315. {
  24316. name: "Megamacro",
  24317. height: math.unit(60000.0, "inches")
  24318. },
  24319. {
  24320. name: "Gigamacro",
  24321. height: math.unit(120000000.0, "inches")
  24322. }
  24323. ]
  24324. )
  24325. };
  24326. pokemonMakers["Pidove"] = () => {
  24327. return makeCharacter(
  24328. { name: "Pidove" },
  24329. {
  24330. "Pidove": {
  24331. height: math.unit("12", "inches"),
  24332. weight: math.unit("4.6", "lbs"),
  24333. name: "Pidove",
  24334. image: {
  24335. source: "./media/pokemon/Pidove.svg"
  24336. },
  24337. rename: true
  24338. }
  24339. },
  24340. [
  24341. {
  24342. name: "Micro",
  24343. height: math.unit(1.2, "inches")
  24344. },
  24345. {
  24346. name: "Normal",
  24347. height: math.unit(12, "inches"),
  24348. default: true
  24349. },
  24350. {
  24351. name: "Macro",
  24352. height: math.unit(1200.0, "inches")
  24353. },
  24354. {
  24355. name: "Megamacro",
  24356. height: math.unit(60000.0, "inches")
  24357. },
  24358. {
  24359. name: "Gigamacro",
  24360. height: math.unit(120000000.0, "inches")
  24361. }
  24362. ]
  24363. )
  24364. };
  24365. pokemonMakers["Pignite"] = () => {
  24366. return makeCharacter(
  24367. { name: "Pignite" },
  24368. {
  24369. "Pignite": {
  24370. height: math.unit("39", "inches"),
  24371. weight: math.unit("122.4", "lbs"),
  24372. name: "Pignite",
  24373. image: {
  24374. source: "./media/pokemon/Pignite.svg"
  24375. },
  24376. rename: true
  24377. }
  24378. },
  24379. [
  24380. {
  24381. name: "Micro",
  24382. height: math.unit(3.9, "inches")
  24383. },
  24384. {
  24385. name: "Normal",
  24386. height: math.unit(39, "inches"),
  24387. default: true
  24388. },
  24389. {
  24390. name: "Macro",
  24391. height: math.unit(3900.0, "inches")
  24392. },
  24393. {
  24394. name: "Megamacro",
  24395. height: math.unit(195000.0, "inches")
  24396. },
  24397. {
  24398. name: "Gigamacro",
  24399. height: math.unit(390000000.0, "inches")
  24400. }
  24401. ]
  24402. )
  24403. };
  24404. pokemonMakers["Pikipek"] = () => {
  24405. return makeCharacter(
  24406. { name: "Pikipek" },
  24407. {
  24408. "Pikipek": {
  24409. height: math.unit("12", "inches"),
  24410. weight: math.unit("2.6", "lbs"),
  24411. name: "Pikipek",
  24412. image: {
  24413. source: "./media/pokemon/Pikipek.svg"
  24414. },
  24415. rename: true
  24416. }
  24417. },
  24418. [
  24419. {
  24420. name: "Micro",
  24421. height: math.unit(1.2, "inches")
  24422. },
  24423. {
  24424. name: "Normal",
  24425. height: math.unit(12, "inches"),
  24426. default: true
  24427. },
  24428. {
  24429. name: "Macro",
  24430. height: math.unit(1200.0, "inches")
  24431. },
  24432. {
  24433. name: "Megamacro",
  24434. height: math.unit(60000.0, "inches")
  24435. },
  24436. {
  24437. name: "Gigamacro",
  24438. height: math.unit(120000000.0, "inches")
  24439. }
  24440. ]
  24441. )
  24442. };
  24443. pokemonMakers["Piloswine"] = () => {
  24444. return makeCharacter(
  24445. { name: "Piloswine" },
  24446. {
  24447. "Piloswine": {
  24448. height: math.unit("43", "inches"),
  24449. weight: math.unit("123.0", "lbs"),
  24450. name: "Piloswine",
  24451. image: {
  24452. source: "./media/pokemon/Piloswine.svg"
  24453. },
  24454. rename: true
  24455. }
  24456. },
  24457. [
  24458. {
  24459. name: "Micro",
  24460. height: math.unit(4.3, "inches")
  24461. },
  24462. {
  24463. name: "Normal",
  24464. height: math.unit(43, "inches"),
  24465. default: true
  24466. },
  24467. {
  24468. name: "Macro",
  24469. height: math.unit(4300.0, "inches")
  24470. },
  24471. {
  24472. name: "Megamacro",
  24473. height: math.unit(215000.0, "inches")
  24474. },
  24475. {
  24476. name: "Gigamacro",
  24477. height: math.unit(430000000.0, "inches")
  24478. }
  24479. ]
  24480. )
  24481. };
  24482. pokemonMakers["Pincurchin"] = () => {
  24483. return makeCharacter(
  24484. { name: "Pincurchin" },
  24485. {
  24486. "Pincurchin": {
  24487. height: math.unit("12", "inches"),
  24488. weight: math.unit("2.2", "lbs"),
  24489. name: "Pincurchin",
  24490. image: {
  24491. source: "./media/pokemon/Pincurchin.svg"
  24492. },
  24493. rename: true
  24494. }
  24495. },
  24496. [
  24497. {
  24498. name: "Micro",
  24499. height: math.unit(1.2, "inches")
  24500. },
  24501. {
  24502. name: "Normal",
  24503. height: math.unit(12, "inches"),
  24504. default: true
  24505. },
  24506. {
  24507. name: "Macro",
  24508. height: math.unit(1200.0, "inches")
  24509. },
  24510. {
  24511. name: "Megamacro",
  24512. height: math.unit(60000.0, "inches")
  24513. },
  24514. {
  24515. name: "Gigamacro",
  24516. height: math.unit(120000000.0, "inches")
  24517. }
  24518. ]
  24519. )
  24520. };
  24521. pokemonMakers["Pineco"] = () => {
  24522. return makeCharacter(
  24523. { name: "Pineco" },
  24524. {
  24525. "Pineco": {
  24526. height: math.unit("24", "inches"),
  24527. weight: math.unit("15.9", "lbs"),
  24528. name: "Pineco",
  24529. image: {
  24530. source: "./media/pokemon/Pineco.svg"
  24531. },
  24532. rename: true
  24533. }
  24534. },
  24535. [
  24536. {
  24537. name: "Micro",
  24538. height: math.unit(2.4, "inches")
  24539. },
  24540. {
  24541. name: "Normal",
  24542. height: math.unit(24, "inches"),
  24543. default: true
  24544. },
  24545. {
  24546. name: "Macro",
  24547. height: math.unit(2400.0, "inches")
  24548. },
  24549. {
  24550. name: "Megamacro",
  24551. height: math.unit(120000.0, "inches")
  24552. },
  24553. {
  24554. name: "Gigamacro",
  24555. height: math.unit(240000000.0, "inches")
  24556. }
  24557. ]
  24558. )
  24559. };
  24560. pokemonMakers["Piplup"] = () => {
  24561. return makeCharacter(
  24562. { name: "Piplup" },
  24563. {
  24564. "Piplup": {
  24565. height: math.unit("16", "inches"),
  24566. weight: math.unit("11.5", "lbs"),
  24567. name: "Piplup",
  24568. image: {
  24569. source: "./media/pokemon/Piplup.svg"
  24570. },
  24571. rename: true
  24572. }
  24573. },
  24574. [
  24575. {
  24576. name: "Micro",
  24577. height: math.unit(1.6, "inches")
  24578. },
  24579. {
  24580. name: "Normal",
  24581. height: math.unit(16, "inches"),
  24582. default: true
  24583. },
  24584. {
  24585. name: "Macro",
  24586. height: math.unit(1600.0, "inches")
  24587. },
  24588. {
  24589. name: "Megamacro",
  24590. height: math.unit(80000.0, "inches")
  24591. },
  24592. {
  24593. name: "Gigamacro",
  24594. height: math.unit(160000000.0, "inches")
  24595. }
  24596. ]
  24597. )
  24598. };
  24599. pokemonMakers["Plusle"] = () => {
  24600. return makeCharacter(
  24601. { name: "Plusle" },
  24602. {
  24603. "Plusle": {
  24604. height: math.unit("16", "inches"),
  24605. weight: math.unit("9.3", "lbs"),
  24606. name: "Plusle",
  24607. image: {
  24608. source: "./media/pokemon/Plusle.svg"
  24609. },
  24610. rename: true
  24611. }
  24612. },
  24613. [
  24614. {
  24615. name: "Micro",
  24616. height: math.unit(1.6, "inches")
  24617. },
  24618. {
  24619. name: "Normal",
  24620. height: math.unit(16, "inches"),
  24621. default: true
  24622. },
  24623. {
  24624. name: "Macro",
  24625. height: math.unit(1600.0, "inches")
  24626. },
  24627. {
  24628. name: "Megamacro",
  24629. height: math.unit(80000.0, "inches")
  24630. },
  24631. {
  24632. name: "Gigamacro",
  24633. height: math.unit(160000000.0, "inches")
  24634. }
  24635. ]
  24636. )
  24637. };
  24638. pokemonMakers["Poipole"] = () => {
  24639. return makeCharacter(
  24640. { name: "Poipole" },
  24641. {
  24642. "Poipole": {
  24643. height: math.unit("24", "inches"),
  24644. weight: math.unit("4.0", "lbs"),
  24645. name: "Poipole",
  24646. image: {
  24647. source: "./media/pokemon/Poipole.svg"
  24648. },
  24649. rename: true
  24650. }
  24651. },
  24652. [
  24653. {
  24654. name: "Micro",
  24655. height: math.unit(2.4, "inches")
  24656. },
  24657. {
  24658. name: "Normal",
  24659. height: math.unit(24, "inches"),
  24660. default: true
  24661. },
  24662. {
  24663. name: "Macro",
  24664. height: math.unit(2400.0, "inches")
  24665. },
  24666. {
  24667. name: "Megamacro",
  24668. height: math.unit(120000.0, "inches")
  24669. },
  24670. {
  24671. name: "Gigamacro",
  24672. height: math.unit(240000000.0, "inches")
  24673. }
  24674. ]
  24675. )
  24676. };
  24677. pokemonMakers["Politoed"] = () => {
  24678. return makeCharacter(
  24679. { name: "Politoed" },
  24680. {
  24681. "Politoed": {
  24682. height: math.unit("43", "inches"),
  24683. weight: math.unit("74.7", "lbs"),
  24684. name: "Politoed",
  24685. image: {
  24686. source: "./media/pokemon/Politoed.svg"
  24687. },
  24688. rename: true
  24689. }
  24690. },
  24691. [
  24692. {
  24693. name: "Micro",
  24694. height: math.unit(4.3, "inches")
  24695. },
  24696. {
  24697. name: "Normal",
  24698. height: math.unit(43, "inches"),
  24699. default: true
  24700. },
  24701. {
  24702. name: "Macro",
  24703. height: math.unit(4300.0, "inches")
  24704. },
  24705. {
  24706. name: "Megamacro",
  24707. height: math.unit(215000.0, "inches")
  24708. },
  24709. {
  24710. name: "Gigamacro",
  24711. height: math.unit(430000000.0, "inches")
  24712. }
  24713. ]
  24714. )
  24715. };
  24716. pokemonMakers["Poliwag"] = () => {
  24717. return makeCharacter(
  24718. { name: "Poliwag" },
  24719. {
  24720. "Poliwag": {
  24721. height: math.unit("24", "inches"),
  24722. weight: math.unit("27.3", "lbs"),
  24723. name: "Poliwag",
  24724. image: {
  24725. source: "./media/pokemon/Poliwag.svg"
  24726. },
  24727. rename: true
  24728. }
  24729. },
  24730. [
  24731. {
  24732. name: "Micro",
  24733. height: math.unit(2.4, "inches")
  24734. },
  24735. {
  24736. name: "Normal",
  24737. height: math.unit(24, "inches"),
  24738. default: true
  24739. },
  24740. {
  24741. name: "Macro",
  24742. height: math.unit(2400.0, "inches")
  24743. },
  24744. {
  24745. name: "Megamacro",
  24746. height: math.unit(120000.0, "inches")
  24747. },
  24748. {
  24749. name: "Gigamacro",
  24750. height: math.unit(240000000.0, "inches")
  24751. }
  24752. ]
  24753. )
  24754. };
  24755. pokemonMakers["Poliwhirl"] = () => {
  24756. return makeCharacter(
  24757. { name: "Poliwhirl" },
  24758. {
  24759. "Poliwhirl": {
  24760. height: math.unit("39", "inches"),
  24761. weight: math.unit("44.1", "lbs"),
  24762. name: "Poliwhirl",
  24763. image: {
  24764. source: "./media/pokemon/Poliwhirl.svg"
  24765. },
  24766. rename: true
  24767. }
  24768. },
  24769. [
  24770. {
  24771. name: "Micro",
  24772. height: math.unit(3.9, "inches")
  24773. },
  24774. {
  24775. name: "Normal",
  24776. height: math.unit(39, "inches"),
  24777. default: true
  24778. },
  24779. {
  24780. name: "Macro",
  24781. height: math.unit(3900.0, "inches")
  24782. },
  24783. {
  24784. name: "Megamacro",
  24785. height: math.unit(195000.0, "inches")
  24786. },
  24787. {
  24788. name: "Gigamacro",
  24789. height: math.unit(390000000.0, "inches")
  24790. }
  24791. ]
  24792. )
  24793. };
  24794. pokemonMakers["Poliwrath"] = () => {
  24795. return makeCharacter(
  24796. { name: "Poliwrath" },
  24797. {
  24798. "Poliwrath": {
  24799. height: math.unit("51", "inches"),
  24800. weight: math.unit("119.0", "lbs"),
  24801. name: "Poliwrath",
  24802. image: {
  24803. source: "./media/pokemon/Poliwrath.svg"
  24804. },
  24805. rename: true
  24806. }
  24807. },
  24808. [
  24809. {
  24810. name: "Micro",
  24811. height: math.unit(5.1, "inches")
  24812. },
  24813. {
  24814. name: "Normal",
  24815. height: math.unit(51, "inches"),
  24816. default: true
  24817. },
  24818. {
  24819. name: "Macro",
  24820. height: math.unit(5100.0, "inches")
  24821. },
  24822. {
  24823. name: "Megamacro",
  24824. height: math.unit(255000.0, "inches")
  24825. },
  24826. {
  24827. name: "Gigamacro",
  24828. height: math.unit(510000000.0, "inches")
  24829. }
  24830. ]
  24831. )
  24832. };
  24833. pokemonMakers["Polteageist"] = () => {
  24834. return makeCharacter(
  24835. { name: "Polteageist" },
  24836. {
  24837. "Polteageist": {
  24838. height: math.unit("8", "inches"),
  24839. weight: math.unit("0.9", "lbs"),
  24840. name: "Polteageist",
  24841. image: {
  24842. source: "./media/pokemon/Polteageist.svg"
  24843. },
  24844. rename: true
  24845. }
  24846. },
  24847. [
  24848. {
  24849. name: "Micro",
  24850. height: math.unit(0.8, "inches")
  24851. },
  24852. {
  24853. name: "Normal",
  24854. height: math.unit(8, "inches"),
  24855. default: true
  24856. },
  24857. {
  24858. name: "Macro",
  24859. height: math.unit(800.0, "inches")
  24860. },
  24861. {
  24862. name: "Megamacro",
  24863. height: math.unit(40000.0, "inches")
  24864. },
  24865. {
  24866. name: "Gigamacro",
  24867. height: math.unit(80000000.0, "inches")
  24868. }
  24869. ]
  24870. )
  24871. };
  24872. pokemonMakers["Ponyta"] = () => {
  24873. return makeCharacter(
  24874. { name: "Ponyta" },
  24875. {
  24876. "Galarian Form": {
  24877. height: math.unit("31", "inches"),
  24878. weight: math.unit("52.9", "lbs"),
  24879. name: "Galarian Form",
  24880. image: {
  24881. source: "./media/pokemon/Ponyta - Galarian Form.svg"
  24882. },
  24883. rename: true
  24884. },
  24885. "Ponyta": {
  24886. height: math.unit("39", "inches"),
  24887. weight: math.unit("66.1", "lbs"),
  24888. name: "Ponyta",
  24889. image: {
  24890. source: "./media/pokemon/Ponyta.svg"
  24891. },
  24892. rename: true
  24893. }
  24894. },
  24895. [
  24896. {
  24897. name: "Micro",
  24898. height: math.unit(3.1, "inches")
  24899. },
  24900. {
  24901. name: "Normal",
  24902. height: math.unit(31, "inches"),
  24903. default: true
  24904. },
  24905. {
  24906. name: "Macro",
  24907. height: math.unit(3100.0, "inches")
  24908. },
  24909. {
  24910. name: "Megamacro",
  24911. height: math.unit(155000.0, "inches")
  24912. },
  24913. {
  24914. name: "Gigamacro",
  24915. height: math.unit(310000000.0, "inches")
  24916. }
  24917. ]
  24918. )
  24919. };
  24920. pokemonMakers["Poochyena"] = () => {
  24921. return makeCharacter(
  24922. { name: "Poochyena" },
  24923. {
  24924. "Poochyena": {
  24925. height: math.unit("20", "inches"),
  24926. weight: math.unit("30.0", "lbs"),
  24927. name: "Poochyena",
  24928. image: {
  24929. source: "./media/pokemon/Poochyena.svg"
  24930. },
  24931. rename: true
  24932. }
  24933. },
  24934. [
  24935. {
  24936. name: "Micro",
  24937. height: math.unit(2.0, "inches")
  24938. },
  24939. {
  24940. name: "Normal",
  24941. height: math.unit(20, "inches"),
  24942. default: true
  24943. },
  24944. {
  24945. name: "Macro",
  24946. height: math.unit(2000.0, "inches")
  24947. },
  24948. {
  24949. name: "Megamacro",
  24950. height: math.unit(100000.0, "inches")
  24951. },
  24952. {
  24953. name: "Gigamacro",
  24954. height: math.unit(200000000.0, "inches")
  24955. }
  24956. ]
  24957. )
  24958. };
  24959. pokemonMakers["Popplio"] = () => {
  24960. return makeCharacter(
  24961. { name: "Popplio" },
  24962. {
  24963. "Popplio": {
  24964. height: math.unit("16", "inches"),
  24965. weight: math.unit("16.5", "lbs"),
  24966. name: "Popplio",
  24967. image: {
  24968. source: "./media/pokemon/Popplio.svg"
  24969. },
  24970. rename: true
  24971. }
  24972. },
  24973. [
  24974. {
  24975. name: "Micro",
  24976. height: math.unit(1.6, "inches")
  24977. },
  24978. {
  24979. name: "Normal",
  24980. height: math.unit(16, "inches"),
  24981. default: true
  24982. },
  24983. {
  24984. name: "Macro",
  24985. height: math.unit(1600.0, "inches")
  24986. },
  24987. {
  24988. name: "Megamacro",
  24989. height: math.unit(80000.0, "inches")
  24990. },
  24991. {
  24992. name: "Gigamacro",
  24993. height: math.unit(160000000.0, "inches")
  24994. }
  24995. ]
  24996. )
  24997. };
  24998. pokemonMakers["Porygon-Z"] = () => {
  24999. return makeCharacter(
  25000. { name: "Porygon-Z" },
  25001. {
  25002. "Porygon-Z": {
  25003. height: math.unit("35", "inches"),
  25004. weight: math.unit("75.0", "lbs"),
  25005. name: "Porygon-Z",
  25006. image: {
  25007. source: "./media/pokemon/Porygon-Z.svg"
  25008. },
  25009. rename: true
  25010. }
  25011. },
  25012. [
  25013. {
  25014. name: "Micro",
  25015. height: math.unit(3.5, "inches")
  25016. },
  25017. {
  25018. name: "Normal",
  25019. height: math.unit(35, "inches"),
  25020. default: true
  25021. },
  25022. {
  25023. name: "Macro",
  25024. height: math.unit(3500.0, "inches")
  25025. },
  25026. {
  25027. name: "Megamacro",
  25028. height: math.unit(175000.0, "inches")
  25029. },
  25030. {
  25031. name: "Gigamacro",
  25032. height: math.unit(350000000.0, "inches")
  25033. }
  25034. ]
  25035. )
  25036. };
  25037. pokemonMakers["Porygon"] = () => {
  25038. return makeCharacter(
  25039. { name: "Porygon" },
  25040. {
  25041. "Porygon": {
  25042. height: math.unit("31", "inches"),
  25043. weight: math.unit("80.5", "lbs"),
  25044. name: "Porygon",
  25045. image: {
  25046. source: "./media/pokemon/Porygon.svg"
  25047. },
  25048. rename: true
  25049. }
  25050. },
  25051. [
  25052. {
  25053. name: "Micro",
  25054. height: math.unit(3.1, "inches")
  25055. },
  25056. {
  25057. name: "Normal",
  25058. height: math.unit(31, "inches"),
  25059. default: true
  25060. },
  25061. {
  25062. name: "Macro",
  25063. height: math.unit(3100.0, "inches")
  25064. },
  25065. {
  25066. name: "Megamacro",
  25067. height: math.unit(155000.0, "inches")
  25068. },
  25069. {
  25070. name: "Gigamacro",
  25071. height: math.unit(310000000.0, "inches")
  25072. }
  25073. ]
  25074. )
  25075. };
  25076. pokemonMakers["Porygon2"] = () => {
  25077. return makeCharacter(
  25078. { name: "Porygon2" },
  25079. {
  25080. "Porygon2": {
  25081. height: math.unit("24", "inches"),
  25082. weight: math.unit("71.6", "lbs"),
  25083. name: "Porygon2",
  25084. image: {
  25085. source: "./media/pokemon/Porygon2.svg"
  25086. },
  25087. rename: true
  25088. }
  25089. },
  25090. [
  25091. {
  25092. name: "Micro",
  25093. height: math.unit(2.4, "inches")
  25094. },
  25095. {
  25096. name: "Normal",
  25097. height: math.unit(24, "inches"),
  25098. default: true
  25099. },
  25100. {
  25101. name: "Macro",
  25102. height: math.unit(2400.0, "inches")
  25103. },
  25104. {
  25105. name: "Megamacro",
  25106. height: math.unit(120000.0, "inches")
  25107. },
  25108. {
  25109. name: "Gigamacro",
  25110. height: math.unit(240000000.0, "inches")
  25111. }
  25112. ]
  25113. )
  25114. };
  25115. pokemonMakers["Primarina"] = () => {
  25116. return makeCharacter(
  25117. { name: "Primarina" },
  25118. {
  25119. "Primarina": {
  25120. height: math.unit("71", "inches"),
  25121. weight: math.unit("97.0", "lbs"),
  25122. name: "Primarina",
  25123. image: {
  25124. source: "./media/pokemon/Primarina.svg"
  25125. },
  25126. rename: true
  25127. }
  25128. },
  25129. [
  25130. {
  25131. name: "Micro",
  25132. height: math.unit(7.1, "inches")
  25133. },
  25134. {
  25135. name: "Normal",
  25136. height: math.unit(71, "inches"),
  25137. default: true
  25138. },
  25139. {
  25140. name: "Macro",
  25141. height: math.unit(7100.0, "inches")
  25142. },
  25143. {
  25144. name: "Megamacro",
  25145. height: math.unit(355000.0, "inches")
  25146. },
  25147. {
  25148. name: "Gigamacro",
  25149. height: math.unit(710000000.0, "inches")
  25150. }
  25151. ]
  25152. )
  25153. };
  25154. pokemonMakers["Primeape"] = () => {
  25155. return makeCharacter(
  25156. { name: "Primeape" },
  25157. {
  25158. "Primeape": {
  25159. height: math.unit("39", "inches"),
  25160. weight: math.unit("70.5", "lbs"),
  25161. name: "Primeape",
  25162. image: {
  25163. source: "./media/pokemon/Primeape.svg"
  25164. },
  25165. rename: true
  25166. }
  25167. },
  25168. [
  25169. {
  25170. name: "Micro",
  25171. height: math.unit(3.9, "inches")
  25172. },
  25173. {
  25174. name: "Normal",
  25175. height: math.unit(39, "inches"),
  25176. default: true
  25177. },
  25178. {
  25179. name: "Macro",
  25180. height: math.unit(3900.0, "inches")
  25181. },
  25182. {
  25183. name: "Megamacro",
  25184. height: math.unit(195000.0, "inches")
  25185. },
  25186. {
  25187. name: "Gigamacro",
  25188. height: math.unit(390000000.0, "inches")
  25189. }
  25190. ]
  25191. )
  25192. };
  25193. pokemonMakers["Prinplup"] = () => {
  25194. return makeCharacter(
  25195. { name: "Prinplup" },
  25196. {
  25197. "Prinplup": {
  25198. height: math.unit("31", "inches"),
  25199. weight: math.unit("50.7", "lbs"),
  25200. name: "Prinplup",
  25201. image: {
  25202. source: "./media/pokemon/Prinplup.svg"
  25203. },
  25204. rename: true
  25205. }
  25206. },
  25207. [
  25208. {
  25209. name: "Micro",
  25210. height: math.unit(3.1, "inches")
  25211. },
  25212. {
  25213. name: "Normal",
  25214. height: math.unit(31, "inches"),
  25215. default: true
  25216. },
  25217. {
  25218. name: "Macro",
  25219. height: math.unit(3100.0, "inches")
  25220. },
  25221. {
  25222. name: "Megamacro",
  25223. height: math.unit(155000.0, "inches")
  25224. },
  25225. {
  25226. name: "Gigamacro",
  25227. height: math.unit(310000000.0, "inches")
  25228. }
  25229. ]
  25230. )
  25231. };
  25232. pokemonMakers["Probopass"] = () => {
  25233. return makeCharacter(
  25234. { name: "Probopass" },
  25235. {
  25236. "Probopass": {
  25237. height: math.unit("55", "inches"),
  25238. weight: math.unit("749.6", "lbs"),
  25239. name: "Probopass",
  25240. image: {
  25241. source: "./media/pokemon/Probopass.svg"
  25242. },
  25243. rename: true
  25244. }
  25245. },
  25246. [
  25247. {
  25248. name: "Micro",
  25249. height: math.unit(5.5, "inches")
  25250. },
  25251. {
  25252. name: "Normal",
  25253. height: math.unit(55, "inches"),
  25254. default: true
  25255. },
  25256. {
  25257. name: "Macro",
  25258. height: math.unit(5500.0, "inches")
  25259. },
  25260. {
  25261. name: "Megamacro",
  25262. height: math.unit(275000.0, "inches")
  25263. },
  25264. {
  25265. name: "Gigamacro",
  25266. height: math.unit(550000000.0, "inches")
  25267. }
  25268. ]
  25269. )
  25270. };
  25271. pokemonMakers["Psyduck"] = () => {
  25272. return makeCharacter(
  25273. { name: "Psyduck" },
  25274. {
  25275. "Psyduck": {
  25276. height: math.unit("31", "inches"),
  25277. weight: math.unit("43.2", "lbs"),
  25278. name: "Psyduck",
  25279. image: {
  25280. source: "./media/pokemon/Psyduck.svg"
  25281. },
  25282. rename: true
  25283. }
  25284. },
  25285. [
  25286. {
  25287. name: "Micro",
  25288. height: math.unit(3.1, "inches")
  25289. },
  25290. {
  25291. name: "Normal",
  25292. height: math.unit(31, "inches"),
  25293. default: true
  25294. },
  25295. {
  25296. name: "Macro",
  25297. height: math.unit(3100.0, "inches")
  25298. },
  25299. {
  25300. name: "Megamacro",
  25301. height: math.unit(155000.0, "inches")
  25302. },
  25303. {
  25304. name: "Gigamacro",
  25305. height: math.unit(310000000.0, "inches")
  25306. }
  25307. ]
  25308. )
  25309. };
  25310. pokemonMakers["Pumpkaboo"] = () => {
  25311. return makeCharacter(
  25312. { name: "Pumpkaboo" },
  25313. {
  25314. "Large Size": {
  25315. height: math.unit("20", "inches"),
  25316. weight: math.unit("16.5", "lbs"),
  25317. name: "Large Size",
  25318. image: {
  25319. source: "./media/pokemon/Pumpkaboo - Large Size.svg"
  25320. },
  25321. rename: true
  25322. },
  25323. "Small Size": {
  25324. height: math.unit("12", "inches"),
  25325. weight: math.unit("7.7", "lbs"),
  25326. name: "Small Size",
  25327. image: {
  25328. source: "./media/pokemon/Pumpkaboo - Small Size.svg"
  25329. },
  25330. rename: true
  25331. },
  25332. "Super Size": {
  25333. height: math.unit("31", "inches"),
  25334. weight: math.unit("33.1", "lbs"),
  25335. name: "Super Size",
  25336. image: {
  25337. source: "./media/pokemon/Pumpkaboo - Super Size.svg"
  25338. },
  25339. rename: true
  25340. },
  25341. "Pumpkaboo": {
  25342. height: math.unit("16", "inches"),
  25343. weight: math.unit("11.0", "lbs"),
  25344. name: "Pumpkaboo",
  25345. image: {
  25346. source: "./media/pokemon/Pumpkaboo.svg"
  25347. },
  25348. rename: true
  25349. }
  25350. },
  25351. [
  25352. {
  25353. name: "Micro",
  25354. height: math.unit(2.0, "inches")
  25355. },
  25356. {
  25357. name: "Normal",
  25358. height: math.unit(20, "inches"),
  25359. default: true
  25360. },
  25361. {
  25362. name: "Macro",
  25363. height: math.unit(2000.0, "inches")
  25364. },
  25365. {
  25366. name: "Megamacro",
  25367. height: math.unit(100000.0, "inches")
  25368. },
  25369. {
  25370. name: "Gigamacro",
  25371. height: math.unit(200000000.0, "inches")
  25372. }
  25373. ]
  25374. )
  25375. };
  25376. pokemonMakers["Pupitar"] = () => {
  25377. return makeCharacter(
  25378. { name: "Pupitar" },
  25379. {
  25380. "Pupitar": {
  25381. height: math.unit("47", "inches"),
  25382. weight: math.unit("335.1", "lbs"),
  25383. name: "Pupitar",
  25384. image: {
  25385. source: "./media/pokemon/Pupitar.svg"
  25386. },
  25387. rename: true
  25388. }
  25389. },
  25390. [
  25391. {
  25392. name: "Micro",
  25393. height: math.unit(4.7, "inches")
  25394. },
  25395. {
  25396. name: "Normal",
  25397. height: math.unit(47, "inches"),
  25398. default: true
  25399. },
  25400. {
  25401. name: "Macro",
  25402. height: math.unit(4700.0, "inches")
  25403. },
  25404. {
  25405. name: "Megamacro",
  25406. height: math.unit(235000.0, "inches")
  25407. },
  25408. {
  25409. name: "Gigamacro",
  25410. height: math.unit(470000000.0, "inches")
  25411. }
  25412. ]
  25413. )
  25414. };
  25415. pokemonMakers["Purrloin"] = () => {
  25416. return makeCharacter(
  25417. { name: "Purrloin" },
  25418. {
  25419. "Purrloin": {
  25420. height: math.unit("16", "inches"),
  25421. weight: math.unit("22.3", "lbs"),
  25422. name: "Purrloin",
  25423. image: {
  25424. source: "./media/pokemon/Purrloin.svg"
  25425. },
  25426. rename: true
  25427. }
  25428. },
  25429. [
  25430. {
  25431. name: "Micro",
  25432. height: math.unit(1.6, "inches")
  25433. },
  25434. {
  25435. name: "Normal",
  25436. height: math.unit(16, "inches"),
  25437. default: true
  25438. },
  25439. {
  25440. name: "Macro",
  25441. height: math.unit(1600.0, "inches")
  25442. },
  25443. {
  25444. name: "Megamacro",
  25445. height: math.unit(80000.0, "inches")
  25446. },
  25447. {
  25448. name: "Gigamacro",
  25449. height: math.unit(160000000.0, "inches")
  25450. }
  25451. ]
  25452. )
  25453. };
  25454. pokemonMakers["Purugly"] = () => {
  25455. return makeCharacter(
  25456. { name: "Purugly" },
  25457. {
  25458. "Purugly": {
  25459. height: math.unit("39", "inches"),
  25460. weight: math.unit("96.6", "lbs"),
  25461. name: "Purugly",
  25462. image: {
  25463. source: "./media/pokemon/Purugly.svg"
  25464. },
  25465. rename: true
  25466. }
  25467. },
  25468. [
  25469. {
  25470. name: "Micro",
  25471. height: math.unit(3.9, "inches")
  25472. },
  25473. {
  25474. name: "Normal",
  25475. height: math.unit(39, "inches"),
  25476. default: true
  25477. },
  25478. {
  25479. name: "Macro",
  25480. height: math.unit(3900.0, "inches")
  25481. },
  25482. {
  25483. name: "Megamacro",
  25484. height: math.unit(195000.0, "inches")
  25485. },
  25486. {
  25487. name: "Gigamacro",
  25488. height: math.unit(390000000.0, "inches")
  25489. }
  25490. ]
  25491. )
  25492. };
  25493. pokemonMakers["Pyroar"] = () => {
  25494. return makeCharacter(
  25495. { name: "Pyroar" },
  25496. {
  25497. "Female": {
  25498. height: math.unit("59", "inches"),
  25499. weight: math.unit("179.7", "lbs"),
  25500. name: "Female",
  25501. image: {
  25502. source: "./media/pokemon/Pyroar - Female.svg"
  25503. },
  25504. rename: true
  25505. },
  25506. "Male": {
  25507. height: math.unit("59", "inches"),
  25508. weight: math.unit("179.7", "lbs"),
  25509. name: "Male",
  25510. image: {
  25511. source: "./media/pokemon/Pyroar - Male.svg"
  25512. },
  25513. rename: true
  25514. }
  25515. },
  25516. [
  25517. {
  25518. name: "Micro",
  25519. height: math.unit(5.9, "inches")
  25520. },
  25521. {
  25522. name: "Normal",
  25523. height: math.unit(59, "inches"),
  25524. default: true
  25525. },
  25526. {
  25527. name: "Macro",
  25528. height: math.unit(5900.0, "inches")
  25529. },
  25530. {
  25531. name: "Megamacro",
  25532. height: math.unit(295000.0, "inches")
  25533. },
  25534. {
  25535. name: "Gigamacro",
  25536. height: math.unit(590000000.0, "inches")
  25537. }
  25538. ]
  25539. )
  25540. };
  25541. pokemonMakers["Pyukumuku"] = () => {
  25542. return makeCharacter(
  25543. { name: "Pyukumuku" },
  25544. {
  25545. "Pyukumuku": {
  25546. height: math.unit("12", "inches"),
  25547. weight: math.unit("2.6", "lbs"),
  25548. name: "Pyukumuku",
  25549. image: {
  25550. source: "./media/pokemon/Pyukumuku.svg"
  25551. },
  25552. rename: true
  25553. }
  25554. },
  25555. [
  25556. {
  25557. name: "Micro",
  25558. height: math.unit(1.2, "inches")
  25559. },
  25560. {
  25561. name: "Normal",
  25562. height: math.unit(12, "inches"),
  25563. default: true
  25564. },
  25565. {
  25566. name: "Macro",
  25567. height: math.unit(1200.0, "inches")
  25568. },
  25569. {
  25570. name: "Megamacro",
  25571. height: math.unit(60000.0, "inches")
  25572. },
  25573. {
  25574. name: "Gigamacro",
  25575. height: math.unit(120000000.0, "inches")
  25576. }
  25577. ]
  25578. )
  25579. };
  25580. pokemonMakers["Quagsire"] = () => {
  25581. return makeCharacter(
  25582. { name: "Quagsire" },
  25583. {
  25584. "Quagsire": {
  25585. height: math.unit("55", "inches"),
  25586. weight: math.unit("165.3", "lbs"),
  25587. name: "Quagsire",
  25588. image: {
  25589. source: "./media/pokemon/Quagsire.svg"
  25590. },
  25591. rename: true
  25592. }
  25593. },
  25594. [
  25595. {
  25596. name: "Micro",
  25597. height: math.unit(5.5, "inches")
  25598. },
  25599. {
  25600. name: "Normal",
  25601. height: math.unit(55, "inches"),
  25602. default: true
  25603. },
  25604. {
  25605. name: "Macro",
  25606. height: math.unit(5500.0, "inches")
  25607. },
  25608. {
  25609. name: "Megamacro",
  25610. height: math.unit(275000.0, "inches")
  25611. },
  25612. {
  25613. name: "Gigamacro",
  25614. height: math.unit(550000000.0, "inches")
  25615. }
  25616. ]
  25617. )
  25618. };
  25619. pokemonMakers["Quilava"] = () => {
  25620. return makeCharacter(
  25621. { name: "Quilava" },
  25622. {
  25623. "Quilava": {
  25624. height: math.unit("35", "inches"),
  25625. weight: math.unit("41.9", "lbs"),
  25626. name: "Quilava",
  25627. image: {
  25628. source: "./media/pokemon/Quilava.svg"
  25629. },
  25630. rename: true
  25631. }
  25632. },
  25633. [
  25634. {
  25635. name: "Micro",
  25636. height: math.unit(3.5, "inches")
  25637. },
  25638. {
  25639. name: "Normal",
  25640. height: math.unit(35, "inches"),
  25641. default: true
  25642. },
  25643. {
  25644. name: "Macro",
  25645. height: math.unit(3500.0, "inches")
  25646. },
  25647. {
  25648. name: "Megamacro",
  25649. height: math.unit(175000.0, "inches")
  25650. },
  25651. {
  25652. name: "Gigamacro",
  25653. height: math.unit(350000000.0, "inches")
  25654. }
  25655. ]
  25656. )
  25657. };
  25658. pokemonMakers["Quilladin"] = () => {
  25659. return makeCharacter(
  25660. { name: "Quilladin" },
  25661. {
  25662. "Quilladin": {
  25663. height: math.unit("28", "inches"),
  25664. weight: math.unit("63.9", "lbs"),
  25665. name: "Quilladin",
  25666. image: {
  25667. source: "./media/pokemon/Quilladin.svg"
  25668. },
  25669. rename: true
  25670. }
  25671. },
  25672. [
  25673. {
  25674. name: "Micro",
  25675. height: math.unit(2.8, "inches")
  25676. },
  25677. {
  25678. name: "Normal",
  25679. height: math.unit(28, "inches"),
  25680. default: true
  25681. },
  25682. {
  25683. name: "Macro",
  25684. height: math.unit(2800.0, "inches")
  25685. },
  25686. {
  25687. name: "Megamacro",
  25688. height: math.unit(140000.0, "inches")
  25689. },
  25690. {
  25691. name: "Gigamacro",
  25692. height: math.unit(280000000.0, "inches")
  25693. }
  25694. ]
  25695. )
  25696. };
  25697. pokemonMakers["Qwilfish"] = () => {
  25698. return makeCharacter(
  25699. { name: "Qwilfish" },
  25700. {
  25701. "Qwilfish": {
  25702. height: math.unit("20", "inches"),
  25703. weight: math.unit("8.6", "lbs"),
  25704. name: "Qwilfish",
  25705. image: {
  25706. source: "./media/pokemon/Qwilfish.svg"
  25707. },
  25708. rename: true
  25709. }
  25710. },
  25711. [
  25712. {
  25713. name: "Micro",
  25714. height: math.unit(2.0, "inches")
  25715. },
  25716. {
  25717. name: "Normal",
  25718. height: math.unit(20, "inches"),
  25719. default: true
  25720. },
  25721. {
  25722. name: "Macro",
  25723. height: math.unit(2000.0, "inches")
  25724. },
  25725. {
  25726. name: "Megamacro",
  25727. height: math.unit(100000.0, "inches")
  25728. },
  25729. {
  25730. name: "Gigamacro",
  25731. height: math.unit(200000000.0, "inches")
  25732. }
  25733. ]
  25734. )
  25735. };
  25736. pokemonMakers["Raboot"] = () => {
  25737. return makeCharacter(
  25738. { name: "Raboot" },
  25739. {
  25740. "Raboot": {
  25741. height: math.unit("24", "inches"),
  25742. weight: math.unit("19.8", "lbs"),
  25743. name: "Raboot",
  25744. image: {
  25745. source: "./media/pokemon/Raboot.svg"
  25746. },
  25747. rename: true
  25748. }
  25749. },
  25750. [
  25751. {
  25752. name: "Micro",
  25753. height: math.unit(2.4, "inches")
  25754. },
  25755. {
  25756. name: "Normal",
  25757. height: math.unit(24, "inches"),
  25758. default: true
  25759. },
  25760. {
  25761. name: "Macro",
  25762. height: math.unit(2400.0, "inches")
  25763. },
  25764. {
  25765. name: "Megamacro",
  25766. height: math.unit(120000.0, "inches")
  25767. },
  25768. {
  25769. name: "Gigamacro",
  25770. height: math.unit(240000000.0, "inches")
  25771. }
  25772. ]
  25773. )
  25774. };
  25775. pokemonMakers["Raichu"] = () => {
  25776. return makeCharacter(
  25777. { name: "Raichu" },
  25778. {
  25779. "Alola Form": {
  25780. height: math.unit("28", "inches"),
  25781. weight: math.unit("46.3", "lbs"),
  25782. name: "Alola Form",
  25783. image: {
  25784. source: "./media/pokemon/Raichu - Alola Form.svg"
  25785. },
  25786. rename: true
  25787. },
  25788. "Raichu": {
  25789. height: math.unit("31", "inches"),
  25790. weight: math.unit("66.1", "lbs"),
  25791. name: "Raichu",
  25792. image: {
  25793. source: "./media/pokemon/Raichu.svg"
  25794. },
  25795. rename: true
  25796. }
  25797. },
  25798. [
  25799. {
  25800. name: "Micro",
  25801. height: math.unit(2.8, "inches")
  25802. },
  25803. {
  25804. name: "Normal",
  25805. height: math.unit(28, "inches"),
  25806. default: true
  25807. },
  25808. {
  25809. name: "Macro",
  25810. height: math.unit(2800.0, "inches")
  25811. },
  25812. {
  25813. name: "Megamacro",
  25814. height: math.unit(140000.0, "inches")
  25815. },
  25816. {
  25817. name: "Gigamacro",
  25818. height: math.unit(280000000.0, "inches")
  25819. }
  25820. ]
  25821. )
  25822. };
  25823. pokemonMakers["Raikou"] = () => {
  25824. return makeCharacter(
  25825. { name: "Raikou" },
  25826. {
  25827. "Raikou": {
  25828. height: math.unit("75", "inches"),
  25829. weight: math.unit("392.4", "lbs"),
  25830. name: "Raikou",
  25831. image: {
  25832. source: "./media/pokemon/Raikou.svg"
  25833. },
  25834. rename: true
  25835. }
  25836. },
  25837. [
  25838. {
  25839. name: "Micro",
  25840. height: math.unit(7.5, "inches")
  25841. },
  25842. {
  25843. name: "Normal",
  25844. height: math.unit(75, "inches"),
  25845. default: true
  25846. },
  25847. {
  25848. name: "Macro",
  25849. height: math.unit(7500.0, "inches")
  25850. },
  25851. {
  25852. name: "Megamacro",
  25853. height: math.unit(375000.0, "inches")
  25854. },
  25855. {
  25856. name: "Gigamacro",
  25857. height: math.unit(750000000.0, "inches")
  25858. }
  25859. ]
  25860. )
  25861. };
  25862. pokemonMakers["Ralts"] = () => {
  25863. return makeCharacter(
  25864. { name: "Ralts" },
  25865. {
  25866. "Ralts": {
  25867. height: math.unit("16", "inches"),
  25868. weight: math.unit("14.6", "lbs"),
  25869. name: "Ralts",
  25870. image: {
  25871. source: "./media/pokemon/Ralts.svg"
  25872. },
  25873. rename: true
  25874. }
  25875. },
  25876. [
  25877. {
  25878. name: "Micro",
  25879. height: math.unit(1.6, "inches")
  25880. },
  25881. {
  25882. name: "Normal",
  25883. height: math.unit(16, "inches"),
  25884. default: true
  25885. },
  25886. {
  25887. name: "Macro",
  25888. height: math.unit(1600.0, "inches")
  25889. },
  25890. {
  25891. name: "Megamacro",
  25892. height: math.unit(80000.0, "inches")
  25893. },
  25894. {
  25895. name: "Gigamacro",
  25896. height: math.unit(160000000.0, "inches")
  25897. }
  25898. ]
  25899. )
  25900. };
  25901. pokemonMakers["Rampardos"] = () => {
  25902. return makeCharacter(
  25903. { name: "Rampardos" },
  25904. {
  25905. "Rampardos": {
  25906. height: math.unit("63", "inches"),
  25907. weight: math.unit("226.0", "lbs"),
  25908. name: "Rampardos",
  25909. image: {
  25910. source: "./media/pokemon/Rampardos.svg"
  25911. },
  25912. rename: true
  25913. }
  25914. },
  25915. [
  25916. {
  25917. name: "Micro",
  25918. height: math.unit(6.3, "inches")
  25919. },
  25920. {
  25921. name: "Normal",
  25922. height: math.unit(63, "inches"),
  25923. default: true
  25924. },
  25925. {
  25926. name: "Macro",
  25927. height: math.unit(6300.0, "inches")
  25928. },
  25929. {
  25930. name: "Megamacro",
  25931. height: math.unit(315000.0, "inches")
  25932. },
  25933. {
  25934. name: "Gigamacro",
  25935. height: math.unit(630000000.0, "inches")
  25936. }
  25937. ]
  25938. )
  25939. };
  25940. pokemonMakers["Rapidash"] = () => {
  25941. return makeCharacter(
  25942. { name: "Rapidash" },
  25943. {
  25944. "Galarian Form": {
  25945. height: math.unit("67", "inches"),
  25946. weight: math.unit("176.4", "lbs"),
  25947. name: "Galarian Form",
  25948. image: {
  25949. source: "./media/pokemon/Rapidash - Galarian Form.svg"
  25950. },
  25951. rename: true
  25952. },
  25953. "Rapidash": {
  25954. height: math.unit("67", "inches"),
  25955. weight: math.unit("209.4", "lbs"),
  25956. name: "Rapidash",
  25957. image: {
  25958. source: "./media/pokemon/Rapidash.svg"
  25959. },
  25960. rename: true
  25961. }
  25962. },
  25963. [
  25964. {
  25965. name: "Micro",
  25966. height: math.unit(6.7, "inches")
  25967. },
  25968. {
  25969. name: "Normal",
  25970. height: math.unit(67, "inches"),
  25971. default: true
  25972. },
  25973. {
  25974. name: "Macro",
  25975. height: math.unit(6700.0, "inches")
  25976. },
  25977. {
  25978. name: "Megamacro",
  25979. height: math.unit(335000.0, "inches")
  25980. },
  25981. {
  25982. name: "Gigamacro",
  25983. height: math.unit(670000000.0, "inches")
  25984. }
  25985. ]
  25986. )
  25987. };
  25988. pokemonMakers["Raticate"] = () => {
  25989. return makeCharacter(
  25990. { name: "Raticate" },
  25991. {
  25992. "Alola Form": {
  25993. height: math.unit("28", "inches"),
  25994. weight: math.unit("56.2", "lbs"),
  25995. name: "Alola Form",
  25996. image: {
  25997. source: "./media/pokemon/Raticate - Alola Form.svg"
  25998. },
  25999. rename: true
  26000. },
  26001. "Raticate": {
  26002. height: math.unit("28", "inches"),
  26003. weight: math.unit("40.8", "lbs"),
  26004. name: "Raticate",
  26005. image: {
  26006. source: "./media/pokemon/Raticate.svg"
  26007. },
  26008. rename: true
  26009. }
  26010. },
  26011. [
  26012. {
  26013. name: "Micro",
  26014. height: math.unit(2.8, "inches")
  26015. },
  26016. {
  26017. name: "Normal",
  26018. height: math.unit(28, "inches"),
  26019. default: true
  26020. },
  26021. {
  26022. name: "Macro",
  26023. height: math.unit(2800.0, "inches")
  26024. },
  26025. {
  26026. name: "Megamacro",
  26027. height: math.unit(140000.0, "inches")
  26028. },
  26029. {
  26030. name: "Gigamacro",
  26031. height: math.unit(280000000.0, "inches")
  26032. }
  26033. ]
  26034. )
  26035. };
  26036. pokemonMakers["Rattata"] = () => {
  26037. return makeCharacter(
  26038. { name: "Rattata" },
  26039. {
  26040. "Alola Form": {
  26041. height: math.unit("12", "inches"),
  26042. weight: math.unit("8.4", "lbs"),
  26043. name: "Alola Form",
  26044. image: {
  26045. source: "./media/pokemon/Rattata - Alola Form.svg"
  26046. },
  26047. rename: true
  26048. },
  26049. "Rattata": {
  26050. height: math.unit("12", "inches"),
  26051. weight: math.unit("7.7", "lbs"),
  26052. name: "Rattata",
  26053. image: {
  26054. source: "./media/pokemon/Rattata.svg"
  26055. },
  26056. rename: true
  26057. }
  26058. },
  26059. [
  26060. {
  26061. name: "Micro",
  26062. height: math.unit(1.2, "inches")
  26063. },
  26064. {
  26065. name: "Normal",
  26066. height: math.unit(12, "inches"),
  26067. default: true
  26068. },
  26069. {
  26070. name: "Macro",
  26071. height: math.unit(1200.0, "inches")
  26072. },
  26073. {
  26074. name: "Megamacro",
  26075. height: math.unit(60000.0, "inches")
  26076. },
  26077. {
  26078. name: "Gigamacro",
  26079. height: math.unit(120000000.0, "inches")
  26080. }
  26081. ]
  26082. )
  26083. };
  26084. pokemonMakers["Regice"] = () => {
  26085. return makeCharacter(
  26086. { name: "Regice" },
  26087. {
  26088. "Regice": {
  26089. height: math.unit("71", "inches"),
  26090. weight: math.unit("385.8", "lbs"),
  26091. name: "Regice",
  26092. image: {
  26093. source: "./media/pokemon/Regice.svg"
  26094. },
  26095. rename: true
  26096. }
  26097. },
  26098. [
  26099. {
  26100. name: "Micro",
  26101. height: math.unit(7.1, "inches")
  26102. },
  26103. {
  26104. name: "Normal",
  26105. height: math.unit(71, "inches"),
  26106. default: true
  26107. },
  26108. {
  26109. name: "Macro",
  26110. height: math.unit(7100.0, "inches")
  26111. },
  26112. {
  26113. name: "Megamacro",
  26114. height: math.unit(355000.0, "inches")
  26115. },
  26116. {
  26117. name: "Gigamacro",
  26118. height: math.unit(710000000.0, "inches")
  26119. }
  26120. ]
  26121. )
  26122. };
  26123. pokemonMakers["Regigigas"] = () => {
  26124. return makeCharacter(
  26125. { name: "Regigigas" },
  26126. {
  26127. "Regigigas": {
  26128. height: math.unit("146", "inches"),
  26129. weight: math.unit("925.9", "lbs"),
  26130. name: "Regigigas",
  26131. image: {
  26132. source: "./media/pokemon/Regigigas.svg"
  26133. },
  26134. rename: true
  26135. }
  26136. },
  26137. [
  26138. {
  26139. name: "Micro",
  26140. height: math.unit(14.6, "inches")
  26141. },
  26142. {
  26143. name: "Normal",
  26144. height: math.unit(146, "inches"),
  26145. default: true
  26146. },
  26147. {
  26148. name: "Macro",
  26149. height: math.unit(14600.0, "inches")
  26150. },
  26151. {
  26152. name: "Megamacro",
  26153. height: math.unit(730000.0, "inches")
  26154. },
  26155. {
  26156. name: "Gigamacro",
  26157. height: math.unit(1460000000.0, "inches")
  26158. }
  26159. ]
  26160. )
  26161. };
  26162. pokemonMakers["Regirock"] = () => {
  26163. return makeCharacter(
  26164. { name: "Regirock" },
  26165. {
  26166. "Regirock": {
  26167. height: math.unit("67", "inches"),
  26168. weight: math.unit("507.1", "lbs"),
  26169. name: "Regirock",
  26170. image: {
  26171. source: "./media/pokemon/Regirock.svg"
  26172. },
  26173. rename: true
  26174. }
  26175. },
  26176. [
  26177. {
  26178. name: "Micro",
  26179. height: math.unit(6.7, "inches")
  26180. },
  26181. {
  26182. name: "Normal",
  26183. height: math.unit(67, "inches"),
  26184. default: true
  26185. },
  26186. {
  26187. name: "Macro",
  26188. height: math.unit(6700.0, "inches")
  26189. },
  26190. {
  26191. name: "Megamacro",
  26192. height: math.unit(335000.0, "inches")
  26193. },
  26194. {
  26195. name: "Gigamacro",
  26196. height: math.unit(670000000.0, "inches")
  26197. }
  26198. ]
  26199. )
  26200. };
  26201. pokemonMakers["Registeel"] = () => {
  26202. return makeCharacter(
  26203. { name: "Registeel" },
  26204. {
  26205. "Registeel": {
  26206. height: math.unit("75", "inches"),
  26207. weight: math.unit("451.9", "lbs"),
  26208. name: "Registeel",
  26209. image: {
  26210. source: "./media/pokemon/Registeel.svg"
  26211. },
  26212. rename: true
  26213. }
  26214. },
  26215. [
  26216. {
  26217. name: "Micro",
  26218. height: math.unit(7.5, "inches")
  26219. },
  26220. {
  26221. name: "Normal",
  26222. height: math.unit(75, "inches"),
  26223. default: true
  26224. },
  26225. {
  26226. name: "Macro",
  26227. height: math.unit(7500.0, "inches")
  26228. },
  26229. {
  26230. name: "Megamacro",
  26231. height: math.unit(375000.0, "inches")
  26232. },
  26233. {
  26234. name: "Gigamacro",
  26235. height: math.unit(750000000.0, "inches")
  26236. }
  26237. ]
  26238. )
  26239. };
  26240. pokemonMakers["Relicanth"] = () => {
  26241. return makeCharacter(
  26242. { name: "Relicanth" },
  26243. {
  26244. "Relicanth": {
  26245. height: math.unit("39", "inches"),
  26246. weight: math.unit("51.6", "lbs"),
  26247. name: "Relicanth",
  26248. image: {
  26249. source: "./media/pokemon/Relicanth.svg"
  26250. },
  26251. rename: true
  26252. }
  26253. },
  26254. [
  26255. {
  26256. name: "Micro",
  26257. height: math.unit(3.9, "inches")
  26258. },
  26259. {
  26260. name: "Normal",
  26261. height: math.unit(39, "inches"),
  26262. default: true
  26263. },
  26264. {
  26265. name: "Macro",
  26266. height: math.unit(3900.0, "inches")
  26267. },
  26268. {
  26269. name: "Megamacro",
  26270. height: math.unit(195000.0, "inches")
  26271. },
  26272. {
  26273. name: "Gigamacro",
  26274. height: math.unit(390000000.0, "inches")
  26275. }
  26276. ]
  26277. )
  26278. };
  26279. pokemonMakers["Remoraid"] = () => {
  26280. return makeCharacter(
  26281. { name: "Remoraid" },
  26282. {
  26283. "Remoraid": {
  26284. height: math.unit("24", "inches"),
  26285. weight: math.unit("26.5", "lbs"),
  26286. name: "Remoraid",
  26287. image: {
  26288. source: "./media/pokemon/Remoraid.svg"
  26289. },
  26290. rename: true
  26291. }
  26292. },
  26293. [
  26294. {
  26295. name: "Micro",
  26296. height: math.unit(2.4, "inches")
  26297. },
  26298. {
  26299. name: "Normal",
  26300. height: math.unit(24, "inches"),
  26301. default: true
  26302. },
  26303. {
  26304. name: "Macro",
  26305. height: math.unit(2400.0, "inches")
  26306. },
  26307. {
  26308. name: "Megamacro",
  26309. height: math.unit(120000.0, "inches")
  26310. },
  26311. {
  26312. name: "Gigamacro",
  26313. height: math.unit(240000000.0, "inches")
  26314. }
  26315. ]
  26316. )
  26317. };
  26318. pokemonMakers["Reshiram"] = () => {
  26319. return makeCharacter(
  26320. { name: "Reshiram" },
  26321. {
  26322. "Reshiram": {
  26323. height: math.unit("126", "inches"),
  26324. weight: math.unit("727.5", "lbs"),
  26325. name: "Reshiram",
  26326. image: {
  26327. source: "./media/pokemon/Reshiram.svg"
  26328. },
  26329. rename: true
  26330. }
  26331. },
  26332. [
  26333. {
  26334. name: "Micro",
  26335. height: math.unit(12.6, "inches")
  26336. },
  26337. {
  26338. name: "Normal",
  26339. height: math.unit(126, "inches"),
  26340. default: true
  26341. },
  26342. {
  26343. name: "Macro",
  26344. height: math.unit(12600.0, "inches")
  26345. },
  26346. {
  26347. name: "Megamacro",
  26348. height: math.unit(630000.0, "inches")
  26349. },
  26350. {
  26351. name: "Gigamacro",
  26352. height: math.unit(1260000000.0, "inches")
  26353. }
  26354. ]
  26355. )
  26356. };
  26357. pokemonMakers["Reuniclus"] = () => {
  26358. return makeCharacter(
  26359. { name: "Reuniclus" },
  26360. {
  26361. "Reuniclus": {
  26362. height: math.unit("39", "inches"),
  26363. weight: math.unit("44.3", "lbs"),
  26364. name: "Reuniclus",
  26365. image: {
  26366. source: "./media/pokemon/Reuniclus.svg"
  26367. },
  26368. rename: true
  26369. }
  26370. },
  26371. [
  26372. {
  26373. name: "Micro",
  26374. height: math.unit(3.9, "inches")
  26375. },
  26376. {
  26377. name: "Normal",
  26378. height: math.unit(39, "inches"),
  26379. default: true
  26380. },
  26381. {
  26382. name: "Macro",
  26383. height: math.unit(3900.0, "inches")
  26384. },
  26385. {
  26386. name: "Megamacro",
  26387. height: math.unit(195000.0, "inches")
  26388. },
  26389. {
  26390. name: "Gigamacro",
  26391. height: math.unit(390000000.0, "inches")
  26392. }
  26393. ]
  26394. )
  26395. };
  26396. pokemonMakers["Rhydon"] = () => {
  26397. return makeCharacter(
  26398. { name: "Rhydon" },
  26399. {
  26400. "Rhydon": {
  26401. height: math.unit("75", "inches"),
  26402. weight: math.unit("264.6", "lbs"),
  26403. name: "Rhydon",
  26404. image: {
  26405. source: "./media/pokemon/Rhydon.svg"
  26406. },
  26407. rename: true
  26408. }
  26409. },
  26410. [
  26411. {
  26412. name: "Micro",
  26413. height: math.unit(7.5, "inches")
  26414. },
  26415. {
  26416. name: "Normal",
  26417. height: math.unit(75, "inches"),
  26418. default: true
  26419. },
  26420. {
  26421. name: "Macro",
  26422. height: math.unit(7500.0, "inches")
  26423. },
  26424. {
  26425. name: "Megamacro",
  26426. height: math.unit(375000.0, "inches")
  26427. },
  26428. {
  26429. name: "Gigamacro",
  26430. height: math.unit(750000000.0, "inches")
  26431. }
  26432. ]
  26433. )
  26434. };
  26435. pokemonMakers["Rhyhorn"] = () => {
  26436. return makeCharacter(
  26437. { name: "Rhyhorn" },
  26438. {
  26439. "Rhyhorn": {
  26440. height: math.unit("39", "inches"),
  26441. weight: math.unit("253.5", "lbs"),
  26442. name: "Rhyhorn",
  26443. image: {
  26444. source: "./media/pokemon/Rhyhorn.svg"
  26445. },
  26446. rename: true
  26447. }
  26448. },
  26449. [
  26450. {
  26451. name: "Micro",
  26452. height: math.unit(3.9, "inches")
  26453. },
  26454. {
  26455. name: "Normal",
  26456. height: math.unit(39, "inches"),
  26457. default: true
  26458. },
  26459. {
  26460. name: "Macro",
  26461. height: math.unit(3900.0, "inches")
  26462. },
  26463. {
  26464. name: "Megamacro",
  26465. height: math.unit(195000.0, "inches")
  26466. },
  26467. {
  26468. name: "Gigamacro",
  26469. height: math.unit(390000000.0, "inches")
  26470. }
  26471. ]
  26472. )
  26473. };
  26474. pokemonMakers["Rhyperior"] = () => {
  26475. return makeCharacter(
  26476. { name: "Rhyperior" },
  26477. {
  26478. "Rhyperior": {
  26479. height: math.unit("94", "inches"),
  26480. weight: math.unit("623.5", "lbs"),
  26481. name: "Rhyperior",
  26482. image: {
  26483. source: "./media/pokemon/Rhyperior.svg"
  26484. },
  26485. rename: true
  26486. }
  26487. },
  26488. [
  26489. {
  26490. name: "Micro",
  26491. height: math.unit(9.4, "inches")
  26492. },
  26493. {
  26494. name: "Normal",
  26495. height: math.unit(94, "inches"),
  26496. default: true
  26497. },
  26498. {
  26499. name: "Macro",
  26500. height: math.unit(9400.0, "inches")
  26501. },
  26502. {
  26503. name: "Megamacro",
  26504. height: math.unit(470000.0, "inches")
  26505. },
  26506. {
  26507. name: "Gigamacro",
  26508. height: math.unit(940000000.0, "inches")
  26509. }
  26510. ]
  26511. )
  26512. };
  26513. pokemonMakers["Ribombee"] = () => {
  26514. return makeCharacter(
  26515. { name: "Ribombee" },
  26516. {
  26517. "Ribombee": {
  26518. height: math.unit("8", "inches"),
  26519. weight: math.unit("1.1", "lbs"),
  26520. name: "Ribombee",
  26521. image: {
  26522. source: "./media/pokemon/Ribombee.svg"
  26523. },
  26524. rename: true
  26525. }
  26526. },
  26527. [
  26528. {
  26529. name: "Micro",
  26530. height: math.unit(0.8, "inches")
  26531. },
  26532. {
  26533. name: "Normal",
  26534. height: math.unit(8, "inches"),
  26535. default: true
  26536. },
  26537. {
  26538. name: "Macro",
  26539. height: math.unit(800.0, "inches")
  26540. },
  26541. {
  26542. name: "Megamacro",
  26543. height: math.unit(40000.0, "inches")
  26544. },
  26545. {
  26546. name: "Gigamacro",
  26547. height: math.unit(80000000.0, "inches")
  26548. }
  26549. ]
  26550. )
  26551. };
  26552. pokemonMakers["Rillaboom"] = () => {
  26553. return makeCharacter(
  26554. { name: "Rillaboom" },
  26555. {
  26556. "Rillaboom": {
  26557. height: math.unit("83", "inches"),
  26558. weight: math.unit("198.4", "lbs"),
  26559. name: "Rillaboom",
  26560. image: {
  26561. source: "./media/pokemon/Rillaboom.svg"
  26562. },
  26563. rename: true
  26564. }
  26565. },
  26566. [
  26567. {
  26568. name: "Micro",
  26569. height: math.unit(8.3, "inches")
  26570. },
  26571. {
  26572. name: "Normal",
  26573. height: math.unit(83, "inches"),
  26574. default: true
  26575. },
  26576. {
  26577. name: "Macro",
  26578. height: math.unit(8300.0, "inches")
  26579. },
  26580. {
  26581. name: "Megamacro",
  26582. height: math.unit(415000.0, "inches")
  26583. },
  26584. {
  26585. name: "Gigamacro",
  26586. height: math.unit(830000000.0, "inches")
  26587. }
  26588. ]
  26589. )
  26590. };
  26591. pokemonMakers["Riolu"] = () => {
  26592. return makeCharacter(
  26593. { name: "Riolu" },
  26594. {
  26595. "Riolu": {
  26596. height: math.unit("28", "inches"),
  26597. weight: math.unit("44.5", "lbs"),
  26598. name: "Riolu",
  26599. image: {
  26600. source: "./media/pokemon/Riolu.svg"
  26601. },
  26602. rename: true
  26603. }
  26604. },
  26605. [
  26606. {
  26607. name: "Micro",
  26608. height: math.unit(2.8, "inches")
  26609. },
  26610. {
  26611. name: "Normal",
  26612. height: math.unit(28, "inches"),
  26613. default: true
  26614. },
  26615. {
  26616. name: "Macro",
  26617. height: math.unit(2800.0, "inches")
  26618. },
  26619. {
  26620. name: "Megamacro",
  26621. height: math.unit(140000.0, "inches")
  26622. },
  26623. {
  26624. name: "Gigamacro",
  26625. height: math.unit(280000000.0, "inches")
  26626. }
  26627. ]
  26628. )
  26629. };
  26630. pokemonMakers["Rockruff"] = () => {
  26631. return makeCharacter(
  26632. { name: "Rockruff" },
  26633. {
  26634. "Rockruff": {
  26635. height: math.unit("20", "inches"),
  26636. weight: math.unit("20.3", "lbs"),
  26637. name: "Rockruff",
  26638. image: {
  26639. source: "./media/pokemon/Rockruff.svg"
  26640. },
  26641. rename: true
  26642. }
  26643. },
  26644. [
  26645. {
  26646. name: "Micro",
  26647. height: math.unit(2.0, "inches")
  26648. },
  26649. {
  26650. name: "Normal",
  26651. height: math.unit(20, "inches"),
  26652. default: true
  26653. },
  26654. {
  26655. name: "Macro",
  26656. height: math.unit(2000.0, "inches")
  26657. },
  26658. {
  26659. name: "Megamacro",
  26660. height: math.unit(100000.0, "inches")
  26661. },
  26662. {
  26663. name: "Gigamacro",
  26664. height: math.unit(200000000.0, "inches")
  26665. }
  26666. ]
  26667. )
  26668. };
  26669. pokemonMakers["Roggenrola"] = () => {
  26670. return makeCharacter(
  26671. { name: "Roggenrola" },
  26672. {
  26673. "Roggenrola": {
  26674. height: math.unit("16", "inches"),
  26675. weight: math.unit("39.7", "lbs"),
  26676. name: "Roggenrola",
  26677. image: {
  26678. source: "./media/pokemon/Roggenrola.svg"
  26679. },
  26680. rename: true
  26681. }
  26682. },
  26683. [
  26684. {
  26685. name: "Micro",
  26686. height: math.unit(1.6, "inches")
  26687. },
  26688. {
  26689. name: "Normal",
  26690. height: math.unit(16, "inches"),
  26691. default: true
  26692. },
  26693. {
  26694. name: "Macro",
  26695. height: math.unit(1600.0, "inches")
  26696. },
  26697. {
  26698. name: "Megamacro",
  26699. height: math.unit(80000.0, "inches")
  26700. },
  26701. {
  26702. name: "Gigamacro",
  26703. height: math.unit(160000000.0, "inches")
  26704. }
  26705. ]
  26706. )
  26707. };
  26708. pokemonMakers["Rolycoly"] = () => {
  26709. return makeCharacter(
  26710. { name: "Rolycoly" },
  26711. {
  26712. "Rolycoly": {
  26713. height: math.unit("12", "inches"),
  26714. weight: math.unit("26.5", "lbs"),
  26715. name: "Rolycoly",
  26716. image: {
  26717. source: "./media/pokemon/Rolycoly.svg"
  26718. },
  26719. rename: true
  26720. }
  26721. },
  26722. [
  26723. {
  26724. name: "Micro",
  26725. height: math.unit(1.2, "inches")
  26726. },
  26727. {
  26728. name: "Normal",
  26729. height: math.unit(12, "inches"),
  26730. default: true
  26731. },
  26732. {
  26733. name: "Macro",
  26734. height: math.unit(1200.0, "inches")
  26735. },
  26736. {
  26737. name: "Megamacro",
  26738. height: math.unit(60000.0, "inches")
  26739. },
  26740. {
  26741. name: "Gigamacro",
  26742. height: math.unit(120000000.0, "inches")
  26743. }
  26744. ]
  26745. )
  26746. };
  26747. pokemonMakers["Rookidee"] = () => {
  26748. return makeCharacter(
  26749. { name: "Rookidee" },
  26750. {
  26751. "Rookidee": {
  26752. height: math.unit("8", "inches"),
  26753. weight: math.unit("4.0", "lbs"),
  26754. name: "Rookidee",
  26755. image: {
  26756. source: "./media/pokemon/Rookidee.svg"
  26757. },
  26758. rename: true
  26759. }
  26760. },
  26761. [
  26762. {
  26763. name: "Micro",
  26764. height: math.unit(0.8, "inches")
  26765. },
  26766. {
  26767. name: "Normal",
  26768. height: math.unit(8, "inches"),
  26769. default: true
  26770. },
  26771. {
  26772. name: "Macro",
  26773. height: math.unit(800.0, "inches")
  26774. },
  26775. {
  26776. name: "Megamacro",
  26777. height: math.unit(40000.0, "inches")
  26778. },
  26779. {
  26780. name: "Gigamacro",
  26781. height: math.unit(80000000.0, "inches")
  26782. }
  26783. ]
  26784. )
  26785. };
  26786. pokemonMakers["Roselia"] = () => {
  26787. return makeCharacter(
  26788. { name: "Roselia" },
  26789. {
  26790. "Roselia": {
  26791. height: math.unit("12", "inches"),
  26792. weight: math.unit("4.4", "lbs"),
  26793. name: "Roselia",
  26794. image: {
  26795. source: "./media/pokemon/Roselia.svg"
  26796. },
  26797. rename: true
  26798. }
  26799. },
  26800. [
  26801. {
  26802. name: "Micro",
  26803. height: math.unit(1.2, "inches")
  26804. },
  26805. {
  26806. name: "Normal",
  26807. height: math.unit(12, "inches"),
  26808. default: true
  26809. },
  26810. {
  26811. name: "Macro",
  26812. height: math.unit(1200.0, "inches")
  26813. },
  26814. {
  26815. name: "Megamacro",
  26816. height: math.unit(60000.0, "inches")
  26817. },
  26818. {
  26819. name: "Gigamacro",
  26820. height: math.unit(120000000.0, "inches")
  26821. }
  26822. ]
  26823. )
  26824. };
  26825. pokemonMakers["Roserade"] = () => {
  26826. return makeCharacter(
  26827. { name: "Roserade" },
  26828. {
  26829. "Roserade": {
  26830. height: math.unit("35", "inches"),
  26831. weight: math.unit("32.0", "lbs"),
  26832. name: "Roserade",
  26833. image: {
  26834. source: "./media/pokemon/Roserade.svg"
  26835. },
  26836. rename: true
  26837. }
  26838. },
  26839. [
  26840. {
  26841. name: "Micro",
  26842. height: math.unit(3.5, "inches")
  26843. },
  26844. {
  26845. name: "Normal",
  26846. height: math.unit(35, "inches"),
  26847. default: true
  26848. },
  26849. {
  26850. name: "Macro",
  26851. height: math.unit(3500.0, "inches")
  26852. },
  26853. {
  26854. name: "Megamacro",
  26855. height: math.unit(175000.0, "inches")
  26856. },
  26857. {
  26858. name: "Gigamacro",
  26859. height: math.unit(350000000.0, "inches")
  26860. }
  26861. ]
  26862. )
  26863. };
  26864. pokemonMakers["Rowlet"] = () => {
  26865. return makeCharacter(
  26866. { name: "Rowlet" },
  26867. {
  26868. "Rowlet": {
  26869. height: math.unit("12", "inches"),
  26870. weight: math.unit("3.3", "lbs"),
  26871. name: "Rowlet",
  26872. image: {
  26873. source: "./media/pokemon/Rowlet.svg"
  26874. },
  26875. rename: true
  26876. }
  26877. },
  26878. [
  26879. {
  26880. name: "Micro",
  26881. height: math.unit(1.2, "inches")
  26882. },
  26883. {
  26884. name: "Normal",
  26885. height: math.unit(12, "inches"),
  26886. default: true
  26887. },
  26888. {
  26889. name: "Macro",
  26890. height: math.unit(1200.0, "inches")
  26891. },
  26892. {
  26893. name: "Megamacro",
  26894. height: math.unit(60000.0, "inches")
  26895. },
  26896. {
  26897. name: "Gigamacro",
  26898. height: math.unit(120000000.0, "inches")
  26899. }
  26900. ]
  26901. )
  26902. };
  26903. pokemonMakers["Rufflet"] = () => {
  26904. return makeCharacter(
  26905. { name: "Rufflet" },
  26906. {
  26907. "Rufflet": {
  26908. height: math.unit("20", "inches"),
  26909. weight: math.unit("23.1", "lbs"),
  26910. name: "Rufflet",
  26911. image: {
  26912. source: "./media/pokemon/Rufflet.svg"
  26913. },
  26914. rename: true
  26915. }
  26916. },
  26917. [
  26918. {
  26919. name: "Micro",
  26920. height: math.unit(2.0, "inches")
  26921. },
  26922. {
  26923. name: "Normal",
  26924. height: math.unit(20, "inches"),
  26925. default: true
  26926. },
  26927. {
  26928. name: "Macro",
  26929. height: math.unit(2000.0, "inches")
  26930. },
  26931. {
  26932. name: "Megamacro",
  26933. height: math.unit(100000.0, "inches")
  26934. },
  26935. {
  26936. name: "Gigamacro",
  26937. height: math.unit(200000000.0, "inches")
  26938. }
  26939. ]
  26940. )
  26941. };
  26942. pokemonMakers["Runerigus"] = () => {
  26943. return makeCharacter(
  26944. { name: "Runerigus" },
  26945. {
  26946. "Runerigus": {
  26947. height: math.unit("63", "inches"),
  26948. weight: math.unit("146.8", "lbs"),
  26949. name: "Runerigus",
  26950. image: {
  26951. source: "./media/pokemon/Runerigus.svg"
  26952. },
  26953. rename: true
  26954. }
  26955. },
  26956. [
  26957. {
  26958. name: "Micro",
  26959. height: math.unit(6.3, "inches")
  26960. },
  26961. {
  26962. name: "Normal",
  26963. height: math.unit(63, "inches"),
  26964. default: true
  26965. },
  26966. {
  26967. name: "Macro",
  26968. height: math.unit(6300.0, "inches")
  26969. },
  26970. {
  26971. name: "Megamacro",
  26972. height: math.unit(315000.0, "inches")
  26973. },
  26974. {
  26975. name: "Gigamacro",
  26976. height: math.unit(630000000.0, "inches")
  26977. }
  26978. ]
  26979. )
  26980. };
  26981. pokemonMakers["Salandit"] = () => {
  26982. return makeCharacter(
  26983. { name: "Salandit" },
  26984. {
  26985. "Salandit": {
  26986. height: math.unit("24", "inches"),
  26987. weight: math.unit("10.6", "lbs"),
  26988. name: "Salandit",
  26989. image: {
  26990. source: "./media/pokemon/Salandit.svg"
  26991. },
  26992. rename: true
  26993. }
  26994. },
  26995. [
  26996. {
  26997. name: "Micro",
  26998. height: math.unit(2.4, "inches")
  26999. },
  27000. {
  27001. name: "Normal",
  27002. height: math.unit(24, "inches"),
  27003. default: true
  27004. },
  27005. {
  27006. name: "Macro",
  27007. height: math.unit(2400.0, "inches")
  27008. },
  27009. {
  27010. name: "Megamacro",
  27011. height: math.unit(120000.0, "inches")
  27012. },
  27013. {
  27014. name: "Gigamacro",
  27015. height: math.unit(240000000.0, "inches")
  27016. }
  27017. ]
  27018. )
  27019. };
  27020. pokemonMakers["Salazzle"] = () => {
  27021. return makeCharacter(
  27022. { name: "Salazzle" },
  27023. {
  27024. "Salazzle": {
  27025. height: math.unit("47", "inches"),
  27026. weight: math.unit("48.9", "lbs"),
  27027. name: "Salazzle",
  27028. image: {
  27029. source: "./media/pokemon/Salazzle.svg"
  27030. },
  27031. rename: true
  27032. }
  27033. },
  27034. [
  27035. {
  27036. name: "Micro",
  27037. height: math.unit(4.7, "inches")
  27038. },
  27039. {
  27040. name: "Normal",
  27041. height: math.unit(47, "inches"),
  27042. default: true
  27043. },
  27044. {
  27045. name: "Macro",
  27046. height: math.unit(4700.0, "inches")
  27047. },
  27048. {
  27049. name: "Megamacro",
  27050. height: math.unit(235000.0, "inches")
  27051. },
  27052. {
  27053. name: "Gigamacro",
  27054. height: math.unit(470000000.0, "inches")
  27055. }
  27056. ]
  27057. )
  27058. };
  27059. pokemonMakers["Samurott"] = () => {
  27060. return makeCharacter(
  27061. { name: "Samurott" },
  27062. {
  27063. "Samurott": {
  27064. height: math.unit("59", "inches"),
  27065. weight: math.unit("208.6", "lbs"),
  27066. name: "Samurott",
  27067. image: {
  27068. source: "./media/pokemon/Samurott.svg"
  27069. },
  27070. rename: true
  27071. }
  27072. },
  27073. [
  27074. {
  27075. name: "Micro",
  27076. height: math.unit(5.9, "inches")
  27077. },
  27078. {
  27079. name: "Normal",
  27080. height: math.unit(59, "inches"),
  27081. default: true
  27082. },
  27083. {
  27084. name: "Macro",
  27085. height: math.unit(5900.0, "inches")
  27086. },
  27087. {
  27088. name: "Megamacro",
  27089. height: math.unit(295000.0, "inches")
  27090. },
  27091. {
  27092. name: "Gigamacro",
  27093. height: math.unit(590000000.0, "inches")
  27094. }
  27095. ]
  27096. )
  27097. };
  27098. pokemonMakers["Sandile"] = () => {
  27099. return makeCharacter(
  27100. { name: "Sandile" },
  27101. {
  27102. "Sandile": {
  27103. height: math.unit("28", "inches"),
  27104. weight: math.unit("33.5", "lbs"),
  27105. name: "Sandile",
  27106. image: {
  27107. source: "./media/pokemon/Sandile.svg"
  27108. },
  27109. rename: true
  27110. }
  27111. },
  27112. [
  27113. {
  27114. name: "Micro",
  27115. height: math.unit(2.8, "inches")
  27116. },
  27117. {
  27118. name: "Normal",
  27119. height: math.unit(28, "inches"),
  27120. default: true
  27121. },
  27122. {
  27123. name: "Macro",
  27124. height: math.unit(2800.0, "inches")
  27125. },
  27126. {
  27127. name: "Megamacro",
  27128. height: math.unit(140000.0, "inches")
  27129. },
  27130. {
  27131. name: "Gigamacro",
  27132. height: math.unit(280000000.0, "inches")
  27133. }
  27134. ]
  27135. )
  27136. };
  27137. pokemonMakers["Sandshrew"] = () => {
  27138. return makeCharacter(
  27139. { name: "Sandshrew" },
  27140. {
  27141. "Alola Form": {
  27142. height: math.unit("28", "inches"),
  27143. weight: math.unit("88.2", "lbs"),
  27144. name: "Alola Form",
  27145. image: {
  27146. source: "./media/pokemon/Sandshrew - Alola Form.svg"
  27147. },
  27148. rename: true
  27149. },
  27150. "Sandshrew": {
  27151. height: math.unit("24", "inches"),
  27152. weight: math.unit("26.5", "lbs"),
  27153. name: "Sandshrew",
  27154. image: {
  27155. source: "./media/pokemon/Sandshrew.svg"
  27156. },
  27157. rename: true
  27158. }
  27159. },
  27160. [
  27161. {
  27162. name: "Micro",
  27163. height: math.unit(2.8, "inches")
  27164. },
  27165. {
  27166. name: "Normal",
  27167. height: math.unit(28, "inches"),
  27168. default: true
  27169. },
  27170. {
  27171. name: "Macro",
  27172. height: math.unit(2800.0, "inches")
  27173. },
  27174. {
  27175. name: "Megamacro",
  27176. height: math.unit(140000.0, "inches")
  27177. },
  27178. {
  27179. name: "Gigamacro",
  27180. height: math.unit(280000000.0, "inches")
  27181. }
  27182. ]
  27183. )
  27184. };
  27185. pokemonMakers["Sandslash"] = () => {
  27186. return makeCharacter(
  27187. { name: "Sandslash" },
  27188. {
  27189. "Alola Form": {
  27190. height: math.unit("47", "inches"),
  27191. weight: math.unit("121.3", "lbs"),
  27192. name: "Alola Form",
  27193. image: {
  27194. source: "./media/pokemon/Sandslash - Alola Form.svg"
  27195. },
  27196. rename: true
  27197. },
  27198. "Sandslash": {
  27199. height: math.unit("39", "inches"),
  27200. weight: math.unit("65.0", "lbs"),
  27201. name: "Sandslash",
  27202. image: {
  27203. source: "./media/pokemon/Sandslash.svg"
  27204. },
  27205. rename: true
  27206. }
  27207. },
  27208. [
  27209. {
  27210. name: "Micro",
  27211. height: math.unit(4.7, "inches")
  27212. },
  27213. {
  27214. name: "Normal",
  27215. height: math.unit(47, "inches"),
  27216. default: true
  27217. },
  27218. {
  27219. name: "Macro",
  27220. height: math.unit(4700.0, "inches")
  27221. },
  27222. {
  27223. name: "Megamacro",
  27224. height: math.unit(235000.0, "inches")
  27225. },
  27226. {
  27227. name: "Gigamacro",
  27228. height: math.unit(470000000.0, "inches")
  27229. }
  27230. ]
  27231. )
  27232. };
  27233. pokemonMakers["Sandygast"] = () => {
  27234. return makeCharacter(
  27235. { name: "Sandygast" },
  27236. {
  27237. "Sandygast": {
  27238. height: math.unit("20", "inches"),
  27239. weight: math.unit("154.3", "lbs"),
  27240. name: "Sandygast",
  27241. image: {
  27242. source: "./media/pokemon/Sandygast.svg"
  27243. },
  27244. rename: true
  27245. }
  27246. },
  27247. [
  27248. {
  27249. name: "Micro",
  27250. height: math.unit(2.0, "inches")
  27251. },
  27252. {
  27253. name: "Normal",
  27254. height: math.unit(20, "inches"),
  27255. default: true
  27256. },
  27257. {
  27258. name: "Macro",
  27259. height: math.unit(2000.0, "inches")
  27260. },
  27261. {
  27262. name: "Megamacro",
  27263. height: math.unit(100000.0, "inches")
  27264. },
  27265. {
  27266. name: "Gigamacro",
  27267. height: math.unit(200000000.0, "inches")
  27268. }
  27269. ]
  27270. )
  27271. };
  27272. pokemonMakers["Sawk"] = () => {
  27273. return makeCharacter(
  27274. { name: "Sawk" },
  27275. {
  27276. "Sawk": {
  27277. height: math.unit("55", "inches"),
  27278. weight: math.unit("112.4", "lbs"),
  27279. name: "Sawk",
  27280. image: {
  27281. source: "./media/pokemon/Sawk.svg"
  27282. },
  27283. rename: true
  27284. }
  27285. },
  27286. [
  27287. {
  27288. name: "Micro",
  27289. height: math.unit(5.5, "inches")
  27290. },
  27291. {
  27292. name: "Normal",
  27293. height: math.unit(55, "inches"),
  27294. default: true
  27295. },
  27296. {
  27297. name: "Macro",
  27298. height: math.unit(5500.0, "inches")
  27299. },
  27300. {
  27301. name: "Megamacro",
  27302. height: math.unit(275000.0, "inches")
  27303. },
  27304. {
  27305. name: "Gigamacro",
  27306. height: math.unit(550000000.0, "inches")
  27307. }
  27308. ]
  27309. )
  27310. };
  27311. pokemonMakers["Sawsbuck"] = () => {
  27312. return makeCharacter(
  27313. { name: "Sawsbuck" },
  27314. {
  27315. "Autumn Form": {
  27316. height: math.unit("75", "inches"),
  27317. weight: math.unit("203.9", "lbs"),
  27318. name: "Autumn Form",
  27319. image: {
  27320. source: "./media/pokemon/Sawsbuck - Autumn Form.svg"
  27321. },
  27322. rename: true
  27323. },
  27324. "Spring Form": {
  27325. height: math.unit("75", "inches"),
  27326. weight: math.unit("203.9", "lbs"),
  27327. name: "Spring Form",
  27328. image: {
  27329. source: "./media/pokemon/Sawsbuck - Spring Form.svg"
  27330. },
  27331. rename: true
  27332. },
  27333. "Summer Form": {
  27334. height: math.unit("75", "inches"),
  27335. weight: math.unit("203.9", "lbs"),
  27336. name: "Summer Form",
  27337. image: {
  27338. source: "./media/pokemon/Sawsbuck - Summer Form.svg"
  27339. },
  27340. rename: true
  27341. },
  27342. "Winter Form": {
  27343. height: math.unit("75", "inches"),
  27344. weight: math.unit("203.9", "lbs"),
  27345. name: "Winter Form",
  27346. image: {
  27347. source: "./media/pokemon/Sawsbuck - Winter Form.svg"
  27348. },
  27349. rename: true
  27350. }
  27351. },
  27352. [
  27353. {
  27354. name: "Micro",
  27355. height: math.unit(7.5, "inches")
  27356. },
  27357. {
  27358. name: "Normal",
  27359. height: math.unit(75, "inches"),
  27360. default: true
  27361. },
  27362. {
  27363. name: "Macro",
  27364. height: math.unit(7500.0, "inches")
  27365. },
  27366. {
  27367. name: "Megamacro",
  27368. height: math.unit(375000.0, "inches")
  27369. },
  27370. {
  27371. name: "Gigamacro",
  27372. height: math.unit(750000000.0, "inches")
  27373. }
  27374. ]
  27375. )
  27376. };
  27377. pokemonMakers["Scatterbug"] = () => {
  27378. return makeCharacter(
  27379. { name: "Scatterbug" },
  27380. {
  27381. "Scatterbug": {
  27382. height: math.unit("12", "inches"),
  27383. weight: math.unit("5.5", "lbs"),
  27384. name: "Scatterbug",
  27385. image: {
  27386. source: "./media/pokemon/Scatterbug.svg"
  27387. },
  27388. rename: true
  27389. }
  27390. },
  27391. [
  27392. {
  27393. name: "Micro",
  27394. height: math.unit(1.2, "inches")
  27395. },
  27396. {
  27397. name: "Normal",
  27398. height: math.unit(12, "inches"),
  27399. default: true
  27400. },
  27401. {
  27402. name: "Macro",
  27403. height: math.unit(1200.0, "inches")
  27404. },
  27405. {
  27406. name: "Megamacro",
  27407. height: math.unit(60000.0, "inches")
  27408. },
  27409. {
  27410. name: "Gigamacro",
  27411. height: math.unit(120000000.0, "inches")
  27412. }
  27413. ]
  27414. )
  27415. };
  27416. pokemonMakers["Scolipede"] = () => {
  27417. return makeCharacter(
  27418. { name: "Scolipede" },
  27419. {
  27420. "Scolipede": {
  27421. height: math.unit("98", "inches"),
  27422. weight: math.unit("442.0", "lbs"),
  27423. name: "Scolipede",
  27424. image: {
  27425. source: "./media/pokemon/Scolipede.svg"
  27426. },
  27427. rename: true
  27428. }
  27429. },
  27430. [
  27431. {
  27432. name: "Micro",
  27433. height: math.unit(9.8, "inches")
  27434. },
  27435. {
  27436. name: "Normal",
  27437. height: math.unit(98, "inches"),
  27438. default: true
  27439. },
  27440. {
  27441. name: "Macro",
  27442. height: math.unit(9800.0, "inches")
  27443. },
  27444. {
  27445. name: "Megamacro",
  27446. height: math.unit(490000.0, "inches")
  27447. },
  27448. {
  27449. name: "Gigamacro",
  27450. height: math.unit(980000000.0, "inches")
  27451. }
  27452. ]
  27453. )
  27454. };
  27455. pokemonMakers["Scorbunny"] = () => {
  27456. return makeCharacter(
  27457. { name: "Scorbunny" },
  27458. {
  27459. "Scorbunny": {
  27460. height: math.unit("12", "inches"),
  27461. weight: math.unit("9.9", "lbs"),
  27462. name: "Scorbunny",
  27463. image: {
  27464. source: "./media/pokemon/Scorbunny.svg"
  27465. },
  27466. rename: true
  27467. }
  27468. },
  27469. [
  27470. {
  27471. name: "Micro",
  27472. height: math.unit(1.2, "inches")
  27473. },
  27474. {
  27475. name: "Normal",
  27476. height: math.unit(12, "inches"),
  27477. default: true
  27478. },
  27479. {
  27480. name: "Macro",
  27481. height: math.unit(1200.0, "inches")
  27482. },
  27483. {
  27484. name: "Megamacro",
  27485. height: math.unit(60000.0, "inches")
  27486. },
  27487. {
  27488. name: "Gigamacro",
  27489. height: math.unit(120000000.0, "inches")
  27490. }
  27491. ]
  27492. )
  27493. };
  27494. pokemonMakers["Scrafty"] = () => {
  27495. return makeCharacter(
  27496. { name: "Scrafty" },
  27497. {
  27498. "Scrafty": {
  27499. height: math.unit("43", "inches"),
  27500. weight: math.unit("66.1", "lbs"),
  27501. name: "Scrafty",
  27502. image: {
  27503. source: "./media/pokemon/Scrafty.svg"
  27504. },
  27505. rename: true
  27506. }
  27507. },
  27508. [
  27509. {
  27510. name: "Micro",
  27511. height: math.unit(4.3, "inches")
  27512. },
  27513. {
  27514. name: "Normal",
  27515. height: math.unit(43, "inches"),
  27516. default: true
  27517. },
  27518. {
  27519. name: "Macro",
  27520. height: math.unit(4300.0, "inches")
  27521. },
  27522. {
  27523. name: "Megamacro",
  27524. height: math.unit(215000.0, "inches")
  27525. },
  27526. {
  27527. name: "Gigamacro",
  27528. height: math.unit(430000000.0, "inches")
  27529. }
  27530. ]
  27531. )
  27532. };
  27533. pokemonMakers["Scraggy"] = () => {
  27534. return makeCharacter(
  27535. { name: "Scraggy" },
  27536. {
  27537. "Scraggy": {
  27538. height: math.unit("24", "inches"),
  27539. weight: math.unit("26.0", "lbs"),
  27540. name: "Scraggy",
  27541. image: {
  27542. source: "./media/pokemon/Scraggy.svg"
  27543. },
  27544. rename: true
  27545. }
  27546. },
  27547. [
  27548. {
  27549. name: "Micro",
  27550. height: math.unit(2.4, "inches")
  27551. },
  27552. {
  27553. name: "Normal",
  27554. height: math.unit(24, "inches"),
  27555. default: true
  27556. },
  27557. {
  27558. name: "Macro",
  27559. height: math.unit(2400.0, "inches")
  27560. },
  27561. {
  27562. name: "Megamacro",
  27563. height: math.unit(120000.0, "inches")
  27564. },
  27565. {
  27566. name: "Gigamacro",
  27567. height: math.unit(240000000.0, "inches")
  27568. }
  27569. ]
  27570. )
  27571. };
  27572. pokemonMakers["Scyther"] = () => {
  27573. return makeCharacter(
  27574. { name: "Scyther" },
  27575. {
  27576. "Scyther": {
  27577. height: math.unit("59", "inches"),
  27578. weight: math.unit("123.5", "lbs"),
  27579. name: "Scyther",
  27580. image: {
  27581. source: "./media/pokemon/Scyther.svg"
  27582. },
  27583. rename: true
  27584. }
  27585. },
  27586. [
  27587. {
  27588. name: "Micro",
  27589. height: math.unit(5.9, "inches")
  27590. },
  27591. {
  27592. name: "Normal",
  27593. height: math.unit(59, "inches"),
  27594. default: true
  27595. },
  27596. {
  27597. name: "Macro",
  27598. height: math.unit(5900.0, "inches")
  27599. },
  27600. {
  27601. name: "Megamacro",
  27602. height: math.unit(295000.0, "inches")
  27603. },
  27604. {
  27605. name: "Gigamacro",
  27606. height: math.unit(590000000.0, "inches")
  27607. }
  27608. ]
  27609. )
  27610. };
  27611. pokemonMakers["Seadra"] = () => {
  27612. return makeCharacter(
  27613. { name: "Seadra" },
  27614. {
  27615. "Seadra": {
  27616. height: math.unit("47", "inches"),
  27617. weight: math.unit("55.1", "lbs"),
  27618. name: "Seadra",
  27619. image: {
  27620. source: "./media/pokemon/Seadra.svg"
  27621. },
  27622. rename: true
  27623. }
  27624. },
  27625. [
  27626. {
  27627. name: "Micro",
  27628. height: math.unit(4.7, "inches")
  27629. },
  27630. {
  27631. name: "Normal",
  27632. height: math.unit(47, "inches"),
  27633. default: true
  27634. },
  27635. {
  27636. name: "Macro",
  27637. height: math.unit(4700.0, "inches")
  27638. },
  27639. {
  27640. name: "Megamacro",
  27641. height: math.unit(235000.0, "inches")
  27642. },
  27643. {
  27644. name: "Gigamacro",
  27645. height: math.unit(470000000.0, "inches")
  27646. }
  27647. ]
  27648. )
  27649. };
  27650. pokemonMakers["Seaking"] = () => {
  27651. return makeCharacter(
  27652. { name: "Seaking" },
  27653. {
  27654. "Seaking": {
  27655. height: math.unit("51", "inches"),
  27656. weight: math.unit("86.0", "lbs"),
  27657. name: "Seaking",
  27658. image: {
  27659. source: "./media/pokemon/Seaking.svg"
  27660. },
  27661. rename: true
  27662. }
  27663. },
  27664. [
  27665. {
  27666. name: "Micro",
  27667. height: math.unit(5.1, "inches")
  27668. },
  27669. {
  27670. name: "Normal",
  27671. height: math.unit(51, "inches"),
  27672. default: true
  27673. },
  27674. {
  27675. name: "Macro",
  27676. height: math.unit(5100.0, "inches")
  27677. },
  27678. {
  27679. name: "Megamacro",
  27680. height: math.unit(255000.0, "inches")
  27681. },
  27682. {
  27683. name: "Gigamacro",
  27684. height: math.unit(510000000.0, "inches")
  27685. }
  27686. ]
  27687. )
  27688. };
  27689. pokemonMakers["Sealeo"] = () => {
  27690. return makeCharacter(
  27691. { name: "Sealeo" },
  27692. {
  27693. "Sealeo": {
  27694. height: math.unit("43", "inches"),
  27695. weight: math.unit("193.1", "lbs"),
  27696. name: "Sealeo",
  27697. image: {
  27698. source: "./media/pokemon/Sealeo.svg"
  27699. },
  27700. rename: true
  27701. }
  27702. },
  27703. [
  27704. {
  27705. name: "Micro",
  27706. height: math.unit(4.3, "inches")
  27707. },
  27708. {
  27709. name: "Normal",
  27710. height: math.unit(43, "inches"),
  27711. default: true
  27712. },
  27713. {
  27714. name: "Macro",
  27715. height: math.unit(4300.0, "inches")
  27716. },
  27717. {
  27718. name: "Megamacro",
  27719. height: math.unit(215000.0, "inches")
  27720. },
  27721. {
  27722. name: "Gigamacro",
  27723. height: math.unit(430000000.0, "inches")
  27724. }
  27725. ]
  27726. )
  27727. };
  27728. pokemonMakers["Seedot"] = () => {
  27729. return makeCharacter(
  27730. { name: "Seedot" },
  27731. {
  27732. "Seedot": {
  27733. height: math.unit("20", "inches"),
  27734. weight: math.unit("8.8", "lbs"),
  27735. name: "Seedot",
  27736. image: {
  27737. source: "./media/pokemon/Seedot.svg"
  27738. },
  27739. rename: true
  27740. }
  27741. },
  27742. [
  27743. {
  27744. name: "Micro",
  27745. height: math.unit(2.0, "inches")
  27746. },
  27747. {
  27748. name: "Normal",
  27749. height: math.unit(20, "inches"),
  27750. default: true
  27751. },
  27752. {
  27753. name: "Macro",
  27754. height: math.unit(2000.0, "inches")
  27755. },
  27756. {
  27757. name: "Megamacro",
  27758. height: math.unit(100000.0, "inches")
  27759. },
  27760. {
  27761. name: "Gigamacro",
  27762. height: math.unit(200000000.0, "inches")
  27763. }
  27764. ]
  27765. )
  27766. };
  27767. pokemonMakers["Seel"] = () => {
  27768. return makeCharacter(
  27769. { name: "Seel" },
  27770. {
  27771. "Seel": {
  27772. height: math.unit("43", "inches"),
  27773. weight: math.unit("198.4", "lbs"),
  27774. name: "Seel",
  27775. image: {
  27776. source: "./media/pokemon/Seel.svg"
  27777. },
  27778. rename: true
  27779. }
  27780. },
  27781. [
  27782. {
  27783. name: "Micro",
  27784. height: math.unit(4.3, "inches")
  27785. },
  27786. {
  27787. name: "Normal",
  27788. height: math.unit(43, "inches"),
  27789. default: true
  27790. },
  27791. {
  27792. name: "Macro",
  27793. height: math.unit(4300.0, "inches")
  27794. },
  27795. {
  27796. name: "Megamacro",
  27797. height: math.unit(215000.0, "inches")
  27798. },
  27799. {
  27800. name: "Gigamacro",
  27801. height: math.unit(430000000.0, "inches")
  27802. }
  27803. ]
  27804. )
  27805. };
  27806. pokemonMakers["Seismitoad"] = () => {
  27807. return makeCharacter(
  27808. { name: "Seismitoad" },
  27809. {
  27810. "Seismitoad": {
  27811. height: math.unit("59", "inches"),
  27812. weight: math.unit("136.7", "lbs"),
  27813. name: "Seismitoad",
  27814. image: {
  27815. source: "./media/pokemon/Seismitoad.svg"
  27816. },
  27817. rename: true
  27818. }
  27819. },
  27820. [
  27821. {
  27822. name: "Micro",
  27823. height: math.unit(5.9, "inches")
  27824. },
  27825. {
  27826. name: "Normal",
  27827. height: math.unit(59, "inches"),
  27828. default: true
  27829. },
  27830. {
  27831. name: "Macro",
  27832. height: math.unit(5900.0, "inches")
  27833. },
  27834. {
  27835. name: "Megamacro",
  27836. height: math.unit(295000.0, "inches")
  27837. },
  27838. {
  27839. name: "Gigamacro",
  27840. height: math.unit(590000000.0, "inches")
  27841. }
  27842. ]
  27843. )
  27844. };
  27845. pokemonMakers["Sentret"] = () => {
  27846. return makeCharacter(
  27847. { name: "Sentret" },
  27848. {
  27849. "Sentret": {
  27850. height: math.unit("31", "inches"),
  27851. weight: math.unit("13.2", "lbs"),
  27852. name: "Sentret",
  27853. image: {
  27854. source: "./media/pokemon/Sentret.svg"
  27855. },
  27856. rename: true
  27857. }
  27858. },
  27859. [
  27860. {
  27861. name: "Micro",
  27862. height: math.unit(3.1, "inches")
  27863. },
  27864. {
  27865. name: "Normal",
  27866. height: math.unit(31, "inches"),
  27867. default: true
  27868. },
  27869. {
  27870. name: "Macro",
  27871. height: math.unit(3100.0, "inches")
  27872. },
  27873. {
  27874. name: "Megamacro",
  27875. height: math.unit(155000.0, "inches")
  27876. },
  27877. {
  27878. name: "Gigamacro",
  27879. height: math.unit(310000000.0, "inches")
  27880. }
  27881. ]
  27882. )
  27883. };
  27884. pokemonMakers["Serperior"] = () => {
  27885. return makeCharacter(
  27886. { name: "Serperior" },
  27887. {
  27888. "Serperior": {
  27889. height: math.unit("130", "inches"),
  27890. weight: math.unit("138.9", "lbs"),
  27891. name: "Serperior",
  27892. image: {
  27893. source: "./media/pokemon/Serperior.svg"
  27894. },
  27895. rename: true
  27896. }
  27897. },
  27898. [
  27899. {
  27900. name: "Micro",
  27901. height: math.unit(13.0, "inches")
  27902. },
  27903. {
  27904. name: "Normal",
  27905. height: math.unit(130, "inches"),
  27906. default: true
  27907. },
  27908. {
  27909. name: "Macro",
  27910. height: math.unit(13000.0, "inches")
  27911. },
  27912. {
  27913. name: "Megamacro",
  27914. height: math.unit(650000.0, "inches")
  27915. },
  27916. {
  27917. name: "Gigamacro",
  27918. height: math.unit(1300000000.0, "inches")
  27919. }
  27920. ]
  27921. )
  27922. };
  27923. pokemonMakers["Servine"] = () => {
  27924. return makeCharacter(
  27925. { name: "Servine" },
  27926. {
  27927. "Servine": {
  27928. height: math.unit("31", "inches"),
  27929. weight: math.unit("35.3", "lbs"),
  27930. name: "Servine",
  27931. image: {
  27932. source: "./media/pokemon/Servine.svg"
  27933. },
  27934. rename: true
  27935. }
  27936. },
  27937. [
  27938. {
  27939. name: "Micro",
  27940. height: math.unit(3.1, "inches")
  27941. },
  27942. {
  27943. name: "Normal",
  27944. height: math.unit(31, "inches"),
  27945. default: true
  27946. },
  27947. {
  27948. name: "Macro",
  27949. height: math.unit(3100.0, "inches")
  27950. },
  27951. {
  27952. name: "Megamacro",
  27953. height: math.unit(155000.0, "inches")
  27954. },
  27955. {
  27956. name: "Gigamacro",
  27957. height: math.unit(310000000.0, "inches")
  27958. }
  27959. ]
  27960. )
  27961. };
  27962. pokemonMakers["Seviper"] = () => {
  27963. return makeCharacter(
  27964. { name: "Seviper" },
  27965. {
  27966. "Seviper": {
  27967. height: math.unit("106", "inches"),
  27968. weight: math.unit("115.7", "lbs"),
  27969. name: "Seviper",
  27970. image: {
  27971. source: "./media/pokemon/Seviper.svg"
  27972. },
  27973. rename: true
  27974. }
  27975. },
  27976. [
  27977. {
  27978. name: "Micro",
  27979. height: math.unit(10.6, "inches")
  27980. },
  27981. {
  27982. name: "Normal",
  27983. height: math.unit(106, "inches"),
  27984. default: true
  27985. },
  27986. {
  27987. name: "Macro",
  27988. height: math.unit(10600.0, "inches")
  27989. },
  27990. {
  27991. name: "Megamacro",
  27992. height: math.unit(530000.0, "inches")
  27993. },
  27994. {
  27995. name: "Gigamacro",
  27996. height: math.unit(1060000000.0, "inches")
  27997. }
  27998. ]
  27999. )
  28000. };
  28001. pokemonMakers["Sewaddle"] = () => {
  28002. return makeCharacter(
  28003. { name: "Sewaddle" },
  28004. {
  28005. "Sewaddle": {
  28006. height: math.unit("12", "inches"),
  28007. weight: math.unit("5.5", "lbs"),
  28008. name: "Sewaddle",
  28009. image: {
  28010. source: "./media/pokemon/Sewaddle.svg"
  28011. },
  28012. rename: true
  28013. }
  28014. },
  28015. [
  28016. {
  28017. name: "Micro",
  28018. height: math.unit(1.2, "inches")
  28019. },
  28020. {
  28021. name: "Normal",
  28022. height: math.unit(12, "inches"),
  28023. default: true
  28024. },
  28025. {
  28026. name: "Macro",
  28027. height: math.unit(1200.0, "inches")
  28028. },
  28029. {
  28030. name: "Megamacro",
  28031. height: math.unit(60000.0, "inches")
  28032. },
  28033. {
  28034. name: "Gigamacro",
  28035. height: math.unit(120000000.0, "inches")
  28036. }
  28037. ]
  28038. )
  28039. };
  28040. pokemonMakers["Shaymin"] = () => {
  28041. return makeCharacter(
  28042. { name: "Shaymin" },
  28043. {
  28044. "Land Forme": {
  28045. height: math.unit("8", "inches"),
  28046. weight: math.unit("4.6", "lbs"),
  28047. name: "Land Forme",
  28048. image: {
  28049. source: "./media/pokemon/Shaymin - Land Forme.svg"
  28050. },
  28051. rename: true
  28052. },
  28053. "Sky Forme": {
  28054. height: math.unit("16", "inches"),
  28055. weight: math.unit("11.5", "lbs"),
  28056. name: "Sky Forme",
  28057. image: {
  28058. source: "./media/pokemon/Shaymin - Sky Forme.svg"
  28059. },
  28060. rename: true
  28061. }
  28062. },
  28063. [
  28064. {
  28065. name: "Micro",
  28066. height: math.unit(0.8, "inches")
  28067. },
  28068. {
  28069. name: "Normal",
  28070. height: math.unit(8, "inches"),
  28071. default: true
  28072. },
  28073. {
  28074. name: "Macro",
  28075. height: math.unit(800.0, "inches")
  28076. },
  28077. {
  28078. name: "Megamacro",
  28079. height: math.unit(40000.0, "inches")
  28080. },
  28081. {
  28082. name: "Gigamacro",
  28083. height: math.unit(80000000.0, "inches")
  28084. }
  28085. ]
  28086. )
  28087. };
  28088. pokemonMakers["Shedinja"] = () => {
  28089. return makeCharacter(
  28090. { name: "Shedinja" },
  28091. {
  28092. "Shedinja": {
  28093. height: math.unit("31", "inches"),
  28094. weight: math.unit("2.6", "lbs"),
  28095. name: "Shedinja",
  28096. image: {
  28097. source: "./media/pokemon/Shedinja.svg"
  28098. },
  28099. rename: true
  28100. }
  28101. },
  28102. [
  28103. {
  28104. name: "Micro",
  28105. height: math.unit(3.1, "inches")
  28106. },
  28107. {
  28108. name: "Normal",
  28109. height: math.unit(31, "inches"),
  28110. default: true
  28111. },
  28112. {
  28113. name: "Macro",
  28114. height: math.unit(3100.0, "inches")
  28115. },
  28116. {
  28117. name: "Megamacro",
  28118. height: math.unit(155000.0, "inches")
  28119. },
  28120. {
  28121. name: "Gigamacro",
  28122. height: math.unit(310000000.0, "inches")
  28123. }
  28124. ]
  28125. )
  28126. };
  28127. pokemonMakers["Shelgon"] = () => {
  28128. return makeCharacter(
  28129. { name: "Shelgon" },
  28130. {
  28131. "Shelgon": {
  28132. height: math.unit("43", "inches"),
  28133. weight: math.unit("243.6", "lbs"),
  28134. name: "Shelgon",
  28135. image: {
  28136. source: "./media/pokemon/Shelgon.svg"
  28137. },
  28138. rename: true
  28139. }
  28140. },
  28141. [
  28142. {
  28143. name: "Micro",
  28144. height: math.unit(4.3, "inches")
  28145. },
  28146. {
  28147. name: "Normal",
  28148. height: math.unit(43, "inches"),
  28149. default: true
  28150. },
  28151. {
  28152. name: "Macro",
  28153. height: math.unit(4300.0, "inches")
  28154. },
  28155. {
  28156. name: "Megamacro",
  28157. height: math.unit(215000.0, "inches")
  28158. },
  28159. {
  28160. name: "Gigamacro",
  28161. height: math.unit(430000000.0, "inches")
  28162. }
  28163. ]
  28164. )
  28165. };
  28166. pokemonMakers["Shellder"] = () => {
  28167. return makeCharacter(
  28168. { name: "Shellder" },
  28169. {
  28170. "Shellder": {
  28171. height: math.unit("12", "inches"),
  28172. weight: math.unit("8.8", "lbs"),
  28173. name: "Shellder",
  28174. image: {
  28175. source: "./media/pokemon/Shellder.svg"
  28176. },
  28177. rename: true
  28178. }
  28179. },
  28180. [
  28181. {
  28182. name: "Micro",
  28183. height: math.unit(1.2, "inches")
  28184. },
  28185. {
  28186. name: "Normal",
  28187. height: math.unit(12, "inches"),
  28188. default: true
  28189. },
  28190. {
  28191. name: "Macro",
  28192. height: math.unit(1200.0, "inches")
  28193. },
  28194. {
  28195. name: "Megamacro",
  28196. height: math.unit(60000.0, "inches")
  28197. },
  28198. {
  28199. name: "Gigamacro",
  28200. height: math.unit(120000000.0, "inches")
  28201. }
  28202. ]
  28203. )
  28204. };
  28205. pokemonMakers["Shellos"] = () => {
  28206. return makeCharacter(
  28207. { name: "Shellos" },
  28208. {
  28209. "East Sea": {
  28210. height: math.unit("12", "inches"),
  28211. weight: math.unit("13.9", "lbs"),
  28212. name: "East Sea",
  28213. image: {
  28214. source: "./media/pokemon/Shellos - East Sea.svg"
  28215. },
  28216. rename: true
  28217. },
  28218. "West Sea": {
  28219. height: math.unit("12", "inches"),
  28220. weight: math.unit("13.9", "lbs"),
  28221. name: "West Sea",
  28222. image: {
  28223. source: "./media/pokemon/Shellos - West Sea.svg"
  28224. },
  28225. rename: true
  28226. }
  28227. },
  28228. [
  28229. {
  28230. name: "Micro",
  28231. height: math.unit(1.2, "inches")
  28232. },
  28233. {
  28234. name: "Normal",
  28235. height: math.unit(12, "inches"),
  28236. default: true
  28237. },
  28238. {
  28239. name: "Macro",
  28240. height: math.unit(1200.0, "inches")
  28241. },
  28242. {
  28243. name: "Megamacro",
  28244. height: math.unit(60000.0, "inches")
  28245. },
  28246. {
  28247. name: "Gigamacro",
  28248. height: math.unit(120000000.0, "inches")
  28249. }
  28250. ]
  28251. )
  28252. };
  28253. pokemonMakers["Shelmet"] = () => {
  28254. return makeCharacter(
  28255. { name: "Shelmet" },
  28256. {
  28257. "Shelmet": {
  28258. height: math.unit("16", "inches"),
  28259. weight: math.unit("17.0", "lbs"),
  28260. name: "Shelmet",
  28261. image: {
  28262. source: "./media/pokemon/Shelmet.svg"
  28263. },
  28264. rename: true
  28265. }
  28266. },
  28267. [
  28268. {
  28269. name: "Micro",
  28270. height: math.unit(1.6, "inches")
  28271. },
  28272. {
  28273. name: "Normal",
  28274. height: math.unit(16, "inches"),
  28275. default: true
  28276. },
  28277. {
  28278. name: "Macro",
  28279. height: math.unit(1600.0, "inches")
  28280. },
  28281. {
  28282. name: "Megamacro",
  28283. height: math.unit(80000.0, "inches")
  28284. },
  28285. {
  28286. name: "Gigamacro",
  28287. height: math.unit(160000000.0, "inches")
  28288. }
  28289. ]
  28290. )
  28291. };
  28292. pokemonMakers["Shieldon"] = () => {
  28293. return makeCharacter(
  28294. { name: "Shieldon" },
  28295. {
  28296. "Shieldon": {
  28297. height: math.unit("20", "inches"),
  28298. weight: math.unit("125.7", "lbs"),
  28299. name: "Shieldon",
  28300. image: {
  28301. source: "./media/pokemon/Shieldon.svg"
  28302. },
  28303. rename: true
  28304. }
  28305. },
  28306. [
  28307. {
  28308. name: "Micro",
  28309. height: math.unit(2.0, "inches")
  28310. },
  28311. {
  28312. name: "Normal",
  28313. height: math.unit(20, "inches"),
  28314. default: true
  28315. },
  28316. {
  28317. name: "Macro",
  28318. height: math.unit(2000.0, "inches")
  28319. },
  28320. {
  28321. name: "Megamacro",
  28322. height: math.unit(100000.0, "inches")
  28323. },
  28324. {
  28325. name: "Gigamacro",
  28326. height: math.unit(200000000.0, "inches")
  28327. }
  28328. ]
  28329. )
  28330. };
  28331. pokemonMakers["Shiftry"] = () => {
  28332. return makeCharacter(
  28333. { name: "Shiftry" },
  28334. {
  28335. "Shiftry": {
  28336. height: math.unit("51", "inches"),
  28337. weight: math.unit("131.4", "lbs"),
  28338. name: "Shiftry",
  28339. image: {
  28340. source: "./media/pokemon/Shiftry.svg"
  28341. },
  28342. rename: true
  28343. }
  28344. },
  28345. [
  28346. {
  28347. name: "Micro",
  28348. height: math.unit(5.1, "inches")
  28349. },
  28350. {
  28351. name: "Normal",
  28352. height: math.unit(51, "inches"),
  28353. default: true
  28354. },
  28355. {
  28356. name: "Macro",
  28357. height: math.unit(5100.0, "inches")
  28358. },
  28359. {
  28360. name: "Megamacro",
  28361. height: math.unit(255000.0, "inches")
  28362. },
  28363. {
  28364. name: "Gigamacro",
  28365. height: math.unit(510000000.0, "inches")
  28366. }
  28367. ]
  28368. )
  28369. };
  28370. pokemonMakers["Shiinotic"] = () => {
  28371. return makeCharacter(
  28372. { name: "Shiinotic" },
  28373. {
  28374. "Shiinotic": {
  28375. height: math.unit("39", "inches"),
  28376. weight: math.unit("25.4", "lbs"),
  28377. name: "Shiinotic",
  28378. image: {
  28379. source: "./media/pokemon/Shiinotic.svg"
  28380. },
  28381. rename: true
  28382. }
  28383. },
  28384. [
  28385. {
  28386. name: "Micro",
  28387. height: math.unit(3.9, "inches")
  28388. },
  28389. {
  28390. name: "Normal",
  28391. height: math.unit(39, "inches"),
  28392. default: true
  28393. },
  28394. {
  28395. name: "Macro",
  28396. height: math.unit(3900.0, "inches")
  28397. },
  28398. {
  28399. name: "Megamacro",
  28400. height: math.unit(195000.0, "inches")
  28401. },
  28402. {
  28403. name: "Gigamacro",
  28404. height: math.unit(390000000.0, "inches")
  28405. }
  28406. ]
  28407. )
  28408. };
  28409. pokemonMakers["Shinx"] = () => {
  28410. return makeCharacter(
  28411. { name: "Shinx" },
  28412. {
  28413. "Shinx": {
  28414. height: math.unit("20", "inches"),
  28415. weight: math.unit("20.9", "lbs"),
  28416. name: "Shinx",
  28417. image: {
  28418. source: "./media/pokemon/Shinx.svg"
  28419. },
  28420. rename: true
  28421. }
  28422. },
  28423. [
  28424. {
  28425. name: "Micro",
  28426. height: math.unit(2.0, "inches")
  28427. },
  28428. {
  28429. name: "Normal",
  28430. height: math.unit(20, "inches"),
  28431. default: true
  28432. },
  28433. {
  28434. name: "Macro",
  28435. height: math.unit(2000.0, "inches")
  28436. },
  28437. {
  28438. name: "Megamacro",
  28439. height: math.unit(100000.0, "inches")
  28440. },
  28441. {
  28442. name: "Gigamacro",
  28443. height: math.unit(200000000.0, "inches")
  28444. }
  28445. ]
  28446. )
  28447. };
  28448. pokemonMakers["Shroomish"] = () => {
  28449. return makeCharacter(
  28450. { name: "Shroomish" },
  28451. {
  28452. "Shroomish": {
  28453. height: math.unit("16", "inches"),
  28454. weight: math.unit("9.9", "lbs"),
  28455. name: "Shroomish",
  28456. image: {
  28457. source: "./media/pokemon/Shroomish.svg"
  28458. },
  28459. rename: true
  28460. }
  28461. },
  28462. [
  28463. {
  28464. name: "Micro",
  28465. height: math.unit(1.6, "inches")
  28466. },
  28467. {
  28468. name: "Normal",
  28469. height: math.unit(16, "inches"),
  28470. default: true
  28471. },
  28472. {
  28473. name: "Macro",
  28474. height: math.unit(1600.0, "inches")
  28475. },
  28476. {
  28477. name: "Megamacro",
  28478. height: math.unit(80000.0, "inches")
  28479. },
  28480. {
  28481. name: "Gigamacro",
  28482. height: math.unit(160000000.0, "inches")
  28483. }
  28484. ]
  28485. )
  28486. };
  28487. pokemonMakers["Shuckle"] = () => {
  28488. return makeCharacter(
  28489. { name: "Shuckle" },
  28490. {
  28491. "Shuckle": {
  28492. height: math.unit("24", "inches"),
  28493. weight: math.unit("45.2", "lbs"),
  28494. name: "Shuckle",
  28495. image: {
  28496. source: "./media/pokemon/Shuckle.svg"
  28497. },
  28498. rename: true
  28499. }
  28500. },
  28501. [
  28502. {
  28503. name: "Micro",
  28504. height: math.unit(2.4, "inches")
  28505. },
  28506. {
  28507. name: "Normal",
  28508. height: math.unit(24, "inches"),
  28509. default: true
  28510. },
  28511. {
  28512. name: "Macro",
  28513. height: math.unit(2400.0, "inches")
  28514. },
  28515. {
  28516. name: "Megamacro",
  28517. height: math.unit(120000.0, "inches")
  28518. },
  28519. {
  28520. name: "Gigamacro",
  28521. height: math.unit(240000000.0, "inches")
  28522. }
  28523. ]
  28524. )
  28525. };
  28526. pokemonMakers["Shuppet"] = () => {
  28527. return makeCharacter(
  28528. { name: "Shuppet" },
  28529. {
  28530. "Shuppet": {
  28531. height: math.unit("24", "inches"),
  28532. weight: math.unit("5.1", "lbs"),
  28533. name: "Shuppet",
  28534. image: {
  28535. source: "./media/pokemon/Shuppet.svg"
  28536. },
  28537. rename: true
  28538. }
  28539. },
  28540. [
  28541. {
  28542. name: "Micro",
  28543. height: math.unit(2.4, "inches")
  28544. },
  28545. {
  28546. name: "Normal",
  28547. height: math.unit(24, "inches"),
  28548. default: true
  28549. },
  28550. {
  28551. name: "Macro",
  28552. height: math.unit(2400.0, "inches")
  28553. },
  28554. {
  28555. name: "Megamacro",
  28556. height: math.unit(120000.0, "inches")
  28557. },
  28558. {
  28559. name: "Gigamacro",
  28560. height: math.unit(240000000.0, "inches")
  28561. }
  28562. ]
  28563. )
  28564. };
  28565. pokemonMakers["Sigilyph"] = () => {
  28566. return makeCharacter(
  28567. { name: "Sigilyph" },
  28568. {
  28569. "Sigilyph": {
  28570. height: math.unit("55", "inches"),
  28571. weight: math.unit("30.9", "lbs"),
  28572. name: "Sigilyph",
  28573. image: {
  28574. source: "./media/pokemon/Sigilyph.svg"
  28575. },
  28576. rename: true
  28577. }
  28578. },
  28579. [
  28580. {
  28581. name: "Micro",
  28582. height: math.unit(5.5, "inches")
  28583. },
  28584. {
  28585. name: "Normal",
  28586. height: math.unit(55, "inches"),
  28587. default: true
  28588. },
  28589. {
  28590. name: "Macro",
  28591. height: math.unit(5500.0, "inches")
  28592. },
  28593. {
  28594. name: "Megamacro",
  28595. height: math.unit(275000.0, "inches")
  28596. },
  28597. {
  28598. name: "Gigamacro",
  28599. height: math.unit(550000000.0, "inches")
  28600. }
  28601. ]
  28602. )
  28603. };
  28604. pokemonMakers["Silcoon"] = () => {
  28605. return makeCharacter(
  28606. { name: "Silcoon" },
  28607. {
  28608. "Silcoon": {
  28609. height: math.unit("24", "inches"),
  28610. weight: math.unit("22.0", "lbs"),
  28611. name: "Silcoon",
  28612. image: {
  28613. source: "./media/pokemon/Silcoon.svg"
  28614. },
  28615. rename: true
  28616. }
  28617. },
  28618. [
  28619. {
  28620. name: "Micro",
  28621. height: math.unit(2.4, "inches")
  28622. },
  28623. {
  28624. name: "Normal",
  28625. height: math.unit(24, "inches"),
  28626. default: true
  28627. },
  28628. {
  28629. name: "Macro",
  28630. height: math.unit(2400.0, "inches")
  28631. },
  28632. {
  28633. name: "Megamacro",
  28634. height: math.unit(120000.0, "inches")
  28635. },
  28636. {
  28637. name: "Gigamacro",
  28638. height: math.unit(240000000.0, "inches")
  28639. }
  28640. ]
  28641. )
  28642. };
  28643. pokemonMakers["Silicobra"] = () => {
  28644. return makeCharacter(
  28645. { name: "Silicobra" },
  28646. {
  28647. "Silicobra": {
  28648. height: math.unit("87", "inches"),
  28649. weight: math.unit("16.8", "lbs"),
  28650. name: "Silicobra",
  28651. image: {
  28652. source: "./media/pokemon/Silicobra.svg"
  28653. },
  28654. rename: true
  28655. }
  28656. },
  28657. [
  28658. {
  28659. name: "Micro",
  28660. height: math.unit(8.7, "inches")
  28661. },
  28662. {
  28663. name: "Normal",
  28664. height: math.unit(87, "inches"),
  28665. default: true
  28666. },
  28667. {
  28668. name: "Macro",
  28669. height: math.unit(8700.0, "inches")
  28670. },
  28671. {
  28672. name: "Megamacro",
  28673. height: math.unit(435000.0, "inches")
  28674. },
  28675. {
  28676. name: "Gigamacro",
  28677. height: math.unit(870000000.0, "inches")
  28678. }
  28679. ]
  28680. )
  28681. };
  28682. pokemonMakers["Simipour"] = () => {
  28683. return makeCharacter(
  28684. { name: "Simipour" },
  28685. {
  28686. "Simipour": {
  28687. height: math.unit("39", "inches"),
  28688. weight: math.unit("63.9", "lbs"),
  28689. name: "Simipour",
  28690. image: {
  28691. source: "./media/pokemon/Simipour.svg"
  28692. },
  28693. rename: true
  28694. }
  28695. },
  28696. [
  28697. {
  28698. name: "Micro",
  28699. height: math.unit(3.9, "inches")
  28700. },
  28701. {
  28702. name: "Normal",
  28703. height: math.unit(39, "inches"),
  28704. default: true
  28705. },
  28706. {
  28707. name: "Macro",
  28708. height: math.unit(3900.0, "inches")
  28709. },
  28710. {
  28711. name: "Megamacro",
  28712. height: math.unit(195000.0, "inches")
  28713. },
  28714. {
  28715. name: "Gigamacro",
  28716. height: math.unit(390000000.0, "inches")
  28717. }
  28718. ]
  28719. )
  28720. };
  28721. pokemonMakers["Simisage"] = () => {
  28722. return makeCharacter(
  28723. { name: "Simisage" },
  28724. {
  28725. "Simisage": {
  28726. height: math.unit("43", "inches"),
  28727. weight: math.unit("67.2", "lbs"),
  28728. name: "Simisage",
  28729. image: {
  28730. source: "./media/pokemon/Simisage.svg"
  28731. },
  28732. rename: true
  28733. }
  28734. },
  28735. [
  28736. {
  28737. name: "Micro",
  28738. height: math.unit(4.3, "inches")
  28739. },
  28740. {
  28741. name: "Normal",
  28742. height: math.unit(43, "inches"),
  28743. default: true
  28744. },
  28745. {
  28746. name: "Macro",
  28747. height: math.unit(4300.0, "inches")
  28748. },
  28749. {
  28750. name: "Megamacro",
  28751. height: math.unit(215000.0, "inches")
  28752. },
  28753. {
  28754. name: "Gigamacro",
  28755. height: math.unit(430000000.0, "inches")
  28756. }
  28757. ]
  28758. )
  28759. };
  28760. pokemonMakers["Simisear"] = () => {
  28761. return makeCharacter(
  28762. { name: "Simisear" },
  28763. {
  28764. "Simisear": {
  28765. height: math.unit("39", "inches"),
  28766. weight: math.unit("61.7", "lbs"),
  28767. name: "Simisear",
  28768. image: {
  28769. source: "./media/pokemon/Simisear.svg"
  28770. },
  28771. rename: true
  28772. }
  28773. },
  28774. [
  28775. {
  28776. name: "Micro",
  28777. height: math.unit(3.9, "inches")
  28778. },
  28779. {
  28780. name: "Normal",
  28781. height: math.unit(39, "inches"),
  28782. default: true
  28783. },
  28784. {
  28785. name: "Macro",
  28786. height: math.unit(3900.0, "inches")
  28787. },
  28788. {
  28789. name: "Megamacro",
  28790. height: math.unit(195000.0, "inches")
  28791. },
  28792. {
  28793. name: "Gigamacro",
  28794. height: math.unit(390000000.0, "inches")
  28795. }
  28796. ]
  28797. )
  28798. };
  28799. pokemonMakers["Sinistea"] = () => {
  28800. return makeCharacter(
  28801. { name: "Sinistea" },
  28802. {
  28803. "Sinistea": {
  28804. height: math.unit("4", "inches"),
  28805. weight: math.unit("0.4", "lbs"),
  28806. name: "Sinistea",
  28807. image: {
  28808. source: "./media/pokemon/Sinistea.svg"
  28809. },
  28810. rename: true
  28811. }
  28812. },
  28813. [
  28814. {
  28815. name: "Micro",
  28816. height: math.unit(0.4, "inches")
  28817. },
  28818. {
  28819. name: "Normal",
  28820. height: math.unit(4, "inches"),
  28821. default: true
  28822. },
  28823. {
  28824. name: "Macro",
  28825. height: math.unit(400.0, "inches")
  28826. },
  28827. {
  28828. name: "Megamacro",
  28829. height: math.unit(20000.0, "inches")
  28830. },
  28831. {
  28832. name: "Gigamacro",
  28833. height: math.unit(40000000.0, "inches")
  28834. }
  28835. ]
  28836. )
  28837. };
  28838. pokemonMakers["Sirfetch'd"] = () => {
  28839. return makeCharacter(
  28840. { name: "Sirfetch'd" },
  28841. {
  28842. "Sirfetch'd": {
  28843. height: math.unit("31", "inches"),
  28844. weight: math.unit("257.9", "lbs"),
  28845. name: "Sirfetch'd",
  28846. image: {
  28847. source: "./media/pokemon/Sirfetch'd.svg"
  28848. },
  28849. rename: true
  28850. }
  28851. },
  28852. [
  28853. {
  28854. name: "Micro",
  28855. height: math.unit(3.1, "inches")
  28856. },
  28857. {
  28858. name: "Normal",
  28859. height: math.unit(31, "inches"),
  28860. default: true
  28861. },
  28862. {
  28863. name: "Macro",
  28864. height: math.unit(3100.0, "inches")
  28865. },
  28866. {
  28867. name: "Megamacro",
  28868. height: math.unit(155000.0, "inches")
  28869. },
  28870. {
  28871. name: "Gigamacro",
  28872. height: math.unit(310000000.0, "inches")
  28873. }
  28874. ]
  28875. )
  28876. };
  28877. pokemonMakers["Sizzlipede"] = () => {
  28878. return makeCharacter(
  28879. { name: "Sizzlipede" },
  28880. {
  28881. "Sizzlipede": {
  28882. height: math.unit("28", "inches"),
  28883. weight: math.unit("2.2", "lbs"),
  28884. name: "Sizzlipede",
  28885. image: {
  28886. source: "./media/pokemon/Sizzlipede.svg"
  28887. },
  28888. rename: true
  28889. }
  28890. },
  28891. [
  28892. {
  28893. name: "Micro",
  28894. height: math.unit(2.8, "inches")
  28895. },
  28896. {
  28897. name: "Normal",
  28898. height: math.unit(28, "inches"),
  28899. default: true
  28900. },
  28901. {
  28902. name: "Macro",
  28903. height: math.unit(2800.0, "inches")
  28904. },
  28905. {
  28906. name: "Megamacro",
  28907. height: math.unit(140000.0, "inches")
  28908. },
  28909. {
  28910. name: "Gigamacro",
  28911. height: math.unit(280000000.0, "inches")
  28912. }
  28913. ]
  28914. )
  28915. };
  28916. pokemonMakers["Skarmory"] = () => {
  28917. return makeCharacter(
  28918. { name: "Skarmory" },
  28919. {
  28920. "Skarmory": {
  28921. height: math.unit("67", "inches"),
  28922. weight: math.unit("111.3", "lbs"),
  28923. name: "Skarmory",
  28924. image: {
  28925. source: "./media/pokemon/Skarmory.svg"
  28926. },
  28927. rename: true
  28928. }
  28929. },
  28930. [
  28931. {
  28932. name: "Micro",
  28933. height: math.unit(6.7, "inches")
  28934. },
  28935. {
  28936. name: "Normal",
  28937. height: math.unit(67, "inches"),
  28938. default: true
  28939. },
  28940. {
  28941. name: "Macro",
  28942. height: math.unit(6700.0, "inches")
  28943. },
  28944. {
  28945. name: "Megamacro",
  28946. height: math.unit(335000.0, "inches")
  28947. },
  28948. {
  28949. name: "Gigamacro",
  28950. height: math.unit(670000000.0, "inches")
  28951. }
  28952. ]
  28953. )
  28954. };
  28955. pokemonMakers["Skiddo"] = () => {
  28956. return makeCharacter(
  28957. { name: "Skiddo" },
  28958. {
  28959. "Skiddo": {
  28960. height: math.unit("35", "inches"),
  28961. weight: math.unit("68.3", "lbs"),
  28962. name: "Skiddo",
  28963. image: {
  28964. source: "./media/pokemon/Skiddo.svg"
  28965. },
  28966. rename: true
  28967. }
  28968. },
  28969. [
  28970. {
  28971. name: "Micro",
  28972. height: math.unit(3.5, "inches")
  28973. },
  28974. {
  28975. name: "Normal",
  28976. height: math.unit(35, "inches"),
  28977. default: true
  28978. },
  28979. {
  28980. name: "Macro",
  28981. height: math.unit(3500.0, "inches")
  28982. },
  28983. {
  28984. name: "Megamacro",
  28985. height: math.unit(175000.0, "inches")
  28986. },
  28987. {
  28988. name: "Gigamacro",
  28989. height: math.unit(350000000.0, "inches")
  28990. }
  28991. ]
  28992. )
  28993. };
  28994. pokemonMakers["Skiploom"] = () => {
  28995. return makeCharacter(
  28996. { name: "Skiploom" },
  28997. {
  28998. "Skiploom": {
  28999. height: math.unit("24", "inches"),
  29000. weight: math.unit("2.2", "lbs"),
  29001. name: "Skiploom",
  29002. image: {
  29003. source: "./media/pokemon/Skiploom.svg"
  29004. },
  29005. rename: true
  29006. }
  29007. },
  29008. [
  29009. {
  29010. name: "Micro",
  29011. height: math.unit(2.4, "inches")
  29012. },
  29013. {
  29014. name: "Normal",
  29015. height: math.unit(24, "inches"),
  29016. default: true
  29017. },
  29018. {
  29019. name: "Macro",
  29020. height: math.unit(2400.0, "inches")
  29021. },
  29022. {
  29023. name: "Megamacro",
  29024. height: math.unit(120000.0, "inches")
  29025. },
  29026. {
  29027. name: "Gigamacro",
  29028. height: math.unit(240000000.0, "inches")
  29029. }
  29030. ]
  29031. )
  29032. };
  29033. pokemonMakers["Skitty"] = () => {
  29034. return makeCharacter(
  29035. { name: "Skitty" },
  29036. {
  29037. "Skitty": {
  29038. height: math.unit("24", "inches"),
  29039. weight: math.unit("24.3", "lbs"),
  29040. name: "Skitty",
  29041. image: {
  29042. source: "./media/pokemon/Skitty.svg"
  29043. },
  29044. rename: true
  29045. }
  29046. },
  29047. [
  29048. {
  29049. name: "Micro",
  29050. height: math.unit(2.4, "inches")
  29051. },
  29052. {
  29053. name: "Normal",
  29054. height: math.unit(24, "inches"),
  29055. default: true
  29056. },
  29057. {
  29058. name: "Macro",
  29059. height: math.unit(2400.0, "inches")
  29060. },
  29061. {
  29062. name: "Megamacro",
  29063. height: math.unit(120000.0, "inches")
  29064. },
  29065. {
  29066. name: "Gigamacro",
  29067. height: math.unit(240000000.0, "inches")
  29068. }
  29069. ]
  29070. )
  29071. };
  29072. pokemonMakers["Skorupi"] = () => {
  29073. return makeCharacter(
  29074. { name: "Skorupi" },
  29075. {
  29076. "Skorupi": {
  29077. height: math.unit("31", "inches"),
  29078. weight: math.unit("26.5", "lbs"),
  29079. name: "Skorupi",
  29080. image: {
  29081. source: "./media/pokemon/Skorupi.svg"
  29082. },
  29083. rename: true
  29084. }
  29085. },
  29086. [
  29087. {
  29088. name: "Micro",
  29089. height: math.unit(3.1, "inches")
  29090. },
  29091. {
  29092. name: "Normal",
  29093. height: math.unit(31, "inches"),
  29094. default: true
  29095. },
  29096. {
  29097. name: "Macro",
  29098. height: math.unit(3100.0, "inches")
  29099. },
  29100. {
  29101. name: "Megamacro",
  29102. height: math.unit(155000.0, "inches")
  29103. },
  29104. {
  29105. name: "Gigamacro",
  29106. height: math.unit(310000000.0, "inches")
  29107. }
  29108. ]
  29109. )
  29110. };
  29111. pokemonMakers["Skrelp"] = () => {
  29112. return makeCharacter(
  29113. { name: "Skrelp" },
  29114. {
  29115. "Skrelp": {
  29116. height: math.unit("20", "inches"),
  29117. weight: math.unit("16.1", "lbs"),
  29118. name: "Skrelp",
  29119. image: {
  29120. source: "./media/pokemon/Skrelp.svg"
  29121. },
  29122. rename: true
  29123. }
  29124. },
  29125. [
  29126. {
  29127. name: "Micro",
  29128. height: math.unit(2.0, "inches")
  29129. },
  29130. {
  29131. name: "Normal",
  29132. height: math.unit(20, "inches"),
  29133. default: true
  29134. },
  29135. {
  29136. name: "Macro",
  29137. height: math.unit(2000.0, "inches")
  29138. },
  29139. {
  29140. name: "Megamacro",
  29141. height: math.unit(100000.0, "inches")
  29142. },
  29143. {
  29144. name: "Gigamacro",
  29145. height: math.unit(200000000.0, "inches")
  29146. }
  29147. ]
  29148. )
  29149. };
  29150. pokemonMakers["Skuntank"] = () => {
  29151. return makeCharacter(
  29152. { name: "Skuntank" },
  29153. {
  29154. "Skuntank": {
  29155. height: math.unit("39", "inches"),
  29156. weight: math.unit("83.8", "lbs"),
  29157. name: "Skuntank",
  29158. image: {
  29159. source: "./media/pokemon/Skuntank.svg"
  29160. },
  29161. rename: true
  29162. }
  29163. },
  29164. [
  29165. {
  29166. name: "Micro",
  29167. height: math.unit(3.9, "inches")
  29168. },
  29169. {
  29170. name: "Normal",
  29171. height: math.unit(39, "inches"),
  29172. default: true
  29173. },
  29174. {
  29175. name: "Macro",
  29176. height: math.unit(3900.0, "inches")
  29177. },
  29178. {
  29179. name: "Megamacro",
  29180. height: math.unit(195000.0, "inches")
  29181. },
  29182. {
  29183. name: "Gigamacro",
  29184. height: math.unit(390000000.0, "inches")
  29185. }
  29186. ]
  29187. )
  29188. };
  29189. pokemonMakers["Skwovet"] = () => {
  29190. return makeCharacter(
  29191. { name: "Skwovet" },
  29192. {
  29193. "Skwovet": {
  29194. height: math.unit("12", "inches"),
  29195. weight: math.unit("5.5", "lbs"),
  29196. name: "Skwovet",
  29197. image: {
  29198. source: "./media/pokemon/Skwovet.svg"
  29199. },
  29200. rename: true
  29201. }
  29202. },
  29203. [
  29204. {
  29205. name: "Micro",
  29206. height: math.unit(1.2, "inches")
  29207. },
  29208. {
  29209. name: "Normal",
  29210. height: math.unit(12, "inches"),
  29211. default: true
  29212. },
  29213. {
  29214. name: "Macro",
  29215. height: math.unit(1200.0, "inches")
  29216. },
  29217. {
  29218. name: "Megamacro",
  29219. height: math.unit(60000.0, "inches")
  29220. },
  29221. {
  29222. name: "Gigamacro",
  29223. height: math.unit(120000000.0, "inches")
  29224. }
  29225. ]
  29226. )
  29227. };
  29228. pokemonMakers["Slaking"] = () => {
  29229. return makeCharacter(
  29230. { name: "Slaking" },
  29231. {
  29232. "Slaking": {
  29233. height: math.unit("79", "inches"),
  29234. weight: math.unit("287.7", "lbs"),
  29235. name: "Slaking",
  29236. image: {
  29237. source: "./media/pokemon/Slaking.svg"
  29238. },
  29239. rename: true
  29240. }
  29241. },
  29242. [
  29243. {
  29244. name: "Micro",
  29245. height: math.unit(7.9, "inches")
  29246. },
  29247. {
  29248. name: "Normal",
  29249. height: math.unit(79, "inches"),
  29250. default: true
  29251. },
  29252. {
  29253. name: "Macro",
  29254. height: math.unit(7900.0, "inches")
  29255. },
  29256. {
  29257. name: "Megamacro",
  29258. height: math.unit(395000.0, "inches")
  29259. },
  29260. {
  29261. name: "Gigamacro",
  29262. height: math.unit(790000000.0, "inches")
  29263. }
  29264. ]
  29265. )
  29266. };
  29267. pokemonMakers["Slakoth"] = () => {
  29268. return makeCharacter(
  29269. { name: "Slakoth" },
  29270. {
  29271. "Slakoth": {
  29272. height: math.unit("31", "inches"),
  29273. weight: math.unit("52.9", "lbs"),
  29274. name: "Slakoth",
  29275. image: {
  29276. source: "./media/pokemon/Slakoth.svg"
  29277. },
  29278. rename: true
  29279. }
  29280. },
  29281. [
  29282. {
  29283. name: "Micro",
  29284. height: math.unit(3.1, "inches")
  29285. },
  29286. {
  29287. name: "Normal",
  29288. height: math.unit(31, "inches"),
  29289. default: true
  29290. },
  29291. {
  29292. name: "Macro",
  29293. height: math.unit(3100.0, "inches")
  29294. },
  29295. {
  29296. name: "Megamacro",
  29297. height: math.unit(155000.0, "inches")
  29298. },
  29299. {
  29300. name: "Gigamacro",
  29301. height: math.unit(310000000.0, "inches")
  29302. }
  29303. ]
  29304. )
  29305. };
  29306. pokemonMakers["Sliggoo"] = () => {
  29307. return makeCharacter(
  29308. { name: "Sliggoo" },
  29309. {
  29310. "Sliggoo": {
  29311. height: math.unit("31", "inches"),
  29312. weight: math.unit("38.6", "lbs"),
  29313. name: "Sliggoo",
  29314. image: {
  29315. source: "./media/pokemon/Sliggoo.svg"
  29316. },
  29317. rename: true
  29318. }
  29319. },
  29320. [
  29321. {
  29322. name: "Micro",
  29323. height: math.unit(3.1, "inches")
  29324. },
  29325. {
  29326. name: "Normal",
  29327. height: math.unit(31, "inches"),
  29328. default: true
  29329. },
  29330. {
  29331. name: "Macro",
  29332. height: math.unit(3100.0, "inches")
  29333. },
  29334. {
  29335. name: "Megamacro",
  29336. height: math.unit(155000.0, "inches")
  29337. },
  29338. {
  29339. name: "Gigamacro",
  29340. height: math.unit(310000000.0, "inches")
  29341. }
  29342. ]
  29343. )
  29344. };
  29345. pokemonMakers["Slowking"] = () => {
  29346. return makeCharacter(
  29347. { name: "Slowking" },
  29348. {
  29349. "Slowking": {
  29350. height: math.unit("79", "inches"),
  29351. weight: math.unit("175.3", "lbs"),
  29352. name: "Slowking",
  29353. image: {
  29354. source: "./media/pokemon/Slowking.svg"
  29355. },
  29356. rename: true
  29357. }
  29358. },
  29359. [
  29360. {
  29361. name: "Micro",
  29362. height: math.unit(7.9, "inches")
  29363. },
  29364. {
  29365. name: "Normal",
  29366. height: math.unit(79, "inches"),
  29367. default: true
  29368. },
  29369. {
  29370. name: "Macro",
  29371. height: math.unit(7900.0, "inches")
  29372. },
  29373. {
  29374. name: "Megamacro",
  29375. height: math.unit(395000.0, "inches")
  29376. },
  29377. {
  29378. name: "Gigamacro",
  29379. height: math.unit(790000000.0, "inches")
  29380. }
  29381. ]
  29382. )
  29383. };
  29384. pokemonMakers["Slowpoke"] = () => {
  29385. return makeCharacter(
  29386. { name: "Slowpoke" },
  29387. {
  29388. "Slowpoke": {
  29389. height: math.unit("47", "inches"),
  29390. weight: math.unit("79.4", "lbs"),
  29391. name: "Slowpoke",
  29392. image: {
  29393. source: "./media/pokemon/Slowpoke.svg"
  29394. },
  29395. rename: true
  29396. }
  29397. },
  29398. [
  29399. {
  29400. name: "Micro",
  29401. height: math.unit(4.7, "inches")
  29402. },
  29403. {
  29404. name: "Normal",
  29405. height: math.unit(47, "inches"),
  29406. default: true
  29407. },
  29408. {
  29409. name: "Macro",
  29410. height: math.unit(4700.0, "inches")
  29411. },
  29412. {
  29413. name: "Megamacro",
  29414. height: math.unit(235000.0, "inches")
  29415. },
  29416. {
  29417. name: "Gigamacro",
  29418. height: math.unit(470000000.0, "inches")
  29419. }
  29420. ]
  29421. )
  29422. };
  29423. pokemonMakers["Slugma"] = () => {
  29424. return makeCharacter(
  29425. { name: "Slugma" },
  29426. {
  29427. "Slugma": {
  29428. height: math.unit("28", "inches"),
  29429. weight: math.unit("77.2", "lbs"),
  29430. name: "Slugma",
  29431. image: {
  29432. source: "./media/pokemon/Slugma.svg"
  29433. },
  29434. rename: true
  29435. }
  29436. },
  29437. [
  29438. {
  29439. name: "Micro",
  29440. height: math.unit(2.8, "inches")
  29441. },
  29442. {
  29443. name: "Normal",
  29444. height: math.unit(28, "inches"),
  29445. default: true
  29446. },
  29447. {
  29448. name: "Macro",
  29449. height: math.unit(2800.0, "inches")
  29450. },
  29451. {
  29452. name: "Megamacro",
  29453. height: math.unit(140000.0, "inches")
  29454. },
  29455. {
  29456. name: "Gigamacro",
  29457. height: math.unit(280000000.0, "inches")
  29458. }
  29459. ]
  29460. )
  29461. };
  29462. pokemonMakers["Slurpuff"] = () => {
  29463. return makeCharacter(
  29464. { name: "Slurpuff" },
  29465. {
  29466. "Slurpuff": {
  29467. height: math.unit("31", "inches"),
  29468. weight: math.unit("11.0", "lbs"),
  29469. name: "Slurpuff",
  29470. image: {
  29471. source: "./media/pokemon/Slurpuff.svg"
  29472. },
  29473. rename: true
  29474. }
  29475. },
  29476. [
  29477. {
  29478. name: "Micro",
  29479. height: math.unit(3.1, "inches")
  29480. },
  29481. {
  29482. name: "Normal",
  29483. height: math.unit(31, "inches"),
  29484. default: true
  29485. },
  29486. {
  29487. name: "Macro",
  29488. height: math.unit(3100.0, "inches")
  29489. },
  29490. {
  29491. name: "Megamacro",
  29492. height: math.unit(155000.0, "inches")
  29493. },
  29494. {
  29495. name: "Gigamacro",
  29496. height: math.unit(310000000.0, "inches")
  29497. }
  29498. ]
  29499. )
  29500. };
  29501. pokemonMakers["Smeargle"] = () => {
  29502. return makeCharacter(
  29503. { name: "Smeargle" },
  29504. {
  29505. "Smeargle": {
  29506. height: math.unit("47", "inches"),
  29507. weight: math.unit("127.9", "lbs"),
  29508. name: "Smeargle",
  29509. image: {
  29510. source: "./media/pokemon/Smeargle.svg"
  29511. },
  29512. rename: true
  29513. }
  29514. },
  29515. [
  29516. {
  29517. name: "Micro",
  29518. height: math.unit(4.7, "inches")
  29519. },
  29520. {
  29521. name: "Normal",
  29522. height: math.unit(47, "inches"),
  29523. default: true
  29524. },
  29525. {
  29526. name: "Macro",
  29527. height: math.unit(4700.0, "inches")
  29528. },
  29529. {
  29530. name: "Megamacro",
  29531. height: math.unit(235000.0, "inches")
  29532. },
  29533. {
  29534. name: "Gigamacro",
  29535. height: math.unit(470000000.0, "inches")
  29536. }
  29537. ]
  29538. )
  29539. };
  29540. pokemonMakers["Smoochum"] = () => {
  29541. return makeCharacter(
  29542. { name: "Smoochum" },
  29543. {
  29544. "Smoochum": {
  29545. height: math.unit("16", "inches"),
  29546. weight: math.unit("13.2", "lbs"),
  29547. name: "Smoochum",
  29548. image: {
  29549. source: "./media/pokemon/Smoochum.svg"
  29550. },
  29551. rename: true
  29552. }
  29553. },
  29554. [
  29555. {
  29556. name: "Micro",
  29557. height: math.unit(1.6, "inches")
  29558. },
  29559. {
  29560. name: "Normal",
  29561. height: math.unit(16, "inches"),
  29562. default: true
  29563. },
  29564. {
  29565. name: "Macro",
  29566. height: math.unit(1600.0, "inches")
  29567. },
  29568. {
  29569. name: "Megamacro",
  29570. height: math.unit(80000.0, "inches")
  29571. },
  29572. {
  29573. name: "Gigamacro",
  29574. height: math.unit(160000000.0, "inches")
  29575. }
  29576. ]
  29577. )
  29578. };
  29579. pokemonMakers["Sneasel"] = () => {
  29580. return makeCharacter(
  29581. { name: "Sneasel" },
  29582. {
  29583. "Sneasel": {
  29584. height: math.unit("35", "inches"),
  29585. weight: math.unit("61.7", "lbs"),
  29586. name: "Sneasel",
  29587. image: {
  29588. source: "./media/pokemon/Sneasel.svg"
  29589. },
  29590. rename: true
  29591. }
  29592. },
  29593. [
  29594. {
  29595. name: "Micro",
  29596. height: math.unit(3.5, "inches")
  29597. },
  29598. {
  29599. name: "Normal",
  29600. height: math.unit(35, "inches"),
  29601. default: true
  29602. },
  29603. {
  29604. name: "Macro",
  29605. height: math.unit(3500.0, "inches")
  29606. },
  29607. {
  29608. name: "Megamacro",
  29609. height: math.unit(175000.0, "inches")
  29610. },
  29611. {
  29612. name: "Gigamacro",
  29613. height: math.unit(350000000.0, "inches")
  29614. }
  29615. ]
  29616. )
  29617. };
  29618. pokemonMakers["Snivy"] = () => {
  29619. return makeCharacter(
  29620. { name: "Snivy" },
  29621. {
  29622. "Snivy": {
  29623. height: math.unit("24", "inches"),
  29624. weight: math.unit("17.9", "lbs"),
  29625. name: "Snivy",
  29626. image: {
  29627. source: "./media/pokemon/Snivy.svg"
  29628. },
  29629. rename: true
  29630. }
  29631. },
  29632. [
  29633. {
  29634. name: "Micro",
  29635. height: math.unit(2.4, "inches")
  29636. },
  29637. {
  29638. name: "Normal",
  29639. height: math.unit(24, "inches"),
  29640. default: true
  29641. },
  29642. {
  29643. name: "Macro",
  29644. height: math.unit(2400.0, "inches")
  29645. },
  29646. {
  29647. name: "Megamacro",
  29648. height: math.unit(120000.0, "inches")
  29649. },
  29650. {
  29651. name: "Gigamacro",
  29652. height: math.unit(240000000.0, "inches")
  29653. }
  29654. ]
  29655. )
  29656. };
  29657. pokemonMakers["Snom"] = () => {
  29658. return makeCharacter(
  29659. { name: "Snom" },
  29660. {
  29661. "Snom": {
  29662. height: math.unit("12", "inches"),
  29663. weight: math.unit("8.4", "lbs"),
  29664. name: "Snom",
  29665. image: {
  29666. source: "./media/pokemon/Snom.svg"
  29667. },
  29668. rename: true
  29669. }
  29670. },
  29671. [
  29672. {
  29673. name: "Micro",
  29674. height: math.unit(1.2, "inches")
  29675. },
  29676. {
  29677. name: "Normal",
  29678. height: math.unit(12, "inches"),
  29679. default: true
  29680. },
  29681. {
  29682. name: "Macro",
  29683. height: math.unit(1200.0, "inches")
  29684. },
  29685. {
  29686. name: "Megamacro",
  29687. height: math.unit(60000.0, "inches")
  29688. },
  29689. {
  29690. name: "Gigamacro",
  29691. height: math.unit(120000000.0, "inches")
  29692. }
  29693. ]
  29694. )
  29695. };
  29696. pokemonMakers["Snorunt"] = () => {
  29697. return makeCharacter(
  29698. { name: "Snorunt" },
  29699. {
  29700. "Snorunt": {
  29701. height: math.unit("28", "inches"),
  29702. weight: math.unit("37.0", "lbs"),
  29703. name: "Snorunt",
  29704. image: {
  29705. source: "./media/pokemon/Snorunt.svg"
  29706. },
  29707. rename: true
  29708. }
  29709. },
  29710. [
  29711. {
  29712. name: "Micro",
  29713. height: math.unit(2.8, "inches")
  29714. },
  29715. {
  29716. name: "Normal",
  29717. height: math.unit(28, "inches"),
  29718. default: true
  29719. },
  29720. {
  29721. name: "Macro",
  29722. height: math.unit(2800.0, "inches")
  29723. },
  29724. {
  29725. name: "Megamacro",
  29726. height: math.unit(140000.0, "inches")
  29727. },
  29728. {
  29729. name: "Gigamacro",
  29730. height: math.unit(280000000.0, "inches")
  29731. }
  29732. ]
  29733. )
  29734. };
  29735. pokemonMakers["Snover"] = () => {
  29736. return makeCharacter(
  29737. { name: "Snover" },
  29738. {
  29739. "Snover": {
  29740. height: math.unit("39", "inches"),
  29741. weight: math.unit("111.3", "lbs"),
  29742. name: "Snover",
  29743. image: {
  29744. source: "./media/pokemon/Snover.svg"
  29745. },
  29746. rename: true
  29747. }
  29748. },
  29749. [
  29750. {
  29751. name: "Micro",
  29752. height: math.unit(3.9, "inches")
  29753. },
  29754. {
  29755. name: "Normal",
  29756. height: math.unit(39, "inches"),
  29757. default: true
  29758. },
  29759. {
  29760. name: "Macro",
  29761. height: math.unit(3900.0, "inches")
  29762. },
  29763. {
  29764. name: "Megamacro",
  29765. height: math.unit(195000.0, "inches")
  29766. },
  29767. {
  29768. name: "Gigamacro",
  29769. height: math.unit(390000000.0, "inches")
  29770. }
  29771. ]
  29772. )
  29773. };
  29774. pokemonMakers["Snubbull"] = () => {
  29775. return makeCharacter(
  29776. { name: "Snubbull" },
  29777. {
  29778. "Snubbull": {
  29779. height: math.unit("24", "inches"),
  29780. weight: math.unit("17.2", "lbs"),
  29781. name: "Snubbull",
  29782. image: {
  29783. source: "./media/pokemon/Snubbull.svg"
  29784. },
  29785. rename: true
  29786. }
  29787. },
  29788. [
  29789. {
  29790. name: "Micro",
  29791. height: math.unit(2.4, "inches")
  29792. },
  29793. {
  29794. name: "Normal",
  29795. height: math.unit(24, "inches"),
  29796. default: true
  29797. },
  29798. {
  29799. name: "Macro",
  29800. height: math.unit(2400.0, "inches")
  29801. },
  29802. {
  29803. name: "Megamacro",
  29804. height: math.unit(120000.0, "inches")
  29805. },
  29806. {
  29807. name: "Gigamacro",
  29808. height: math.unit(240000000.0, "inches")
  29809. }
  29810. ]
  29811. )
  29812. };
  29813. pokemonMakers["Sobble"] = () => {
  29814. return makeCharacter(
  29815. { name: "Sobble" },
  29816. {
  29817. "Sobble": {
  29818. height: math.unit("12", "inches"),
  29819. weight: math.unit("8.8", "lbs"),
  29820. name: "Sobble",
  29821. image: {
  29822. source: "./media/pokemon/Sobble.svg"
  29823. },
  29824. rename: true
  29825. }
  29826. },
  29827. [
  29828. {
  29829. name: "Micro",
  29830. height: math.unit(1.2, "inches")
  29831. },
  29832. {
  29833. name: "Normal",
  29834. height: math.unit(12, "inches"),
  29835. default: true
  29836. },
  29837. {
  29838. name: "Macro",
  29839. height: math.unit(1200.0, "inches")
  29840. },
  29841. {
  29842. name: "Megamacro",
  29843. height: math.unit(60000.0, "inches")
  29844. },
  29845. {
  29846. name: "Gigamacro",
  29847. height: math.unit(120000000.0, "inches")
  29848. }
  29849. ]
  29850. )
  29851. };
  29852. pokemonMakers["Solgaleo"] = () => {
  29853. return makeCharacter(
  29854. { name: "Solgaleo" },
  29855. {
  29856. "Solgaleo": {
  29857. height: math.unit("134", "inches"),
  29858. weight: math.unit("507.1", "lbs"),
  29859. name: "Solgaleo",
  29860. image: {
  29861. source: "./media/pokemon/Solgaleo.svg"
  29862. },
  29863. rename: true
  29864. }
  29865. },
  29866. [
  29867. {
  29868. name: "Micro",
  29869. height: math.unit(13.4, "inches")
  29870. },
  29871. {
  29872. name: "Normal",
  29873. height: math.unit(134, "inches"),
  29874. default: true
  29875. },
  29876. {
  29877. name: "Macro",
  29878. height: math.unit(13400.0, "inches")
  29879. },
  29880. {
  29881. name: "Megamacro",
  29882. height: math.unit(670000.0, "inches")
  29883. },
  29884. {
  29885. name: "Gigamacro",
  29886. height: math.unit(1340000000.0, "inches")
  29887. }
  29888. ]
  29889. )
  29890. };
  29891. pokemonMakers["Solosis"] = () => {
  29892. return makeCharacter(
  29893. { name: "Solosis" },
  29894. {
  29895. "Solosis ": {
  29896. height: math.unit("12", "inches"),
  29897. weight: math.unit("2.2", "lbs"),
  29898. name: "Solosis ",
  29899. image: {
  29900. source: "./media/pokemon/Solosis .svg"
  29901. },
  29902. rename: true
  29903. }
  29904. },
  29905. [
  29906. {
  29907. name: "Micro",
  29908. height: math.unit(1.2, "inches")
  29909. },
  29910. {
  29911. name: "Normal",
  29912. height: math.unit(12, "inches"),
  29913. default: true
  29914. },
  29915. {
  29916. name: "Macro",
  29917. height: math.unit(1200.0, "inches")
  29918. },
  29919. {
  29920. name: "Megamacro",
  29921. height: math.unit(60000.0, "inches")
  29922. },
  29923. {
  29924. name: "Gigamacro",
  29925. height: math.unit(120000000.0, "inches")
  29926. }
  29927. ]
  29928. )
  29929. };
  29930. pokemonMakers["Solrock"] = () => {
  29931. return makeCharacter(
  29932. { name: "Solrock" },
  29933. {
  29934. "Solrock": {
  29935. height: math.unit("47", "inches"),
  29936. weight: math.unit("339.5", "lbs"),
  29937. name: "Solrock",
  29938. image: {
  29939. source: "./media/pokemon/Solrock.svg"
  29940. },
  29941. rename: true
  29942. }
  29943. },
  29944. [
  29945. {
  29946. name: "Micro",
  29947. height: math.unit(4.7, "inches")
  29948. },
  29949. {
  29950. name: "Normal",
  29951. height: math.unit(47, "inches"),
  29952. default: true
  29953. },
  29954. {
  29955. name: "Macro",
  29956. height: math.unit(4700.0, "inches")
  29957. },
  29958. {
  29959. name: "Megamacro",
  29960. height: math.unit(235000.0, "inches")
  29961. },
  29962. {
  29963. name: "Gigamacro",
  29964. height: math.unit(470000000.0, "inches")
  29965. }
  29966. ]
  29967. )
  29968. };
  29969. pokemonMakers["Spearow"] = () => {
  29970. return makeCharacter(
  29971. { name: "Spearow" },
  29972. {
  29973. "Spearow": {
  29974. height: math.unit("12", "inches"),
  29975. weight: math.unit("4.4", "lbs"),
  29976. name: "Spearow",
  29977. image: {
  29978. source: "./media/pokemon/Spearow.svg"
  29979. },
  29980. rename: true
  29981. }
  29982. },
  29983. [
  29984. {
  29985. name: "Micro",
  29986. height: math.unit(1.2, "inches")
  29987. },
  29988. {
  29989. name: "Normal",
  29990. height: math.unit(12, "inches"),
  29991. default: true
  29992. },
  29993. {
  29994. name: "Macro",
  29995. height: math.unit(1200.0, "inches")
  29996. },
  29997. {
  29998. name: "Megamacro",
  29999. height: math.unit(60000.0, "inches")
  30000. },
  30001. {
  30002. name: "Gigamacro",
  30003. height: math.unit(120000000.0, "inches")
  30004. }
  30005. ]
  30006. )
  30007. };
  30008. pokemonMakers["Spewpa"] = () => {
  30009. return makeCharacter(
  30010. { name: "Spewpa" },
  30011. {
  30012. "Spewpa": {
  30013. height: math.unit("12", "inches"),
  30014. weight: math.unit("18.5", "lbs"),
  30015. name: "Spewpa",
  30016. image: {
  30017. source: "./media/pokemon/Spewpa.svg"
  30018. },
  30019. rename: true
  30020. }
  30021. },
  30022. [
  30023. {
  30024. name: "Micro",
  30025. height: math.unit(1.2, "inches")
  30026. },
  30027. {
  30028. name: "Normal",
  30029. height: math.unit(12, "inches"),
  30030. default: true
  30031. },
  30032. {
  30033. name: "Macro",
  30034. height: math.unit(1200.0, "inches")
  30035. },
  30036. {
  30037. name: "Megamacro",
  30038. height: math.unit(60000.0, "inches")
  30039. },
  30040. {
  30041. name: "Gigamacro",
  30042. height: math.unit(120000000.0, "inches")
  30043. }
  30044. ]
  30045. )
  30046. };
  30047. pokemonMakers["Spheal"] = () => {
  30048. return makeCharacter(
  30049. { name: "Spheal" },
  30050. {
  30051. "Spheal": {
  30052. height: math.unit("31", "inches"),
  30053. weight: math.unit("87.1", "lbs"),
  30054. name: "Spheal",
  30055. image: {
  30056. source: "./media/pokemon/Spheal.svg"
  30057. },
  30058. rename: true
  30059. }
  30060. },
  30061. [
  30062. {
  30063. name: "Micro",
  30064. height: math.unit(3.1, "inches")
  30065. },
  30066. {
  30067. name: "Normal",
  30068. height: math.unit(31, "inches"),
  30069. default: true
  30070. },
  30071. {
  30072. name: "Macro",
  30073. height: math.unit(3100.0, "inches")
  30074. },
  30075. {
  30076. name: "Megamacro",
  30077. height: math.unit(155000.0, "inches")
  30078. },
  30079. {
  30080. name: "Gigamacro",
  30081. height: math.unit(310000000.0, "inches")
  30082. }
  30083. ]
  30084. )
  30085. };
  30086. pokemonMakers["Spinarak"] = () => {
  30087. return makeCharacter(
  30088. { name: "Spinarak" },
  30089. {
  30090. "Spinarak": {
  30091. height: math.unit("20", "inches"),
  30092. weight: math.unit("18.7", "lbs"),
  30093. name: "Spinarak",
  30094. image: {
  30095. source: "./media/pokemon/Spinarak.svg"
  30096. },
  30097. rename: true
  30098. }
  30099. },
  30100. [
  30101. {
  30102. name: "Micro",
  30103. height: math.unit(2.0, "inches")
  30104. },
  30105. {
  30106. name: "Normal",
  30107. height: math.unit(20, "inches"),
  30108. default: true
  30109. },
  30110. {
  30111. name: "Macro",
  30112. height: math.unit(2000.0, "inches")
  30113. },
  30114. {
  30115. name: "Megamacro",
  30116. height: math.unit(100000.0, "inches")
  30117. },
  30118. {
  30119. name: "Gigamacro",
  30120. height: math.unit(200000000.0, "inches")
  30121. }
  30122. ]
  30123. )
  30124. };
  30125. pokemonMakers["Spinda"] = () => {
  30126. return makeCharacter(
  30127. { name: "Spinda" },
  30128. {
  30129. "Spinda": {
  30130. height: math.unit("43", "inches"),
  30131. weight: math.unit("11.0", "lbs"),
  30132. name: "Spinda",
  30133. image: {
  30134. source: "./media/pokemon/Spinda.svg"
  30135. },
  30136. rename: true
  30137. }
  30138. },
  30139. [
  30140. {
  30141. name: "Micro",
  30142. height: math.unit(4.3, "inches")
  30143. },
  30144. {
  30145. name: "Normal",
  30146. height: math.unit(43, "inches"),
  30147. default: true
  30148. },
  30149. {
  30150. name: "Macro",
  30151. height: math.unit(4300.0, "inches")
  30152. },
  30153. {
  30154. name: "Megamacro",
  30155. height: math.unit(215000.0, "inches")
  30156. },
  30157. {
  30158. name: "Gigamacro",
  30159. height: math.unit(430000000.0, "inches")
  30160. }
  30161. ]
  30162. )
  30163. };
  30164. pokemonMakers["Spiritomb"] = () => {
  30165. return makeCharacter(
  30166. { name: "Spiritomb" },
  30167. {
  30168. "Spiritomb": {
  30169. height: math.unit("39", "inches"),
  30170. weight: math.unit("238.1", "lbs"),
  30171. name: "Spiritomb",
  30172. image: {
  30173. source: "./media/pokemon/Spiritomb.svg"
  30174. },
  30175. rename: true
  30176. }
  30177. },
  30178. [
  30179. {
  30180. name: "Micro",
  30181. height: math.unit(3.9, "inches")
  30182. },
  30183. {
  30184. name: "Normal",
  30185. height: math.unit(39, "inches"),
  30186. default: true
  30187. },
  30188. {
  30189. name: "Macro",
  30190. height: math.unit(3900.0, "inches")
  30191. },
  30192. {
  30193. name: "Megamacro",
  30194. height: math.unit(195000.0, "inches")
  30195. },
  30196. {
  30197. name: "Gigamacro",
  30198. height: math.unit(390000000.0, "inches")
  30199. }
  30200. ]
  30201. )
  30202. };
  30203. pokemonMakers["Spoink"] = () => {
  30204. return makeCharacter(
  30205. { name: "Spoink" },
  30206. {
  30207. "Spoink": {
  30208. height: math.unit("28", "inches"),
  30209. weight: math.unit("67.5", "lbs"),
  30210. name: "Spoink",
  30211. image: {
  30212. source: "./media/pokemon/Spoink.svg"
  30213. },
  30214. rename: true
  30215. }
  30216. },
  30217. [
  30218. {
  30219. name: "Micro",
  30220. height: math.unit(2.8, "inches")
  30221. },
  30222. {
  30223. name: "Normal",
  30224. height: math.unit(28, "inches"),
  30225. default: true
  30226. },
  30227. {
  30228. name: "Macro",
  30229. height: math.unit(2800.0, "inches")
  30230. },
  30231. {
  30232. name: "Megamacro",
  30233. height: math.unit(140000.0, "inches")
  30234. },
  30235. {
  30236. name: "Gigamacro",
  30237. height: math.unit(280000000.0, "inches")
  30238. }
  30239. ]
  30240. )
  30241. };
  30242. pokemonMakers["Spritzee"] = () => {
  30243. return makeCharacter(
  30244. { name: "Spritzee" },
  30245. {
  30246. "Spritzee": {
  30247. height: math.unit("8", "inches"),
  30248. weight: math.unit("1.1", "lbs"),
  30249. name: "Spritzee",
  30250. image: {
  30251. source: "./media/pokemon/Spritzee.svg"
  30252. },
  30253. rename: true
  30254. }
  30255. },
  30256. [
  30257. {
  30258. name: "Micro",
  30259. height: math.unit(0.8, "inches")
  30260. },
  30261. {
  30262. name: "Normal",
  30263. height: math.unit(8, "inches"),
  30264. default: true
  30265. },
  30266. {
  30267. name: "Macro",
  30268. height: math.unit(800.0, "inches")
  30269. },
  30270. {
  30271. name: "Megamacro",
  30272. height: math.unit(40000.0, "inches")
  30273. },
  30274. {
  30275. name: "Gigamacro",
  30276. height: math.unit(80000000.0, "inches")
  30277. }
  30278. ]
  30279. )
  30280. };
  30281. pokemonMakers["Squirtle"] = () => {
  30282. return makeCharacter(
  30283. { name: "Squirtle" },
  30284. {
  30285. "Squirtle": {
  30286. height: math.unit("20", "inches"),
  30287. weight: math.unit("19.8", "lbs"),
  30288. name: "Squirtle",
  30289. image: {
  30290. source: "./media/pokemon/Squirtle.svg"
  30291. },
  30292. rename: true
  30293. }
  30294. },
  30295. [
  30296. {
  30297. name: "Micro",
  30298. height: math.unit(2.0, "inches")
  30299. },
  30300. {
  30301. name: "Normal",
  30302. height: math.unit(20, "inches"),
  30303. default: true
  30304. },
  30305. {
  30306. name: "Macro",
  30307. height: math.unit(2000.0, "inches")
  30308. },
  30309. {
  30310. name: "Megamacro",
  30311. height: math.unit(100000.0, "inches")
  30312. },
  30313. {
  30314. name: "Gigamacro",
  30315. height: math.unit(200000000.0, "inches")
  30316. }
  30317. ]
  30318. )
  30319. };
  30320. pokemonMakers["Stakataka"] = () => {
  30321. return makeCharacter(
  30322. { name: "Stakataka" },
  30323. {
  30324. "Stakataka": {
  30325. height: math.unit("217", "inches"),
  30326. weight: math.unit("1807.8", "lbs"),
  30327. name: "Stakataka",
  30328. image: {
  30329. source: "./media/pokemon/Stakataka.svg"
  30330. },
  30331. rename: true
  30332. }
  30333. },
  30334. [
  30335. {
  30336. name: "Micro",
  30337. height: math.unit(21.7, "inches")
  30338. },
  30339. {
  30340. name: "Normal",
  30341. height: math.unit(217, "inches"),
  30342. default: true
  30343. },
  30344. {
  30345. name: "Macro",
  30346. height: math.unit(21700.0, "inches")
  30347. },
  30348. {
  30349. name: "Megamacro",
  30350. height: math.unit(1085000.0, "inches")
  30351. },
  30352. {
  30353. name: "Gigamacro",
  30354. height: math.unit(2170000000.0, "inches")
  30355. }
  30356. ]
  30357. )
  30358. };
  30359. pokemonMakers["Stantler"] = () => {
  30360. return makeCharacter(
  30361. { name: "Stantler" },
  30362. {
  30363. "Stantler": {
  30364. height: math.unit("55", "inches"),
  30365. weight: math.unit("157.0", "lbs"),
  30366. name: "Stantler",
  30367. image: {
  30368. source: "./media/pokemon/Stantler.svg"
  30369. },
  30370. rename: true
  30371. }
  30372. },
  30373. [
  30374. {
  30375. name: "Micro",
  30376. height: math.unit(5.5, "inches")
  30377. },
  30378. {
  30379. name: "Normal",
  30380. height: math.unit(55, "inches"),
  30381. default: true
  30382. },
  30383. {
  30384. name: "Macro",
  30385. height: math.unit(5500.0, "inches")
  30386. },
  30387. {
  30388. name: "Megamacro",
  30389. height: math.unit(275000.0, "inches")
  30390. },
  30391. {
  30392. name: "Gigamacro",
  30393. height: math.unit(550000000.0, "inches")
  30394. }
  30395. ]
  30396. )
  30397. };
  30398. pokemonMakers["Staraptor"] = () => {
  30399. return makeCharacter(
  30400. { name: "Staraptor" },
  30401. {
  30402. "Staraptor": {
  30403. height: math.unit("47", "inches"),
  30404. weight: math.unit("54.9", "lbs"),
  30405. name: "Staraptor",
  30406. image: {
  30407. source: "./media/pokemon/Staraptor.svg"
  30408. },
  30409. rename: true
  30410. }
  30411. },
  30412. [
  30413. {
  30414. name: "Micro",
  30415. height: math.unit(4.7, "inches")
  30416. },
  30417. {
  30418. name: "Normal",
  30419. height: math.unit(47, "inches"),
  30420. default: true
  30421. },
  30422. {
  30423. name: "Macro",
  30424. height: math.unit(4700.0, "inches")
  30425. },
  30426. {
  30427. name: "Megamacro",
  30428. height: math.unit(235000.0, "inches")
  30429. },
  30430. {
  30431. name: "Gigamacro",
  30432. height: math.unit(470000000.0, "inches")
  30433. }
  30434. ]
  30435. )
  30436. };
  30437. pokemonMakers["Staravia"] = () => {
  30438. return makeCharacter(
  30439. { name: "Staravia" },
  30440. {
  30441. "Staravia": {
  30442. height: math.unit("24", "inches"),
  30443. weight: math.unit("34.2", "lbs"),
  30444. name: "Staravia",
  30445. image: {
  30446. source: "./media/pokemon/Staravia.svg"
  30447. },
  30448. rename: true
  30449. }
  30450. },
  30451. [
  30452. {
  30453. name: "Micro",
  30454. height: math.unit(2.4, "inches")
  30455. },
  30456. {
  30457. name: "Normal",
  30458. height: math.unit(24, "inches"),
  30459. default: true
  30460. },
  30461. {
  30462. name: "Macro",
  30463. height: math.unit(2400.0, "inches")
  30464. },
  30465. {
  30466. name: "Megamacro",
  30467. height: math.unit(120000.0, "inches")
  30468. },
  30469. {
  30470. name: "Gigamacro",
  30471. height: math.unit(240000000.0, "inches")
  30472. }
  30473. ]
  30474. )
  30475. };
  30476. pokemonMakers["Starly"] = () => {
  30477. return makeCharacter(
  30478. { name: "Starly" },
  30479. {
  30480. "Starly": {
  30481. height: math.unit("12", "inches"),
  30482. weight: math.unit("4.4", "lbs"),
  30483. name: "Starly",
  30484. image: {
  30485. source: "./media/pokemon/Starly.svg"
  30486. },
  30487. rename: true
  30488. }
  30489. },
  30490. [
  30491. {
  30492. name: "Micro",
  30493. height: math.unit(1.2, "inches")
  30494. },
  30495. {
  30496. name: "Normal",
  30497. height: math.unit(12, "inches"),
  30498. default: true
  30499. },
  30500. {
  30501. name: "Macro",
  30502. height: math.unit(1200.0, "inches")
  30503. },
  30504. {
  30505. name: "Megamacro",
  30506. height: math.unit(60000.0, "inches")
  30507. },
  30508. {
  30509. name: "Gigamacro",
  30510. height: math.unit(120000000.0, "inches")
  30511. }
  30512. ]
  30513. )
  30514. };
  30515. pokemonMakers["Starmie"] = () => {
  30516. return makeCharacter(
  30517. { name: "Starmie" },
  30518. {
  30519. "Starmie": {
  30520. height: math.unit("43", "inches"),
  30521. weight: math.unit("176.4", "lbs"),
  30522. name: "Starmie",
  30523. image: {
  30524. source: "./media/pokemon/Starmie.svg"
  30525. },
  30526. rename: true
  30527. }
  30528. },
  30529. [
  30530. {
  30531. name: "Micro",
  30532. height: math.unit(4.3, "inches")
  30533. },
  30534. {
  30535. name: "Normal",
  30536. height: math.unit(43, "inches"),
  30537. default: true
  30538. },
  30539. {
  30540. name: "Macro",
  30541. height: math.unit(4300.0, "inches")
  30542. },
  30543. {
  30544. name: "Megamacro",
  30545. height: math.unit(215000.0, "inches")
  30546. },
  30547. {
  30548. name: "Gigamacro",
  30549. height: math.unit(430000000.0, "inches")
  30550. }
  30551. ]
  30552. )
  30553. };
  30554. pokemonMakers["Staryu"] = () => {
  30555. return makeCharacter(
  30556. { name: "Staryu" },
  30557. {
  30558. "Staryu": {
  30559. height: math.unit("31", "inches"),
  30560. weight: math.unit("76.1", "lbs"),
  30561. name: "Staryu",
  30562. image: {
  30563. source: "./media/pokemon/Staryu.svg"
  30564. },
  30565. rename: true
  30566. }
  30567. },
  30568. [
  30569. {
  30570. name: "Micro",
  30571. height: math.unit(3.1, "inches")
  30572. },
  30573. {
  30574. name: "Normal",
  30575. height: math.unit(31, "inches"),
  30576. default: true
  30577. },
  30578. {
  30579. name: "Macro",
  30580. height: math.unit(3100.0, "inches")
  30581. },
  30582. {
  30583. name: "Megamacro",
  30584. height: math.unit(155000.0, "inches")
  30585. },
  30586. {
  30587. name: "Gigamacro",
  30588. height: math.unit(310000000.0, "inches")
  30589. }
  30590. ]
  30591. )
  30592. };
  30593. pokemonMakers["Steenee"] = () => {
  30594. return makeCharacter(
  30595. { name: "Steenee" },
  30596. {
  30597. "Steenee": {
  30598. height: math.unit("28", "inches"),
  30599. weight: math.unit("18.1", "lbs"),
  30600. name: "Steenee",
  30601. image: {
  30602. source: "./media/pokemon/Steenee.svg"
  30603. },
  30604. rename: true
  30605. }
  30606. },
  30607. [
  30608. {
  30609. name: "Micro",
  30610. height: math.unit(2.8, "inches")
  30611. },
  30612. {
  30613. name: "Normal",
  30614. height: math.unit(28, "inches"),
  30615. default: true
  30616. },
  30617. {
  30618. name: "Macro",
  30619. height: math.unit(2800.0, "inches")
  30620. },
  30621. {
  30622. name: "Megamacro",
  30623. height: math.unit(140000.0, "inches")
  30624. },
  30625. {
  30626. name: "Gigamacro",
  30627. height: math.unit(280000000.0, "inches")
  30628. }
  30629. ]
  30630. )
  30631. };
  30632. pokemonMakers["Stonjourner"] = () => {
  30633. return makeCharacter(
  30634. { name: "Stonjourner" },
  30635. {
  30636. "Stonjourner": {
  30637. height: math.unit("98", "inches"),
  30638. weight: math.unit("1146.4", "lbs"),
  30639. name: "Stonjourner",
  30640. image: {
  30641. source: "./media/pokemon/Stonjourner.svg"
  30642. },
  30643. rename: true
  30644. }
  30645. },
  30646. [
  30647. {
  30648. name: "Micro",
  30649. height: math.unit(9.8, "inches")
  30650. },
  30651. {
  30652. name: "Normal",
  30653. height: math.unit(98, "inches"),
  30654. default: true
  30655. },
  30656. {
  30657. name: "Macro",
  30658. height: math.unit(9800.0, "inches")
  30659. },
  30660. {
  30661. name: "Megamacro",
  30662. height: math.unit(490000.0, "inches")
  30663. },
  30664. {
  30665. name: "Gigamacro",
  30666. height: math.unit(980000000.0, "inches")
  30667. }
  30668. ]
  30669. )
  30670. };
  30671. pokemonMakers["Stoutland"] = () => {
  30672. return makeCharacter(
  30673. { name: "Stoutland" },
  30674. {
  30675. "Stoutland": {
  30676. height: math.unit("47", "inches"),
  30677. weight: math.unit("134.5", "lbs"),
  30678. name: "Stoutland",
  30679. image: {
  30680. source: "./media/pokemon/Stoutland.svg"
  30681. },
  30682. rename: true
  30683. }
  30684. },
  30685. [
  30686. {
  30687. name: "Micro",
  30688. height: math.unit(4.7, "inches")
  30689. },
  30690. {
  30691. name: "Normal",
  30692. height: math.unit(47, "inches"),
  30693. default: true
  30694. },
  30695. {
  30696. name: "Macro",
  30697. height: math.unit(4700.0, "inches")
  30698. },
  30699. {
  30700. name: "Megamacro",
  30701. height: math.unit(235000.0, "inches")
  30702. },
  30703. {
  30704. name: "Gigamacro",
  30705. height: math.unit(470000000.0, "inches")
  30706. }
  30707. ]
  30708. )
  30709. };
  30710. pokemonMakers["Stufful"] = () => {
  30711. return makeCharacter(
  30712. { name: "Stufful" },
  30713. {
  30714. "Stufful": {
  30715. height: math.unit("20", "inches"),
  30716. weight: math.unit("15.0", "lbs"),
  30717. name: "Stufful",
  30718. image: {
  30719. source: "./media/pokemon/Stufful.svg"
  30720. },
  30721. rename: true
  30722. }
  30723. },
  30724. [
  30725. {
  30726. name: "Micro",
  30727. height: math.unit(2.0, "inches")
  30728. },
  30729. {
  30730. name: "Normal",
  30731. height: math.unit(20, "inches"),
  30732. default: true
  30733. },
  30734. {
  30735. name: "Macro",
  30736. height: math.unit(2000.0, "inches")
  30737. },
  30738. {
  30739. name: "Megamacro",
  30740. height: math.unit(100000.0, "inches")
  30741. },
  30742. {
  30743. name: "Gigamacro",
  30744. height: math.unit(200000000.0, "inches")
  30745. }
  30746. ]
  30747. )
  30748. };
  30749. pokemonMakers["Stunfisk"] = () => {
  30750. return makeCharacter(
  30751. { name: "Stunfisk" },
  30752. {
  30753. "Galarian Form": {
  30754. height: math.unit("28", "inches"),
  30755. weight: math.unit("45.2", "lbs"),
  30756. name: "Galarian Form",
  30757. image: {
  30758. source: "./media/pokemon/Stunfisk - Galarian Form.svg"
  30759. },
  30760. rename: true
  30761. },
  30762. "Stunfisk": {
  30763. height: math.unit("28", "inches"),
  30764. weight: math.unit("24.3", "lbs"),
  30765. name: "Stunfisk",
  30766. image: {
  30767. source: "./media/pokemon/Stunfisk.svg"
  30768. },
  30769. rename: true
  30770. }
  30771. },
  30772. [
  30773. {
  30774. name: "Micro",
  30775. height: math.unit(2.8, "inches")
  30776. },
  30777. {
  30778. name: "Normal",
  30779. height: math.unit(28, "inches"),
  30780. default: true
  30781. },
  30782. {
  30783. name: "Macro",
  30784. height: math.unit(2800.0, "inches")
  30785. },
  30786. {
  30787. name: "Megamacro",
  30788. height: math.unit(140000.0, "inches")
  30789. },
  30790. {
  30791. name: "Gigamacro",
  30792. height: math.unit(280000000.0, "inches")
  30793. }
  30794. ]
  30795. )
  30796. };
  30797. pokemonMakers["Stunky"] = () => {
  30798. return makeCharacter(
  30799. { name: "Stunky" },
  30800. {
  30801. "Stunky": {
  30802. height: math.unit("16", "inches"),
  30803. weight: math.unit("42.3", "lbs"),
  30804. name: "Stunky",
  30805. image: {
  30806. source: "./media/pokemon/Stunky.svg"
  30807. },
  30808. rename: true
  30809. }
  30810. },
  30811. [
  30812. {
  30813. name: "Micro",
  30814. height: math.unit(1.6, "inches")
  30815. },
  30816. {
  30817. name: "Normal",
  30818. height: math.unit(16, "inches"),
  30819. default: true
  30820. },
  30821. {
  30822. name: "Macro",
  30823. height: math.unit(1600.0, "inches")
  30824. },
  30825. {
  30826. name: "Megamacro",
  30827. height: math.unit(80000.0, "inches")
  30828. },
  30829. {
  30830. name: "Gigamacro",
  30831. height: math.unit(160000000.0, "inches")
  30832. }
  30833. ]
  30834. )
  30835. };
  30836. pokemonMakers["Sudowoodo"] = () => {
  30837. return makeCharacter(
  30838. { name: "Sudowoodo" },
  30839. {
  30840. "Sudowoodo": {
  30841. height: math.unit("47", "inches"),
  30842. weight: math.unit("83.8", "lbs"),
  30843. name: "Sudowoodo",
  30844. image: {
  30845. source: "./media/pokemon/Sudowoodo.svg"
  30846. },
  30847. rename: true
  30848. }
  30849. },
  30850. [
  30851. {
  30852. name: "Micro",
  30853. height: math.unit(4.7, "inches")
  30854. },
  30855. {
  30856. name: "Normal",
  30857. height: math.unit(47, "inches"),
  30858. default: true
  30859. },
  30860. {
  30861. name: "Macro",
  30862. height: math.unit(4700.0, "inches")
  30863. },
  30864. {
  30865. name: "Megamacro",
  30866. height: math.unit(235000.0, "inches")
  30867. },
  30868. {
  30869. name: "Gigamacro",
  30870. height: math.unit(470000000.0, "inches")
  30871. }
  30872. ]
  30873. )
  30874. };
  30875. pokemonMakers["Suicune"] = () => {
  30876. return makeCharacter(
  30877. { name: "Suicune" },
  30878. {
  30879. "Suicune": {
  30880. height: math.unit("79", "inches"),
  30881. weight: math.unit("412.3", "lbs"),
  30882. name: "Suicune",
  30883. image: {
  30884. source: "./media/pokemon/Suicune.svg"
  30885. },
  30886. rename: true
  30887. }
  30888. },
  30889. [
  30890. {
  30891. name: "Micro",
  30892. height: math.unit(7.9, "inches")
  30893. },
  30894. {
  30895. name: "Normal",
  30896. height: math.unit(79, "inches"),
  30897. default: true
  30898. },
  30899. {
  30900. name: "Macro",
  30901. height: math.unit(7900.0, "inches")
  30902. },
  30903. {
  30904. name: "Megamacro",
  30905. height: math.unit(395000.0, "inches")
  30906. },
  30907. {
  30908. name: "Gigamacro",
  30909. height: math.unit(790000000.0, "inches")
  30910. }
  30911. ]
  30912. )
  30913. };
  30914. pokemonMakers["Sunflora"] = () => {
  30915. return makeCharacter(
  30916. { name: "Sunflora" },
  30917. {
  30918. "Sunflora": {
  30919. height: math.unit("31", "inches"),
  30920. weight: math.unit("18.7", "lbs"),
  30921. name: "Sunflora",
  30922. image: {
  30923. source: "./media/pokemon/Sunflora.svg"
  30924. },
  30925. rename: true
  30926. }
  30927. },
  30928. [
  30929. {
  30930. name: "Micro",
  30931. height: math.unit(3.1, "inches")
  30932. },
  30933. {
  30934. name: "Normal",
  30935. height: math.unit(31, "inches"),
  30936. default: true
  30937. },
  30938. {
  30939. name: "Macro",
  30940. height: math.unit(3100.0, "inches")
  30941. },
  30942. {
  30943. name: "Megamacro",
  30944. height: math.unit(155000.0, "inches")
  30945. },
  30946. {
  30947. name: "Gigamacro",
  30948. height: math.unit(310000000.0, "inches")
  30949. }
  30950. ]
  30951. )
  30952. };
  30953. pokemonMakers["Sunkern"] = () => {
  30954. return makeCharacter(
  30955. { name: "Sunkern" },
  30956. {
  30957. "Sunkern": {
  30958. height: math.unit("12", "inches"),
  30959. weight: math.unit("4.0", "lbs"),
  30960. name: "Sunkern",
  30961. image: {
  30962. source: "./media/pokemon/Sunkern.svg"
  30963. },
  30964. rename: true
  30965. }
  30966. },
  30967. [
  30968. {
  30969. name: "Micro",
  30970. height: math.unit(1.2, "inches")
  30971. },
  30972. {
  30973. name: "Normal",
  30974. height: math.unit(12, "inches"),
  30975. default: true
  30976. },
  30977. {
  30978. name: "Macro",
  30979. height: math.unit(1200.0, "inches")
  30980. },
  30981. {
  30982. name: "Megamacro",
  30983. height: math.unit(60000.0, "inches")
  30984. },
  30985. {
  30986. name: "Gigamacro",
  30987. height: math.unit(120000000.0, "inches")
  30988. }
  30989. ]
  30990. )
  30991. };
  30992. pokemonMakers["Surskit"] = () => {
  30993. return makeCharacter(
  30994. { name: "Surskit" },
  30995. {
  30996. "Surskit": {
  30997. height: math.unit("20", "inches"),
  30998. weight: math.unit("3.7", "lbs"),
  30999. name: "Surskit",
  31000. image: {
  31001. source: "./media/pokemon/Surskit.svg"
  31002. },
  31003. rename: true
  31004. }
  31005. },
  31006. [
  31007. {
  31008. name: "Micro",
  31009. height: math.unit(2.0, "inches")
  31010. },
  31011. {
  31012. name: "Normal",
  31013. height: math.unit(20, "inches"),
  31014. default: true
  31015. },
  31016. {
  31017. name: "Macro",
  31018. height: math.unit(2000.0, "inches")
  31019. },
  31020. {
  31021. name: "Megamacro",
  31022. height: math.unit(100000.0, "inches")
  31023. },
  31024. {
  31025. name: "Gigamacro",
  31026. height: math.unit(200000000.0, "inches")
  31027. }
  31028. ]
  31029. )
  31030. };
  31031. pokemonMakers["Swablu"] = () => {
  31032. return makeCharacter(
  31033. { name: "Swablu" },
  31034. {
  31035. "Swablu": {
  31036. height: math.unit("16", "inches"),
  31037. weight: math.unit("2.6", "lbs"),
  31038. name: "Swablu",
  31039. image: {
  31040. source: "./media/pokemon/Swablu.svg"
  31041. },
  31042. rename: true
  31043. }
  31044. },
  31045. [
  31046. {
  31047. name: "Micro",
  31048. height: math.unit(1.6, "inches")
  31049. },
  31050. {
  31051. name: "Normal",
  31052. height: math.unit(16, "inches"),
  31053. default: true
  31054. },
  31055. {
  31056. name: "Macro",
  31057. height: math.unit(1600.0, "inches")
  31058. },
  31059. {
  31060. name: "Megamacro",
  31061. height: math.unit(80000.0, "inches")
  31062. },
  31063. {
  31064. name: "Gigamacro",
  31065. height: math.unit(160000000.0, "inches")
  31066. }
  31067. ]
  31068. )
  31069. };
  31070. pokemonMakers["Swadloon"] = () => {
  31071. return makeCharacter(
  31072. { name: "Swadloon" },
  31073. {
  31074. "Swadloon": {
  31075. height: math.unit("20", "inches"),
  31076. weight: math.unit("16.1", "lbs"),
  31077. name: "Swadloon",
  31078. image: {
  31079. source: "./media/pokemon/Swadloon.svg"
  31080. },
  31081. rename: true
  31082. }
  31083. },
  31084. [
  31085. {
  31086. name: "Micro",
  31087. height: math.unit(2.0, "inches")
  31088. },
  31089. {
  31090. name: "Normal",
  31091. height: math.unit(20, "inches"),
  31092. default: true
  31093. },
  31094. {
  31095. name: "Macro",
  31096. height: math.unit(2000.0, "inches")
  31097. },
  31098. {
  31099. name: "Megamacro",
  31100. height: math.unit(100000.0, "inches")
  31101. },
  31102. {
  31103. name: "Gigamacro",
  31104. height: math.unit(200000000.0, "inches")
  31105. }
  31106. ]
  31107. )
  31108. };
  31109. pokemonMakers["Swalot"] = () => {
  31110. return makeCharacter(
  31111. { name: "Swalot" },
  31112. {
  31113. "Swalot": {
  31114. height: math.unit("67", "inches"),
  31115. weight: math.unit("176.4", "lbs"),
  31116. name: "Swalot",
  31117. image: {
  31118. source: "./media/pokemon/Swalot.svg"
  31119. },
  31120. rename: true
  31121. }
  31122. },
  31123. [
  31124. {
  31125. name: "Micro",
  31126. height: math.unit(6.7, "inches")
  31127. },
  31128. {
  31129. name: "Normal",
  31130. height: math.unit(67, "inches"),
  31131. default: true
  31132. },
  31133. {
  31134. name: "Macro",
  31135. height: math.unit(6700.0, "inches")
  31136. },
  31137. {
  31138. name: "Megamacro",
  31139. height: math.unit(335000.0, "inches")
  31140. },
  31141. {
  31142. name: "Gigamacro",
  31143. height: math.unit(670000000.0, "inches")
  31144. }
  31145. ]
  31146. )
  31147. };
  31148. pokemonMakers["Swanna"] = () => {
  31149. return makeCharacter(
  31150. { name: "Swanna" },
  31151. {
  31152. "Swanna": {
  31153. height: math.unit("51", "inches"),
  31154. weight: math.unit("53.4", "lbs"),
  31155. name: "Swanna",
  31156. image: {
  31157. source: "./media/pokemon/Swanna.svg"
  31158. },
  31159. rename: true
  31160. }
  31161. },
  31162. [
  31163. {
  31164. name: "Micro",
  31165. height: math.unit(5.1, "inches")
  31166. },
  31167. {
  31168. name: "Normal",
  31169. height: math.unit(51, "inches"),
  31170. default: true
  31171. },
  31172. {
  31173. name: "Macro",
  31174. height: math.unit(5100.0, "inches")
  31175. },
  31176. {
  31177. name: "Megamacro",
  31178. height: math.unit(255000.0, "inches")
  31179. },
  31180. {
  31181. name: "Gigamacro",
  31182. height: math.unit(510000000.0, "inches")
  31183. }
  31184. ]
  31185. )
  31186. };
  31187. pokemonMakers["Swellow"] = () => {
  31188. return makeCharacter(
  31189. { name: "Swellow" },
  31190. {
  31191. "Swellow": {
  31192. height: math.unit("28", "inches"),
  31193. weight: math.unit("43.7", "lbs"),
  31194. name: "Swellow",
  31195. image: {
  31196. source: "./media/pokemon/Swellow.svg"
  31197. },
  31198. rename: true
  31199. }
  31200. },
  31201. [
  31202. {
  31203. name: "Micro",
  31204. height: math.unit(2.8, "inches")
  31205. },
  31206. {
  31207. name: "Normal",
  31208. height: math.unit(28, "inches"),
  31209. default: true
  31210. },
  31211. {
  31212. name: "Macro",
  31213. height: math.unit(2800.0, "inches")
  31214. },
  31215. {
  31216. name: "Megamacro",
  31217. height: math.unit(140000.0, "inches")
  31218. },
  31219. {
  31220. name: "Gigamacro",
  31221. height: math.unit(280000000.0, "inches")
  31222. }
  31223. ]
  31224. )
  31225. };
  31226. pokemonMakers["Swinub"] = () => {
  31227. return makeCharacter(
  31228. { name: "Swinub" },
  31229. {
  31230. "Swinub": {
  31231. height: math.unit("16", "inches"),
  31232. weight: math.unit("14.3", "lbs"),
  31233. name: "Swinub",
  31234. image: {
  31235. source: "./media/pokemon/Swinub.svg"
  31236. },
  31237. rename: true
  31238. }
  31239. },
  31240. [
  31241. {
  31242. name: "Micro",
  31243. height: math.unit(1.6, "inches")
  31244. },
  31245. {
  31246. name: "Normal",
  31247. height: math.unit(16, "inches"),
  31248. default: true
  31249. },
  31250. {
  31251. name: "Macro",
  31252. height: math.unit(1600.0, "inches")
  31253. },
  31254. {
  31255. name: "Megamacro",
  31256. height: math.unit(80000.0, "inches")
  31257. },
  31258. {
  31259. name: "Gigamacro",
  31260. height: math.unit(160000000.0, "inches")
  31261. }
  31262. ]
  31263. )
  31264. };
  31265. pokemonMakers["Swirlix"] = () => {
  31266. return makeCharacter(
  31267. { name: "Swirlix" },
  31268. {
  31269. "Swirlix": {
  31270. height: math.unit("16", "inches"),
  31271. weight: math.unit("7.7", "lbs"),
  31272. name: "Swirlix",
  31273. image: {
  31274. source: "./media/pokemon/Swirlix.svg"
  31275. },
  31276. rename: true
  31277. }
  31278. },
  31279. [
  31280. {
  31281. name: "Micro",
  31282. height: math.unit(1.6, "inches")
  31283. },
  31284. {
  31285. name: "Normal",
  31286. height: math.unit(16, "inches"),
  31287. default: true
  31288. },
  31289. {
  31290. name: "Macro",
  31291. height: math.unit(1600.0, "inches")
  31292. },
  31293. {
  31294. name: "Megamacro",
  31295. height: math.unit(80000.0, "inches")
  31296. },
  31297. {
  31298. name: "Gigamacro",
  31299. height: math.unit(160000000.0, "inches")
  31300. }
  31301. ]
  31302. )
  31303. };
  31304. pokemonMakers["Swoobat"] = () => {
  31305. return makeCharacter(
  31306. { name: "Swoobat" },
  31307. {
  31308. "Swoobat": {
  31309. height: math.unit("35", "inches"),
  31310. weight: math.unit("23.1", "lbs"),
  31311. name: "Swoobat",
  31312. image: {
  31313. source: "./media/pokemon/Swoobat.svg"
  31314. },
  31315. rename: true
  31316. }
  31317. },
  31318. [
  31319. {
  31320. name: "Micro",
  31321. height: math.unit(3.5, "inches")
  31322. },
  31323. {
  31324. name: "Normal",
  31325. height: math.unit(35, "inches"),
  31326. default: true
  31327. },
  31328. {
  31329. name: "Macro",
  31330. height: math.unit(3500.0, "inches")
  31331. },
  31332. {
  31333. name: "Megamacro",
  31334. height: math.unit(175000.0, "inches")
  31335. },
  31336. {
  31337. name: "Gigamacro",
  31338. height: math.unit(350000000.0, "inches")
  31339. }
  31340. ]
  31341. )
  31342. };
  31343. pokemonMakers["Sylveon"] = () => {
  31344. return makeCharacter(
  31345. { name: "Sylveon" },
  31346. {
  31347. "Sylveon": {
  31348. height: math.unit("39", "inches"),
  31349. weight: math.unit("51.8", "lbs"),
  31350. name: "Sylveon",
  31351. image: {
  31352. source: "./media/pokemon/Sylveon.svg"
  31353. },
  31354. rename: true
  31355. }
  31356. },
  31357. [
  31358. {
  31359. name: "Micro",
  31360. height: math.unit(3.9, "inches")
  31361. },
  31362. {
  31363. name: "Normal",
  31364. height: math.unit(39, "inches"),
  31365. default: true
  31366. },
  31367. {
  31368. name: "Macro",
  31369. height: math.unit(3900.0, "inches")
  31370. },
  31371. {
  31372. name: "Megamacro",
  31373. height: math.unit(195000.0, "inches")
  31374. },
  31375. {
  31376. name: "Gigamacro",
  31377. height: math.unit(390000000.0, "inches")
  31378. }
  31379. ]
  31380. )
  31381. };
  31382. pokemonMakers["Taillow"] = () => {
  31383. return makeCharacter(
  31384. { name: "Taillow" },
  31385. {
  31386. "Taillow": {
  31387. height: math.unit("12", "inches"),
  31388. weight: math.unit("5.1", "lbs"),
  31389. name: "Taillow",
  31390. image: {
  31391. source: "./media/pokemon/Taillow.svg"
  31392. },
  31393. rename: true
  31394. }
  31395. },
  31396. [
  31397. {
  31398. name: "Micro",
  31399. height: math.unit(1.2, "inches")
  31400. },
  31401. {
  31402. name: "Normal",
  31403. height: math.unit(12, "inches"),
  31404. default: true
  31405. },
  31406. {
  31407. name: "Macro",
  31408. height: math.unit(1200.0, "inches")
  31409. },
  31410. {
  31411. name: "Megamacro",
  31412. height: math.unit(60000.0, "inches")
  31413. },
  31414. {
  31415. name: "Gigamacro",
  31416. height: math.unit(120000000.0, "inches")
  31417. }
  31418. ]
  31419. )
  31420. };
  31421. pokemonMakers["Talonflame"] = () => {
  31422. return makeCharacter(
  31423. { name: "Talonflame" },
  31424. {
  31425. "Talonflame": {
  31426. height: math.unit("47", "inches"),
  31427. weight: math.unit("54.0", "lbs"),
  31428. name: "Talonflame",
  31429. image: {
  31430. source: "./media/pokemon/Talonflame.svg"
  31431. },
  31432. rename: true
  31433. }
  31434. },
  31435. [
  31436. {
  31437. name: "Micro",
  31438. height: math.unit(4.7, "inches")
  31439. },
  31440. {
  31441. name: "Normal",
  31442. height: math.unit(47, "inches"),
  31443. default: true
  31444. },
  31445. {
  31446. name: "Macro",
  31447. height: math.unit(4700.0, "inches")
  31448. },
  31449. {
  31450. name: "Megamacro",
  31451. height: math.unit(235000.0, "inches")
  31452. },
  31453. {
  31454. name: "Gigamacro",
  31455. height: math.unit(470000000.0, "inches")
  31456. }
  31457. ]
  31458. )
  31459. };
  31460. pokemonMakers["Tangela"] = () => {
  31461. return makeCharacter(
  31462. { name: "Tangela" },
  31463. {
  31464. "Tangela": {
  31465. height: math.unit("39", "inches"),
  31466. weight: math.unit("77.2", "lbs"),
  31467. name: "Tangela",
  31468. image: {
  31469. source: "./media/pokemon/Tangela.svg"
  31470. },
  31471. rename: true
  31472. }
  31473. },
  31474. [
  31475. {
  31476. name: "Micro",
  31477. height: math.unit(3.9, "inches")
  31478. },
  31479. {
  31480. name: "Normal",
  31481. height: math.unit(39, "inches"),
  31482. default: true
  31483. },
  31484. {
  31485. name: "Macro",
  31486. height: math.unit(3900.0, "inches")
  31487. },
  31488. {
  31489. name: "Megamacro",
  31490. height: math.unit(195000.0, "inches")
  31491. },
  31492. {
  31493. name: "Gigamacro",
  31494. height: math.unit(390000000.0, "inches")
  31495. }
  31496. ]
  31497. )
  31498. };
  31499. pokemonMakers["Tangrowth"] = () => {
  31500. return makeCharacter(
  31501. { name: "Tangrowth" },
  31502. {
  31503. "Tangrowth": {
  31504. height: math.unit("79", "inches"),
  31505. weight: math.unit("283.5", "lbs"),
  31506. name: "Tangrowth",
  31507. image: {
  31508. source: "./media/pokemon/Tangrowth.svg"
  31509. },
  31510. rename: true
  31511. }
  31512. },
  31513. [
  31514. {
  31515. name: "Micro",
  31516. height: math.unit(7.9, "inches")
  31517. },
  31518. {
  31519. name: "Normal",
  31520. height: math.unit(79, "inches"),
  31521. default: true
  31522. },
  31523. {
  31524. name: "Macro",
  31525. height: math.unit(7900.0, "inches")
  31526. },
  31527. {
  31528. name: "Megamacro",
  31529. height: math.unit(395000.0, "inches")
  31530. },
  31531. {
  31532. name: "Gigamacro",
  31533. height: math.unit(790000000.0, "inches")
  31534. }
  31535. ]
  31536. )
  31537. };
  31538. pokemonMakers["Tapu"] = () => {
  31539. return makeCharacter(
  31540. { name: "Tapu" },
  31541. {
  31542. "Tapu Bulu": {
  31543. height: math.unit("75", "inches"),
  31544. weight: math.unit("100.3", "lbs"),
  31545. name: "Tapu Bulu",
  31546. image: {
  31547. source: "./media/pokemon/Tapu Bulu.svg"
  31548. },
  31549. rename: true
  31550. },
  31551. "Tapu Fini": {
  31552. height: math.unit("51", "inches"),
  31553. weight: math.unit("46.7", "lbs"),
  31554. name: "Tapu Fini",
  31555. image: {
  31556. source: "./media/pokemon/Tapu Fini.svg"
  31557. },
  31558. rename: true
  31559. },
  31560. "Tapu Koko": {
  31561. height: math.unit("71", "inches"),
  31562. weight: math.unit("45.2", "lbs"),
  31563. name: "Tapu Koko",
  31564. image: {
  31565. source: "./media/pokemon/Tapu Koko.svg"
  31566. },
  31567. rename: true
  31568. },
  31569. "Tapu Lele": {
  31570. height: math.unit("47", "inches"),
  31571. weight: math.unit("41.0", "lbs"),
  31572. name: "Tapu Lele",
  31573. image: {
  31574. source: "./media/pokemon/Tapu Lele.svg"
  31575. },
  31576. rename: true
  31577. }
  31578. },
  31579. [
  31580. {
  31581. name: "Micro",
  31582. height: math.unit(7.5, "inches")
  31583. },
  31584. {
  31585. name: "Normal",
  31586. height: math.unit(75, "inches"),
  31587. default: true
  31588. },
  31589. {
  31590. name: "Macro",
  31591. height: math.unit(7500.0, "inches")
  31592. },
  31593. {
  31594. name: "Megamacro",
  31595. height: math.unit(375000.0, "inches")
  31596. },
  31597. {
  31598. name: "Gigamacro",
  31599. height: math.unit(750000000.0, "inches")
  31600. }
  31601. ]
  31602. )
  31603. };
  31604. pokemonMakers["Tauros"] = () => {
  31605. return makeCharacter(
  31606. { name: "Tauros" },
  31607. {
  31608. "Tauros": {
  31609. height: math.unit("55", "inches"),
  31610. weight: math.unit("194.9", "lbs"),
  31611. name: "Tauros",
  31612. image: {
  31613. source: "./media/pokemon/Tauros.svg"
  31614. },
  31615. rename: true
  31616. }
  31617. },
  31618. [
  31619. {
  31620. name: "Micro",
  31621. height: math.unit(5.5, "inches")
  31622. },
  31623. {
  31624. name: "Normal",
  31625. height: math.unit(55, "inches"),
  31626. default: true
  31627. },
  31628. {
  31629. name: "Macro",
  31630. height: math.unit(5500.0, "inches")
  31631. },
  31632. {
  31633. name: "Megamacro",
  31634. height: math.unit(275000.0, "inches")
  31635. },
  31636. {
  31637. name: "Gigamacro",
  31638. height: math.unit(550000000.0, "inches")
  31639. }
  31640. ]
  31641. )
  31642. };
  31643. pokemonMakers["Teddiursa"] = () => {
  31644. return makeCharacter(
  31645. { name: "Teddiursa" },
  31646. {
  31647. "Teddiursa": {
  31648. height: math.unit("24", "inches"),
  31649. weight: math.unit("19.4", "lbs"),
  31650. name: "Teddiursa",
  31651. image: {
  31652. source: "./media/pokemon/Teddiursa.svg"
  31653. },
  31654. rename: true
  31655. }
  31656. },
  31657. [
  31658. {
  31659. name: "Micro",
  31660. height: math.unit(2.4, "inches")
  31661. },
  31662. {
  31663. name: "Normal",
  31664. height: math.unit(24, "inches"),
  31665. default: true
  31666. },
  31667. {
  31668. name: "Macro",
  31669. height: math.unit(2400.0, "inches")
  31670. },
  31671. {
  31672. name: "Megamacro",
  31673. height: math.unit(120000.0, "inches")
  31674. },
  31675. {
  31676. name: "Gigamacro",
  31677. height: math.unit(240000000.0, "inches")
  31678. }
  31679. ]
  31680. )
  31681. };
  31682. pokemonMakers["Tentacool"] = () => {
  31683. return makeCharacter(
  31684. { name: "Tentacool" },
  31685. {
  31686. "Tentacool": {
  31687. height: math.unit("35", "inches"),
  31688. weight: math.unit("100.3", "lbs"),
  31689. name: "Tentacool",
  31690. image: {
  31691. source: "./media/pokemon/Tentacool.svg"
  31692. },
  31693. rename: true
  31694. }
  31695. },
  31696. [
  31697. {
  31698. name: "Micro",
  31699. height: math.unit(3.5, "inches")
  31700. },
  31701. {
  31702. name: "Normal",
  31703. height: math.unit(35, "inches"),
  31704. default: true
  31705. },
  31706. {
  31707. name: "Macro",
  31708. height: math.unit(3500.0, "inches")
  31709. },
  31710. {
  31711. name: "Megamacro",
  31712. height: math.unit(175000.0, "inches")
  31713. },
  31714. {
  31715. name: "Gigamacro",
  31716. height: math.unit(350000000.0, "inches")
  31717. }
  31718. ]
  31719. )
  31720. };
  31721. pokemonMakers["Tentacruel"] = () => {
  31722. return makeCharacter(
  31723. { name: "Tentacruel" },
  31724. {
  31725. "Tentacruel": {
  31726. height: math.unit("63", "inches"),
  31727. weight: math.unit("121.3", "lbs"),
  31728. name: "Tentacruel",
  31729. image: {
  31730. source: "./media/pokemon/Tentacruel.svg"
  31731. },
  31732. rename: true
  31733. }
  31734. },
  31735. [
  31736. {
  31737. name: "Micro",
  31738. height: math.unit(6.3, "inches")
  31739. },
  31740. {
  31741. name: "Normal",
  31742. height: math.unit(63, "inches"),
  31743. default: true
  31744. },
  31745. {
  31746. name: "Macro",
  31747. height: math.unit(6300.0, "inches")
  31748. },
  31749. {
  31750. name: "Megamacro",
  31751. height: math.unit(315000.0, "inches")
  31752. },
  31753. {
  31754. name: "Gigamacro",
  31755. height: math.unit(630000000.0, "inches")
  31756. }
  31757. ]
  31758. )
  31759. };
  31760. pokemonMakers["Tepig"] = () => {
  31761. return makeCharacter(
  31762. { name: "Tepig" },
  31763. {
  31764. "Tepig": {
  31765. height: math.unit("20", "inches"),
  31766. weight: math.unit("21.8", "lbs"),
  31767. name: "Tepig",
  31768. image: {
  31769. source: "./media/pokemon/Tepig.svg"
  31770. },
  31771. rename: true
  31772. }
  31773. },
  31774. [
  31775. {
  31776. name: "Micro",
  31777. height: math.unit(2.0, "inches")
  31778. },
  31779. {
  31780. name: "Normal",
  31781. height: math.unit(20, "inches"),
  31782. default: true
  31783. },
  31784. {
  31785. name: "Macro",
  31786. height: math.unit(2000.0, "inches")
  31787. },
  31788. {
  31789. name: "Megamacro",
  31790. height: math.unit(100000.0, "inches")
  31791. },
  31792. {
  31793. name: "Gigamacro",
  31794. height: math.unit(200000000.0, "inches")
  31795. }
  31796. ]
  31797. )
  31798. };
  31799. pokemonMakers["Terrakion"] = () => {
  31800. return makeCharacter(
  31801. { name: "Terrakion" },
  31802. {
  31803. "Terrakion": {
  31804. height: math.unit("75", "inches"),
  31805. weight: math.unit("573.2", "lbs"),
  31806. name: "Terrakion",
  31807. image: {
  31808. source: "./media/pokemon/Terrakion.svg"
  31809. },
  31810. rename: true
  31811. }
  31812. },
  31813. [
  31814. {
  31815. name: "Micro",
  31816. height: math.unit(7.5, "inches")
  31817. },
  31818. {
  31819. name: "Normal",
  31820. height: math.unit(75, "inches"),
  31821. default: true
  31822. },
  31823. {
  31824. name: "Macro",
  31825. height: math.unit(7500.0, "inches")
  31826. },
  31827. {
  31828. name: "Megamacro",
  31829. height: math.unit(375000.0, "inches")
  31830. },
  31831. {
  31832. name: "Gigamacro",
  31833. height: math.unit(750000000.0, "inches")
  31834. }
  31835. ]
  31836. )
  31837. };
  31838. pokemonMakers["Thievul"] = () => {
  31839. return makeCharacter(
  31840. { name: "Thievul" },
  31841. {
  31842. "Thievul": {
  31843. height: math.unit("47", "inches"),
  31844. weight: math.unit("43.9", "lbs"),
  31845. name: "Thievul",
  31846. image: {
  31847. source: "./media/pokemon/Thievul.svg"
  31848. },
  31849. rename: true
  31850. }
  31851. },
  31852. [
  31853. {
  31854. name: "Micro",
  31855. height: math.unit(4.7, "inches")
  31856. },
  31857. {
  31858. name: "Normal",
  31859. height: math.unit(47, "inches"),
  31860. default: true
  31861. },
  31862. {
  31863. name: "Macro",
  31864. height: math.unit(4700.0, "inches")
  31865. },
  31866. {
  31867. name: "Megamacro",
  31868. height: math.unit(235000.0, "inches")
  31869. },
  31870. {
  31871. name: "Gigamacro",
  31872. height: math.unit(470000000.0, "inches")
  31873. }
  31874. ]
  31875. )
  31876. };
  31877. pokemonMakers["Throh"] = () => {
  31878. return makeCharacter(
  31879. { name: "Throh" },
  31880. {
  31881. "Throh": {
  31882. height: math.unit("51", "inches"),
  31883. weight: math.unit("122.4", "lbs"),
  31884. name: "Throh",
  31885. image: {
  31886. source: "./media/pokemon/Throh.svg"
  31887. },
  31888. rename: true
  31889. }
  31890. },
  31891. [
  31892. {
  31893. name: "Micro",
  31894. height: math.unit(5.1, "inches")
  31895. },
  31896. {
  31897. name: "Normal",
  31898. height: math.unit(51, "inches"),
  31899. default: true
  31900. },
  31901. {
  31902. name: "Macro",
  31903. height: math.unit(5100.0, "inches")
  31904. },
  31905. {
  31906. name: "Megamacro",
  31907. height: math.unit(255000.0, "inches")
  31908. },
  31909. {
  31910. name: "Gigamacro",
  31911. height: math.unit(510000000.0, "inches")
  31912. }
  31913. ]
  31914. )
  31915. };
  31916. pokemonMakers["Thundurus"] = () => {
  31917. return makeCharacter(
  31918. { name: "Thundurus" },
  31919. {
  31920. "Incarnate Forme": {
  31921. height: math.unit("59", "inches"),
  31922. weight: math.unit("134.5", "lbs"),
  31923. name: "Incarnate Forme",
  31924. image: {
  31925. source: "./media/pokemon/Thundurus - Incarnate Forme.svg"
  31926. },
  31927. rename: true
  31928. },
  31929. "Therian Forme": {
  31930. height: math.unit("118", "inches"),
  31931. weight: math.unit("134.5", "lbs"),
  31932. name: "Therian Forme",
  31933. image: {
  31934. source: "./media/pokemon/Thundurus - Therian Forme.svg"
  31935. },
  31936. rename: true
  31937. }
  31938. },
  31939. [
  31940. {
  31941. name: "Micro",
  31942. height: math.unit(5.9, "inches")
  31943. },
  31944. {
  31945. name: "Normal",
  31946. height: math.unit(59, "inches"),
  31947. default: true
  31948. },
  31949. {
  31950. name: "Macro",
  31951. height: math.unit(5900.0, "inches")
  31952. },
  31953. {
  31954. name: "Megamacro",
  31955. height: math.unit(295000.0, "inches")
  31956. },
  31957. {
  31958. name: "Gigamacro",
  31959. height: math.unit(590000000.0, "inches")
  31960. }
  31961. ]
  31962. )
  31963. };
  31964. pokemonMakers["Thwackey"] = () => {
  31965. return makeCharacter(
  31966. { name: "Thwackey" },
  31967. {
  31968. "Thwackey": {
  31969. height: math.unit("28", "inches"),
  31970. weight: math.unit("30.9", "lbs"),
  31971. name: "Thwackey",
  31972. image: {
  31973. source: "./media/pokemon/Thwackey.svg"
  31974. },
  31975. rename: true
  31976. }
  31977. },
  31978. [
  31979. {
  31980. name: "Micro",
  31981. height: math.unit(2.8, "inches")
  31982. },
  31983. {
  31984. name: "Normal",
  31985. height: math.unit(28, "inches"),
  31986. default: true
  31987. },
  31988. {
  31989. name: "Macro",
  31990. height: math.unit(2800.0, "inches")
  31991. },
  31992. {
  31993. name: "Megamacro",
  31994. height: math.unit(140000.0, "inches")
  31995. },
  31996. {
  31997. name: "Gigamacro",
  31998. height: math.unit(280000000.0, "inches")
  31999. }
  32000. ]
  32001. )
  32002. };
  32003. pokemonMakers["Timburr"] = () => {
  32004. return makeCharacter(
  32005. { name: "Timburr" },
  32006. {
  32007. "Timburr": {
  32008. height: math.unit("24", "inches"),
  32009. weight: math.unit("27.6", "lbs"),
  32010. name: "Timburr",
  32011. image: {
  32012. source: "./media/pokemon/Timburr.svg"
  32013. },
  32014. rename: true
  32015. }
  32016. },
  32017. [
  32018. {
  32019. name: "Micro",
  32020. height: math.unit(2.4, "inches")
  32021. },
  32022. {
  32023. name: "Normal",
  32024. height: math.unit(24, "inches"),
  32025. default: true
  32026. },
  32027. {
  32028. name: "Macro",
  32029. height: math.unit(2400.0, "inches")
  32030. },
  32031. {
  32032. name: "Megamacro",
  32033. height: math.unit(120000.0, "inches")
  32034. },
  32035. {
  32036. name: "Gigamacro",
  32037. height: math.unit(240000000.0, "inches")
  32038. }
  32039. ]
  32040. )
  32041. };
  32042. pokemonMakers["Tirtouga"] = () => {
  32043. return makeCharacter(
  32044. { name: "Tirtouga" },
  32045. {
  32046. "Tirtouga": {
  32047. height: math.unit("28", "inches"),
  32048. weight: math.unit("36.4", "lbs"),
  32049. name: "Tirtouga",
  32050. image: {
  32051. source: "./media/pokemon/Tirtouga.svg"
  32052. },
  32053. rename: true
  32054. }
  32055. },
  32056. [
  32057. {
  32058. name: "Micro",
  32059. height: math.unit(2.8, "inches")
  32060. },
  32061. {
  32062. name: "Normal",
  32063. height: math.unit(28, "inches"),
  32064. default: true
  32065. },
  32066. {
  32067. name: "Macro",
  32068. height: math.unit(2800.0, "inches")
  32069. },
  32070. {
  32071. name: "Megamacro",
  32072. height: math.unit(140000.0, "inches")
  32073. },
  32074. {
  32075. name: "Gigamacro",
  32076. height: math.unit(280000000.0, "inches")
  32077. }
  32078. ]
  32079. )
  32080. };
  32081. pokemonMakers["Togedemaru"] = () => {
  32082. return makeCharacter(
  32083. { name: "Togedemaru" },
  32084. {
  32085. "Togedemaru": {
  32086. height: math.unit("12", "inches"),
  32087. weight: math.unit("7.3", "lbs"),
  32088. name: "Togedemaru",
  32089. image: {
  32090. source: "./media/pokemon/Togedemaru.svg"
  32091. },
  32092. rename: true
  32093. }
  32094. },
  32095. [
  32096. {
  32097. name: "Micro",
  32098. height: math.unit(1.2, "inches")
  32099. },
  32100. {
  32101. name: "Normal",
  32102. height: math.unit(12, "inches"),
  32103. default: true
  32104. },
  32105. {
  32106. name: "Macro",
  32107. height: math.unit(1200.0, "inches")
  32108. },
  32109. {
  32110. name: "Megamacro",
  32111. height: math.unit(60000.0, "inches")
  32112. },
  32113. {
  32114. name: "Gigamacro",
  32115. height: math.unit(120000000.0, "inches")
  32116. }
  32117. ]
  32118. )
  32119. };
  32120. pokemonMakers["Togekiss"] = () => {
  32121. return makeCharacter(
  32122. { name: "Togekiss" },
  32123. {
  32124. "Togekiss": {
  32125. height: math.unit("59", "inches"),
  32126. weight: math.unit("83.8", "lbs"),
  32127. name: "Togekiss",
  32128. image: {
  32129. source: "./media/pokemon/Togekiss.svg"
  32130. },
  32131. rename: true
  32132. }
  32133. },
  32134. [
  32135. {
  32136. name: "Micro",
  32137. height: math.unit(5.9, "inches")
  32138. },
  32139. {
  32140. name: "Normal",
  32141. height: math.unit(59, "inches"),
  32142. default: true
  32143. },
  32144. {
  32145. name: "Macro",
  32146. height: math.unit(5900.0, "inches")
  32147. },
  32148. {
  32149. name: "Megamacro",
  32150. height: math.unit(295000.0, "inches")
  32151. },
  32152. {
  32153. name: "Gigamacro",
  32154. height: math.unit(590000000.0, "inches")
  32155. }
  32156. ]
  32157. )
  32158. };
  32159. pokemonMakers["Togepi"] = () => {
  32160. return makeCharacter(
  32161. { name: "Togepi" },
  32162. {
  32163. "Togepi": {
  32164. height: math.unit("12", "inches"),
  32165. weight: math.unit("3.3", "lbs"),
  32166. name: "Togepi",
  32167. image: {
  32168. source: "./media/pokemon/Togepi.svg"
  32169. },
  32170. rename: true
  32171. }
  32172. },
  32173. [
  32174. {
  32175. name: "Micro",
  32176. height: math.unit(1.2, "inches")
  32177. },
  32178. {
  32179. name: "Normal",
  32180. height: math.unit(12, "inches"),
  32181. default: true
  32182. },
  32183. {
  32184. name: "Macro",
  32185. height: math.unit(1200.0, "inches")
  32186. },
  32187. {
  32188. name: "Megamacro",
  32189. height: math.unit(60000.0, "inches")
  32190. },
  32191. {
  32192. name: "Gigamacro",
  32193. height: math.unit(120000000.0, "inches")
  32194. }
  32195. ]
  32196. )
  32197. };
  32198. pokemonMakers["Togetic"] = () => {
  32199. return makeCharacter(
  32200. { name: "Togetic" },
  32201. {
  32202. "Togetic": {
  32203. height: math.unit("24", "inches"),
  32204. weight: math.unit("7.1", "lbs"),
  32205. name: "Togetic",
  32206. image: {
  32207. source: "./media/pokemon/Togetic.svg"
  32208. },
  32209. rename: true
  32210. }
  32211. },
  32212. [
  32213. {
  32214. name: "Micro",
  32215. height: math.unit(2.4, "inches")
  32216. },
  32217. {
  32218. name: "Normal",
  32219. height: math.unit(24, "inches"),
  32220. default: true
  32221. },
  32222. {
  32223. name: "Macro",
  32224. height: math.unit(2400.0, "inches")
  32225. },
  32226. {
  32227. name: "Megamacro",
  32228. height: math.unit(120000.0, "inches")
  32229. },
  32230. {
  32231. name: "Gigamacro",
  32232. height: math.unit(240000000.0, "inches")
  32233. }
  32234. ]
  32235. )
  32236. };
  32237. pokemonMakers["Torchic"] = () => {
  32238. return makeCharacter(
  32239. { name: "Torchic" },
  32240. {
  32241. "Torchic": {
  32242. height: math.unit("16", "inches"),
  32243. weight: math.unit("5.5", "lbs"),
  32244. name: "Torchic",
  32245. image: {
  32246. source: "./media/pokemon/Torchic.svg"
  32247. },
  32248. rename: true
  32249. }
  32250. },
  32251. [
  32252. {
  32253. name: "Micro",
  32254. height: math.unit(1.6, "inches")
  32255. },
  32256. {
  32257. name: "Normal",
  32258. height: math.unit(16, "inches"),
  32259. default: true
  32260. },
  32261. {
  32262. name: "Macro",
  32263. height: math.unit(1600.0, "inches")
  32264. },
  32265. {
  32266. name: "Megamacro",
  32267. height: math.unit(80000.0, "inches")
  32268. },
  32269. {
  32270. name: "Gigamacro",
  32271. height: math.unit(160000000.0, "inches")
  32272. }
  32273. ]
  32274. )
  32275. };
  32276. pokemonMakers["Torkoal"] = () => {
  32277. return makeCharacter(
  32278. { name: "Torkoal" },
  32279. {
  32280. "Torkoal": {
  32281. height: math.unit("20", "inches"),
  32282. weight: math.unit("177.2", "lbs"),
  32283. name: "Torkoal",
  32284. image: {
  32285. source: "./media/pokemon/Torkoal.svg"
  32286. },
  32287. rename: true
  32288. }
  32289. },
  32290. [
  32291. {
  32292. name: "Micro",
  32293. height: math.unit(2.0, "inches")
  32294. },
  32295. {
  32296. name: "Normal",
  32297. height: math.unit(20, "inches"),
  32298. default: true
  32299. },
  32300. {
  32301. name: "Macro",
  32302. height: math.unit(2000.0, "inches")
  32303. },
  32304. {
  32305. name: "Megamacro",
  32306. height: math.unit(100000.0, "inches")
  32307. },
  32308. {
  32309. name: "Gigamacro",
  32310. height: math.unit(200000000.0, "inches")
  32311. }
  32312. ]
  32313. )
  32314. };
  32315. pokemonMakers["Tornadus"] = () => {
  32316. return makeCharacter(
  32317. { name: "Tornadus" },
  32318. {
  32319. "Incarnate Forme": {
  32320. height: math.unit("59", "inches"),
  32321. weight: math.unit("138.9", "lbs"),
  32322. name: "Incarnate Forme",
  32323. image: {
  32324. source: "./media/pokemon/Tornadus - Incarnate Forme.svg"
  32325. },
  32326. rename: true
  32327. },
  32328. "Therian Forme": {
  32329. height: math.unit("55", "inches"),
  32330. weight: math.unit("138.9", "lbs"),
  32331. name: "Therian Forme",
  32332. image: {
  32333. source: "./media/pokemon/Tornadus - Therian Forme.svg"
  32334. },
  32335. rename: true
  32336. }
  32337. },
  32338. [
  32339. {
  32340. name: "Micro",
  32341. height: math.unit(5.9, "inches")
  32342. },
  32343. {
  32344. name: "Normal",
  32345. height: math.unit(59, "inches"),
  32346. default: true
  32347. },
  32348. {
  32349. name: "Macro",
  32350. height: math.unit(5900.0, "inches")
  32351. },
  32352. {
  32353. name: "Megamacro",
  32354. height: math.unit(295000.0, "inches")
  32355. },
  32356. {
  32357. name: "Gigamacro",
  32358. height: math.unit(590000000.0, "inches")
  32359. }
  32360. ]
  32361. )
  32362. };
  32363. pokemonMakers["Torracat"] = () => {
  32364. return makeCharacter(
  32365. { name: "Torracat" },
  32366. {
  32367. "Torracat": {
  32368. height: math.unit("28", "inches"),
  32369. weight: math.unit("55.1", "lbs"),
  32370. name: "Torracat",
  32371. image: {
  32372. source: "./media/pokemon/Torracat.svg"
  32373. },
  32374. rename: true
  32375. }
  32376. },
  32377. [
  32378. {
  32379. name: "Micro",
  32380. height: math.unit(2.8, "inches")
  32381. },
  32382. {
  32383. name: "Normal",
  32384. height: math.unit(28, "inches"),
  32385. default: true
  32386. },
  32387. {
  32388. name: "Macro",
  32389. height: math.unit(2800.0, "inches")
  32390. },
  32391. {
  32392. name: "Megamacro",
  32393. height: math.unit(140000.0, "inches")
  32394. },
  32395. {
  32396. name: "Gigamacro",
  32397. height: math.unit(280000000.0, "inches")
  32398. }
  32399. ]
  32400. )
  32401. };
  32402. pokemonMakers["Torterra"] = () => {
  32403. return makeCharacter(
  32404. { name: "Torterra" },
  32405. {
  32406. "Torterra": {
  32407. height: math.unit("87", "inches"),
  32408. weight: math.unit("683.4", "lbs"),
  32409. name: "Torterra",
  32410. image: {
  32411. source: "./media/pokemon/Torterra.svg"
  32412. },
  32413. rename: true
  32414. }
  32415. },
  32416. [
  32417. {
  32418. name: "Micro",
  32419. height: math.unit(8.7, "inches")
  32420. },
  32421. {
  32422. name: "Normal",
  32423. height: math.unit(87, "inches"),
  32424. default: true
  32425. },
  32426. {
  32427. name: "Macro",
  32428. height: math.unit(8700.0, "inches")
  32429. },
  32430. {
  32431. name: "Megamacro",
  32432. height: math.unit(435000.0, "inches")
  32433. },
  32434. {
  32435. name: "Gigamacro",
  32436. height: math.unit(870000000.0, "inches")
  32437. }
  32438. ]
  32439. )
  32440. };
  32441. pokemonMakers["Totodile"] = () => {
  32442. return makeCharacter(
  32443. { name: "Totodile" },
  32444. {
  32445. "Totodile": {
  32446. height: math.unit("24", "inches"),
  32447. weight: math.unit("20.9", "lbs"),
  32448. name: "Totodile",
  32449. image: {
  32450. source: "./media/pokemon/Totodile.svg"
  32451. },
  32452. rename: true
  32453. }
  32454. },
  32455. [
  32456. {
  32457. name: "Micro",
  32458. height: math.unit(2.4, "inches")
  32459. },
  32460. {
  32461. name: "Normal",
  32462. height: math.unit(24, "inches"),
  32463. default: true
  32464. },
  32465. {
  32466. name: "Macro",
  32467. height: math.unit(2400.0, "inches")
  32468. },
  32469. {
  32470. name: "Megamacro",
  32471. height: math.unit(120000.0, "inches")
  32472. },
  32473. {
  32474. name: "Gigamacro",
  32475. height: math.unit(240000000.0, "inches")
  32476. }
  32477. ]
  32478. )
  32479. };
  32480. pokemonMakers["Toucannon"] = () => {
  32481. return makeCharacter(
  32482. { name: "Toucannon" },
  32483. {
  32484. "Toucannon": {
  32485. height: math.unit("43", "inches"),
  32486. weight: math.unit("57.3", "lbs"),
  32487. name: "Toucannon",
  32488. image: {
  32489. source: "./media/pokemon/Toucannon.svg"
  32490. },
  32491. rename: true
  32492. }
  32493. },
  32494. [
  32495. {
  32496. name: "Micro",
  32497. height: math.unit(4.3, "inches")
  32498. },
  32499. {
  32500. name: "Normal",
  32501. height: math.unit(43, "inches"),
  32502. default: true
  32503. },
  32504. {
  32505. name: "Macro",
  32506. height: math.unit(4300.0, "inches")
  32507. },
  32508. {
  32509. name: "Megamacro",
  32510. height: math.unit(215000.0, "inches")
  32511. },
  32512. {
  32513. name: "Gigamacro",
  32514. height: math.unit(430000000.0, "inches")
  32515. }
  32516. ]
  32517. )
  32518. };
  32519. pokemonMakers["Toxapex"] = () => {
  32520. return makeCharacter(
  32521. { name: "Toxapex" },
  32522. {
  32523. "Toxapex": {
  32524. height: math.unit("28", "inches"),
  32525. weight: math.unit("32.0", "lbs"),
  32526. name: "Toxapex",
  32527. image: {
  32528. source: "./media/pokemon/Toxapex.svg"
  32529. },
  32530. rename: true
  32531. }
  32532. },
  32533. [
  32534. {
  32535. name: "Micro",
  32536. height: math.unit(2.8, "inches")
  32537. },
  32538. {
  32539. name: "Normal",
  32540. height: math.unit(28, "inches"),
  32541. default: true
  32542. },
  32543. {
  32544. name: "Macro",
  32545. height: math.unit(2800.0, "inches")
  32546. },
  32547. {
  32548. name: "Megamacro",
  32549. height: math.unit(140000.0, "inches")
  32550. },
  32551. {
  32552. name: "Gigamacro",
  32553. height: math.unit(280000000.0, "inches")
  32554. }
  32555. ]
  32556. )
  32557. };
  32558. pokemonMakers["Toxel"] = () => {
  32559. return makeCharacter(
  32560. { name: "Toxel" },
  32561. {
  32562. "Toxel": {
  32563. height: math.unit("16", "inches"),
  32564. weight: math.unit("24.3", "lbs"),
  32565. name: "Toxel",
  32566. image: {
  32567. source: "./media/pokemon/Toxel.svg"
  32568. },
  32569. rename: true
  32570. }
  32571. },
  32572. [
  32573. {
  32574. name: "Micro",
  32575. height: math.unit(1.6, "inches")
  32576. },
  32577. {
  32578. name: "Normal",
  32579. height: math.unit(16, "inches"),
  32580. default: true
  32581. },
  32582. {
  32583. name: "Macro",
  32584. height: math.unit(1600.0, "inches")
  32585. },
  32586. {
  32587. name: "Megamacro",
  32588. height: math.unit(80000.0, "inches")
  32589. },
  32590. {
  32591. name: "Gigamacro",
  32592. height: math.unit(160000000.0, "inches")
  32593. }
  32594. ]
  32595. )
  32596. };
  32597. pokemonMakers["Toxicroak"] = () => {
  32598. return makeCharacter(
  32599. { name: "Toxicroak" },
  32600. {
  32601. "Toxicroak": {
  32602. height: math.unit("51", "inches"),
  32603. weight: math.unit("97.9", "lbs"),
  32604. name: "Toxicroak",
  32605. image: {
  32606. source: "./media/pokemon/Toxicroak.svg"
  32607. },
  32608. rename: true
  32609. }
  32610. },
  32611. [
  32612. {
  32613. name: "Micro",
  32614. height: math.unit(5.1, "inches")
  32615. },
  32616. {
  32617. name: "Normal",
  32618. height: math.unit(51, "inches"),
  32619. default: true
  32620. },
  32621. {
  32622. name: "Macro",
  32623. height: math.unit(5100.0, "inches")
  32624. },
  32625. {
  32626. name: "Megamacro",
  32627. height: math.unit(255000.0, "inches")
  32628. },
  32629. {
  32630. name: "Gigamacro",
  32631. height: math.unit(510000000.0, "inches")
  32632. }
  32633. ]
  32634. )
  32635. };
  32636. pokemonMakers["Tranquill"] = () => {
  32637. return makeCharacter(
  32638. { name: "Tranquill" },
  32639. {
  32640. "Tranquill": {
  32641. height: math.unit("24", "inches"),
  32642. weight: math.unit("33.1", "lbs"),
  32643. name: "Tranquill",
  32644. image: {
  32645. source: "./media/pokemon/Tranquill.svg"
  32646. },
  32647. rename: true
  32648. }
  32649. },
  32650. [
  32651. {
  32652. name: "Micro",
  32653. height: math.unit(2.4, "inches")
  32654. },
  32655. {
  32656. name: "Normal",
  32657. height: math.unit(24, "inches"),
  32658. default: true
  32659. },
  32660. {
  32661. name: "Macro",
  32662. height: math.unit(2400.0, "inches")
  32663. },
  32664. {
  32665. name: "Megamacro",
  32666. height: math.unit(120000.0, "inches")
  32667. },
  32668. {
  32669. name: "Gigamacro",
  32670. height: math.unit(240000000.0, "inches")
  32671. }
  32672. ]
  32673. )
  32674. };
  32675. pokemonMakers["Trapinch"] = () => {
  32676. return makeCharacter(
  32677. { name: "Trapinch" },
  32678. {
  32679. "Trapinch": {
  32680. height: math.unit("28", "inches"),
  32681. weight: math.unit("33.1", "lbs"),
  32682. name: "Trapinch",
  32683. image: {
  32684. source: "./media/pokemon/Trapinch.svg"
  32685. },
  32686. rename: true
  32687. }
  32688. },
  32689. [
  32690. {
  32691. name: "Micro",
  32692. height: math.unit(2.8, "inches")
  32693. },
  32694. {
  32695. name: "Normal",
  32696. height: math.unit(28, "inches"),
  32697. default: true
  32698. },
  32699. {
  32700. name: "Macro",
  32701. height: math.unit(2800.0, "inches")
  32702. },
  32703. {
  32704. name: "Megamacro",
  32705. height: math.unit(140000.0, "inches")
  32706. },
  32707. {
  32708. name: "Gigamacro",
  32709. height: math.unit(280000000.0, "inches")
  32710. }
  32711. ]
  32712. )
  32713. };
  32714. pokemonMakers["Treecko"] = () => {
  32715. return makeCharacter(
  32716. { name: "Treecko" },
  32717. {
  32718. "Treecko": {
  32719. height: math.unit("20", "inches"),
  32720. weight: math.unit("11.0", "lbs"),
  32721. name: "Treecko",
  32722. image: {
  32723. source: "./media/pokemon/Treecko.svg"
  32724. },
  32725. rename: true
  32726. }
  32727. },
  32728. [
  32729. {
  32730. name: "Micro",
  32731. height: math.unit(2.0, "inches")
  32732. },
  32733. {
  32734. name: "Normal",
  32735. height: math.unit(20, "inches"),
  32736. default: true
  32737. },
  32738. {
  32739. name: "Macro",
  32740. height: math.unit(2000.0, "inches")
  32741. },
  32742. {
  32743. name: "Megamacro",
  32744. height: math.unit(100000.0, "inches")
  32745. },
  32746. {
  32747. name: "Gigamacro",
  32748. height: math.unit(200000000.0, "inches")
  32749. }
  32750. ]
  32751. )
  32752. };
  32753. pokemonMakers["Trevenant"] = () => {
  32754. return makeCharacter(
  32755. { name: "Trevenant" },
  32756. {
  32757. "Trevenant": {
  32758. height: math.unit("59", "inches"),
  32759. weight: math.unit("156.5", "lbs"),
  32760. name: "Trevenant",
  32761. image: {
  32762. source: "./media/pokemon/Trevenant.svg"
  32763. },
  32764. rename: true
  32765. }
  32766. },
  32767. [
  32768. {
  32769. name: "Micro",
  32770. height: math.unit(5.9, "inches")
  32771. },
  32772. {
  32773. name: "Normal",
  32774. height: math.unit(59, "inches"),
  32775. default: true
  32776. },
  32777. {
  32778. name: "Macro",
  32779. height: math.unit(5900.0, "inches")
  32780. },
  32781. {
  32782. name: "Megamacro",
  32783. height: math.unit(295000.0, "inches")
  32784. },
  32785. {
  32786. name: "Gigamacro",
  32787. height: math.unit(590000000.0, "inches")
  32788. }
  32789. ]
  32790. )
  32791. };
  32792. pokemonMakers["Tropius"] = () => {
  32793. return makeCharacter(
  32794. { name: "Tropius" },
  32795. {
  32796. "Tropius": {
  32797. height: math.unit("79", "inches"),
  32798. weight: math.unit("220.5", "lbs"),
  32799. name: "Tropius",
  32800. image: {
  32801. source: "./media/pokemon/Tropius.svg"
  32802. },
  32803. rename: true
  32804. }
  32805. },
  32806. [
  32807. {
  32808. name: "Micro",
  32809. height: math.unit(7.9, "inches")
  32810. },
  32811. {
  32812. name: "Normal",
  32813. height: math.unit(79, "inches"),
  32814. default: true
  32815. },
  32816. {
  32817. name: "Macro",
  32818. height: math.unit(7900.0, "inches")
  32819. },
  32820. {
  32821. name: "Megamacro",
  32822. height: math.unit(395000.0, "inches")
  32823. },
  32824. {
  32825. name: "Gigamacro",
  32826. height: math.unit(790000000.0, "inches")
  32827. }
  32828. ]
  32829. )
  32830. };
  32831. pokemonMakers["Trubbish"] = () => {
  32832. return makeCharacter(
  32833. { name: "Trubbish" },
  32834. {
  32835. "Trubbish": {
  32836. height: math.unit("24", "inches"),
  32837. weight: math.unit("68.3", "lbs"),
  32838. name: "Trubbish",
  32839. image: {
  32840. source: "./media/pokemon/Trubbish.svg"
  32841. },
  32842. rename: true
  32843. }
  32844. },
  32845. [
  32846. {
  32847. name: "Micro",
  32848. height: math.unit(2.4, "inches")
  32849. },
  32850. {
  32851. name: "Normal",
  32852. height: math.unit(24, "inches"),
  32853. default: true
  32854. },
  32855. {
  32856. name: "Macro",
  32857. height: math.unit(2400.0, "inches")
  32858. },
  32859. {
  32860. name: "Megamacro",
  32861. height: math.unit(120000.0, "inches")
  32862. },
  32863. {
  32864. name: "Gigamacro",
  32865. height: math.unit(240000000.0, "inches")
  32866. }
  32867. ]
  32868. )
  32869. };
  32870. pokemonMakers["Trumbeak"] = () => {
  32871. return makeCharacter(
  32872. { name: "Trumbeak" },
  32873. {
  32874. "Trumbeak": {
  32875. height: math.unit("24", "inches"),
  32876. weight: math.unit("32.6", "lbs"),
  32877. name: "Trumbeak",
  32878. image: {
  32879. source: "./media/pokemon/Trumbeak.svg"
  32880. },
  32881. rename: true
  32882. }
  32883. },
  32884. [
  32885. {
  32886. name: "Micro",
  32887. height: math.unit(2.4, "inches")
  32888. },
  32889. {
  32890. name: "Normal",
  32891. height: math.unit(24, "inches"),
  32892. default: true
  32893. },
  32894. {
  32895. name: "Macro",
  32896. height: math.unit(2400.0, "inches")
  32897. },
  32898. {
  32899. name: "Megamacro",
  32900. height: math.unit(120000.0, "inches")
  32901. },
  32902. {
  32903. name: "Gigamacro",
  32904. height: math.unit(240000000.0, "inches")
  32905. }
  32906. ]
  32907. )
  32908. };
  32909. pokemonMakers["Tsareena"] = () => {
  32910. return makeCharacter(
  32911. { name: "Tsareena" },
  32912. {
  32913. "Tsareena": {
  32914. height: math.unit("47", "inches"),
  32915. weight: math.unit("47.2", "lbs"),
  32916. name: "Tsareena",
  32917. image: {
  32918. source: "./media/pokemon/Tsareena.svg"
  32919. },
  32920. rename: true
  32921. }
  32922. },
  32923. [
  32924. {
  32925. name: "Micro",
  32926. height: math.unit(4.7, "inches")
  32927. },
  32928. {
  32929. name: "Normal",
  32930. height: math.unit(47, "inches"),
  32931. default: true
  32932. },
  32933. {
  32934. name: "Macro",
  32935. height: math.unit(4700.0, "inches")
  32936. },
  32937. {
  32938. name: "Megamacro",
  32939. height: math.unit(235000.0, "inches")
  32940. },
  32941. {
  32942. name: "Gigamacro",
  32943. height: math.unit(470000000.0, "inches")
  32944. }
  32945. ]
  32946. )
  32947. };
  32948. pokemonMakers["Turtonator"] = () => {
  32949. return makeCharacter(
  32950. { name: "Turtonator" },
  32951. {
  32952. "Turtonator": {
  32953. height: math.unit("79", "inches"),
  32954. weight: math.unit("467.4", "lbs"),
  32955. name: "Turtonator",
  32956. image: {
  32957. source: "./media/pokemon/Turtonator.svg"
  32958. },
  32959. rename: true
  32960. }
  32961. },
  32962. [
  32963. {
  32964. name: "Micro",
  32965. height: math.unit(7.9, "inches")
  32966. },
  32967. {
  32968. name: "Normal",
  32969. height: math.unit(79, "inches"),
  32970. default: true
  32971. },
  32972. {
  32973. name: "Macro",
  32974. height: math.unit(7900.0, "inches")
  32975. },
  32976. {
  32977. name: "Megamacro",
  32978. height: math.unit(395000.0, "inches")
  32979. },
  32980. {
  32981. name: "Gigamacro",
  32982. height: math.unit(790000000.0, "inches")
  32983. }
  32984. ]
  32985. )
  32986. };
  32987. pokemonMakers["Turtwig"] = () => {
  32988. return makeCharacter(
  32989. { name: "Turtwig" },
  32990. {
  32991. "Turtwig": {
  32992. height: math.unit("16", "inches"),
  32993. weight: math.unit("22.5", "lbs"),
  32994. name: "Turtwig",
  32995. image: {
  32996. source: "./media/pokemon/Turtwig.svg"
  32997. },
  32998. rename: true
  32999. }
  33000. },
  33001. [
  33002. {
  33003. name: "Micro",
  33004. height: math.unit(1.6, "inches")
  33005. },
  33006. {
  33007. name: "Normal",
  33008. height: math.unit(16, "inches"),
  33009. default: true
  33010. },
  33011. {
  33012. name: "Macro",
  33013. height: math.unit(1600.0, "inches")
  33014. },
  33015. {
  33016. name: "Megamacro",
  33017. height: math.unit(80000.0, "inches")
  33018. },
  33019. {
  33020. name: "Gigamacro",
  33021. height: math.unit(160000000.0, "inches")
  33022. }
  33023. ]
  33024. )
  33025. };
  33026. pokemonMakers["Tympole"] = () => {
  33027. return makeCharacter(
  33028. { name: "Tympole" },
  33029. {
  33030. "Tympole": {
  33031. height: math.unit("20", "inches"),
  33032. weight: math.unit("9.9", "lbs"),
  33033. name: "Tympole",
  33034. image: {
  33035. source: "./media/pokemon/Tympole.svg"
  33036. },
  33037. rename: true
  33038. }
  33039. },
  33040. [
  33041. {
  33042. name: "Micro",
  33043. height: math.unit(2.0, "inches")
  33044. },
  33045. {
  33046. name: "Normal",
  33047. height: math.unit(20, "inches"),
  33048. default: true
  33049. },
  33050. {
  33051. name: "Macro",
  33052. height: math.unit(2000.0, "inches")
  33053. },
  33054. {
  33055. name: "Megamacro",
  33056. height: math.unit(100000.0, "inches")
  33057. },
  33058. {
  33059. name: "Gigamacro",
  33060. height: math.unit(200000000.0, "inches")
  33061. }
  33062. ]
  33063. )
  33064. };
  33065. pokemonMakers["Tynamo"] = () => {
  33066. return makeCharacter(
  33067. { name: "Tynamo" },
  33068. {
  33069. "Tynamo": {
  33070. height: math.unit("8", "inches"),
  33071. weight: math.unit("0.7", "lbs"),
  33072. name: "Tynamo",
  33073. image: {
  33074. source: "./media/pokemon/Tynamo.svg"
  33075. },
  33076. rename: true
  33077. }
  33078. },
  33079. [
  33080. {
  33081. name: "Micro",
  33082. height: math.unit(0.8, "inches")
  33083. },
  33084. {
  33085. name: "Normal",
  33086. height: math.unit(8, "inches"),
  33087. default: true
  33088. },
  33089. {
  33090. name: "Macro",
  33091. height: math.unit(800.0, "inches")
  33092. },
  33093. {
  33094. name: "Megamacro",
  33095. height: math.unit(40000.0, "inches")
  33096. },
  33097. {
  33098. name: "Gigamacro",
  33099. height: math.unit(80000000.0, "inches")
  33100. }
  33101. ]
  33102. )
  33103. };
  33104. pokemonMakers["Typhlosion"] = () => {
  33105. return makeCharacter(
  33106. { name: "Typhlosion" },
  33107. {
  33108. "Typhlosion": {
  33109. height: math.unit("67", "inches"),
  33110. weight: math.unit("175.3", "lbs"),
  33111. name: "Typhlosion",
  33112. image: {
  33113. source: "./media/pokemon/Typhlosion.svg"
  33114. },
  33115. rename: true
  33116. }
  33117. },
  33118. [
  33119. {
  33120. name: "Micro",
  33121. height: math.unit(6.7, "inches")
  33122. },
  33123. {
  33124. name: "Normal",
  33125. height: math.unit(67, "inches"),
  33126. default: true
  33127. },
  33128. {
  33129. name: "Macro",
  33130. height: math.unit(6700.0, "inches")
  33131. },
  33132. {
  33133. name: "Megamacro",
  33134. height: math.unit(335000.0, "inches")
  33135. },
  33136. {
  33137. name: "Gigamacro",
  33138. height: math.unit(670000000.0, "inches")
  33139. }
  33140. ]
  33141. )
  33142. };
  33143. pokemonMakers["Tyrantrum"] = () => {
  33144. return makeCharacter(
  33145. { name: "Tyrantrum" },
  33146. {
  33147. "Tyrantrum": {
  33148. height: math.unit("98", "inches"),
  33149. weight: math.unit("595.2", "lbs"),
  33150. name: "Tyrantrum",
  33151. image: {
  33152. source: "./media/pokemon/Tyrantrum.svg"
  33153. },
  33154. rename: true
  33155. }
  33156. },
  33157. [
  33158. {
  33159. name: "Micro",
  33160. height: math.unit(9.8, "inches")
  33161. },
  33162. {
  33163. name: "Normal",
  33164. height: math.unit(98, "inches"),
  33165. default: true
  33166. },
  33167. {
  33168. name: "Macro",
  33169. height: math.unit(9800.0, "inches")
  33170. },
  33171. {
  33172. name: "Megamacro",
  33173. height: math.unit(490000.0, "inches")
  33174. },
  33175. {
  33176. name: "Gigamacro",
  33177. height: math.unit(980000000.0, "inches")
  33178. }
  33179. ]
  33180. )
  33181. };
  33182. pokemonMakers["Tyrogue"] = () => {
  33183. return makeCharacter(
  33184. { name: "Tyrogue" },
  33185. {
  33186. "Tyrogue": {
  33187. height: math.unit("28", "inches"),
  33188. weight: math.unit("46.3", "lbs"),
  33189. name: "Tyrogue",
  33190. image: {
  33191. source: "./media/pokemon/Tyrogue.svg"
  33192. },
  33193. rename: true
  33194. }
  33195. },
  33196. [
  33197. {
  33198. name: "Micro",
  33199. height: math.unit(2.8, "inches")
  33200. },
  33201. {
  33202. name: "Normal",
  33203. height: math.unit(28, "inches"),
  33204. default: true
  33205. },
  33206. {
  33207. name: "Macro",
  33208. height: math.unit(2800.0, "inches")
  33209. },
  33210. {
  33211. name: "Megamacro",
  33212. height: math.unit(140000.0, "inches")
  33213. },
  33214. {
  33215. name: "Gigamacro",
  33216. height: math.unit(280000000.0, "inches")
  33217. }
  33218. ]
  33219. )
  33220. };
  33221. pokemonMakers["Tyrunt"] = () => {
  33222. return makeCharacter(
  33223. { name: "Tyrunt" },
  33224. {
  33225. "Tyrunt": {
  33226. height: math.unit("31", "inches"),
  33227. weight: math.unit("57.3", "lbs"),
  33228. name: "Tyrunt",
  33229. image: {
  33230. source: "./media/pokemon/Tyrunt.svg"
  33231. },
  33232. rename: true
  33233. }
  33234. },
  33235. [
  33236. {
  33237. name: "Micro",
  33238. height: math.unit(3.1, "inches")
  33239. },
  33240. {
  33241. name: "Normal",
  33242. height: math.unit(31, "inches"),
  33243. default: true
  33244. },
  33245. {
  33246. name: "Macro",
  33247. height: math.unit(3100.0, "inches")
  33248. },
  33249. {
  33250. name: "Megamacro",
  33251. height: math.unit(155000.0, "inches")
  33252. },
  33253. {
  33254. name: "Gigamacro",
  33255. height: math.unit(310000000.0, "inches")
  33256. }
  33257. ]
  33258. )
  33259. };
  33260. pokemonMakers["Umbreon"] = () => {
  33261. return makeCharacter(
  33262. { name: "Umbreon" },
  33263. {
  33264. "Umbreon": {
  33265. height: math.unit("39", "inches"),
  33266. weight: math.unit("59.5", "lbs"),
  33267. name: "Umbreon",
  33268. image: {
  33269. source: "./media/pokemon/Umbreon.svg"
  33270. },
  33271. rename: true
  33272. }
  33273. },
  33274. [
  33275. {
  33276. name: "Micro",
  33277. height: math.unit(3.9, "inches")
  33278. },
  33279. {
  33280. name: "Normal",
  33281. height: math.unit(39, "inches"),
  33282. default: true
  33283. },
  33284. {
  33285. name: "Macro",
  33286. height: math.unit(3900.0, "inches")
  33287. },
  33288. {
  33289. name: "Megamacro",
  33290. height: math.unit(195000.0, "inches")
  33291. },
  33292. {
  33293. name: "Gigamacro",
  33294. height: math.unit(390000000.0, "inches")
  33295. }
  33296. ]
  33297. )
  33298. };
  33299. pokemonMakers["Unfezant"] = () => {
  33300. return makeCharacter(
  33301. { name: "Unfezant" },
  33302. {
  33303. "Unfezant": {
  33304. height: math.unit("47", "inches"),
  33305. weight: math.unit("63.9", "lbs"),
  33306. name: "Unfezant",
  33307. image: {
  33308. source: "./media/pokemon/Unfezant.svg"
  33309. },
  33310. rename: true
  33311. }
  33312. },
  33313. [
  33314. {
  33315. name: "Micro",
  33316. height: math.unit(4.7, "inches")
  33317. },
  33318. {
  33319. name: "Normal",
  33320. height: math.unit(47, "inches"),
  33321. default: true
  33322. },
  33323. {
  33324. name: "Macro",
  33325. height: math.unit(4700.0, "inches")
  33326. },
  33327. {
  33328. name: "Megamacro",
  33329. height: math.unit(235000.0, "inches")
  33330. },
  33331. {
  33332. name: "Gigamacro",
  33333. height: math.unit(470000000.0, "inches")
  33334. }
  33335. ]
  33336. )
  33337. };
  33338. pokemonMakers["Unown"] = () => {
  33339. return makeCharacter(
  33340. { name: "Unown" },
  33341. {
  33342. "Unown": {
  33343. height: math.unit("20", "inches"),
  33344. weight: math.unit("11.0", "lbs"),
  33345. name: "Unown",
  33346. image: {
  33347. source: "./media/pokemon/Unown.svg"
  33348. },
  33349. rename: true
  33350. }
  33351. },
  33352. [
  33353. {
  33354. name: "Micro",
  33355. height: math.unit(2.0, "inches")
  33356. },
  33357. {
  33358. name: "Normal",
  33359. height: math.unit(20, "inches"),
  33360. default: true
  33361. },
  33362. {
  33363. name: "Macro",
  33364. height: math.unit(2000.0, "inches")
  33365. },
  33366. {
  33367. name: "Megamacro",
  33368. height: math.unit(100000.0, "inches")
  33369. },
  33370. {
  33371. name: "Gigamacro",
  33372. height: math.unit(200000000.0, "inches")
  33373. }
  33374. ]
  33375. )
  33376. };
  33377. pokemonMakers["Ursaring"] = () => {
  33378. return makeCharacter(
  33379. { name: "Ursaring" },
  33380. {
  33381. "Ursaring": {
  33382. height: math.unit("71", "inches"),
  33383. weight: math.unit("277.3", "lbs"),
  33384. name: "Ursaring",
  33385. image: {
  33386. source: "./media/pokemon/Ursaring.svg"
  33387. },
  33388. rename: true
  33389. }
  33390. },
  33391. [
  33392. {
  33393. name: "Micro",
  33394. height: math.unit(7.1, "inches")
  33395. },
  33396. {
  33397. name: "Normal",
  33398. height: math.unit(71, "inches"),
  33399. default: true
  33400. },
  33401. {
  33402. name: "Macro",
  33403. height: math.unit(7100.0, "inches")
  33404. },
  33405. {
  33406. name: "Megamacro",
  33407. height: math.unit(355000.0, "inches")
  33408. },
  33409. {
  33410. name: "Gigamacro",
  33411. height: math.unit(710000000.0, "inches")
  33412. }
  33413. ]
  33414. )
  33415. };
  33416. pokemonMakers["Uxie"] = () => {
  33417. return makeCharacter(
  33418. { name: "Uxie" },
  33419. {
  33420. "Uxie": {
  33421. height: math.unit("12", "inches"),
  33422. weight: math.unit("0.7", "lbs"),
  33423. name: "Uxie",
  33424. image: {
  33425. source: "./media/pokemon/Uxie.svg"
  33426. },
  33427. rename: true
  33428. }
  33429. },
  33430. [
  33431. {
  33432. name: "Micro",
  33433. height: math.unit(1.2, "inches")
  33434. },
  33435. {
  33436. name: "Normal",
  33437. height: math.unit(12, "inches"),
  33438. default: true
  33439. },
  33440. {
  33441. name: "Macro",
  33442. height: math.unit(1200.0, "inches")
  33443. },
  33444. {
  33445. name: "Megamacro",
  33446. height: math.unit(60000.0, "inches")
  33447. },
  33448. {
  33449. name: "Gigamacro",
  33450. height: math.unit(120000000.0, "inches")
  33451. }
  33452. ]
  33453. )
  33454. };
  33455. pokemonMakers["Vanillish"] = () => {
  33456. return makeCharacter(
  33457. { name: "Vanillish" },
  33458. {
  33459. "Vanillish": {
  33460. height: math.unit("43", "inches"),
  33461. weight: math.unit("90.4", "lbs"),
  33462. name: "Vanillish",
  33463. image: {
  33464. source: "./media/pokemon/Vanillish.svg"
  33465. },
  33466. rename: true
  33467. }
  33468. },
  33469. [
  33470. {
  33471. name: "Micro",
  33472. height: math.unit(4.3, "inches")
  33473. },
  33474. {
  33475. name: "Normal",
  33476. height: math.unit(43, "inches"),
  33477. default: true
  33478. },
  33479. {
  33480. name: "Macro",
  33481. height: math.unit(4300.0, "inches")
  33482. },
  33483. {
  33484. name: "Megamacro",
  33485. height: math.unit(215000.0, "inches")
  33486. },
  33487. {
  33488. name: "Gigamacro",
  33489. height: math.unit(430000000.0, "inches")
  33490. }
  33491. ]
  33492. )
  33493. };
  33494. pokemonMakers["Vanillite"] = () => {
  33495. return makeCharacter(
  33496. { name: "Vanillite" },
  33497. {
  33498. "Vanillite": {
  33499. height: math.unit("16", "inches"),
  33500. weight: math.unit("12.6", "lbs"),
  33501. name: "Vanillite",
  33502. image: {
  33503. source: "./media/pokemon/Vanillite.svg"
  33504. },
  33505. rename: true
  33506. }
  33507. },
  33508. [
  33509. {
  33510. name: "Micro",
  33511. height: math.unit(1.6, "inches")
  33512. },
  33513. {
  33514. name: "Normal",
  33515. height: math.unit(16, "inches"),
  33516. default: true
  33517. },
  33518. {
  33519. name: "Macro",
  33520. height: math.unit(1600.0, "inches")
  33521. },
  33522. {
  33523. name: "Megamacro",
  33524. height: math.unit(80000.0, "inches")
  33525. },
  33526. {
  33527. name: "Gigamacro",
  33528. height: math.unit(160000000.0, "inches")
  33529. }
  33530. ]
  33531. )
  33532. };
  33533. pokemonMakers["Vanilluxe"] = () => {
  33534. return makeCharacter(
  33535. { name: "Vanilluxe" },
  33536. {
  33537. "Vanilluxe": {
  33538. height: math.unit("51", "inches"),
  33539. weight: math.unit("126.8", "lbs"),
  33540. name: "Vanilluxe",
  33541. image: {
  33542. source: "./media/pokemon/Vanilluxe.svg"
  33543. },
  33544. rename: true
  33545. }
  33546. },
  33547. [
  33548. {
  33549. name: "Micro",
  33550. height: math.unit(5.1, "inches")
  33551. },
  33552. {
  33553. name: "Normal",
  33554. height: math.unit(51, "inches"),
  33555. default: true
  33556. },
  33557. {
  33558. name: "Macro",
  33559. height: math.unit(5100.0, "inches")
  33560. },
  33561. {
  33562. name: "Megamacro",
  33563. height: math.unit(255000.0, "inches")
  33564. },
  33565. {
  33566. name: "Gigamacro",
  33567. height: math.unit(510000000.0, "inches")
  33568. }
  33569. ]
  33570. )
  33571. };
  33572. pokemonMakers["Vaporeon"] = () => {
  33573. return makeCharacter(
  33574. { name: "Vaporeon" },
  33575. {
  33576. "Vaporeon": {
  33577. height: math.unit("39", "inches"),
  33578. weight: math.unit("63.9", "lbs"),
  33579. name: "Vaporeon",
  33580. image: {
  33581. source: "./media/pokemon/Vaporeon.svg"
  33582. },
  33583. rename: true
  33584. }
  33585. },
  33586. [
  33587. {
  33588. name: "Micro",
  33589. height: math.unit(3.9, "inches")
  33590. },
  33591. {
  33592. name: "Normal",
  33593. height: math.unit(39, "inches"),
  33594. default: true
  33595. },
  33596. {
  33597. name: "Macro",
  33598. height: math.unit(3900.0, "inches")
  33599. },
  33600. {
  33601. name: "Megamacro",
  33602. height: math.unit(195000.0, "inches")
  33603. },
  33604. {
  33605. name: "Gigamacro",
  33606. height: math.unit(390000000.0, "inches")
  33607. }
  33608. ]
  33609. )
  33610. };
  33611. pokemonMakers["Venipede"] = () => {
  33612. return makeCharacter(
  33613. { name: "Venipede" },
  33614. {
  33615. "Venipede": {
  33616. height: math.unit("16", "inches"),
  33617. weight: math.unit("11.7", "lbs"),
  33618. name: "Venipede",
  33619. image: {
  33620. source: "./media/pokemon/Venipede.svg"
  33621. },
  33622. rename: true
  33623. }
  33624. },
  33625. [
  33626. {
  33627. name: "Micro",
  33628. height: math.unit(1.6, "inches")
  33629. },
  33630. {
  33631. name: "Normal",
  33632. height: math.unit(16, "inches"),
  33633. default: true
  33634. },
  33635. {
  33636. name: "Macro",
  33637. height: math.unit(1600.0, "inches")
  33638. },
  33639. {
  33640. name: "Megamacro",
  33641. height: math.unit(80000.0, "inches")
  33642. },
  33643. {
  33644. name: "Gigamacro",
  33645. height: math.unit(160000000.0, "inches")
  33646. }
  33647. ]
  33648. )
  33649. };
  33650. pokemonMakers["Venomoth"] = () => {
  33651. return makeCharacter(
  33652. { name: "Venomoth" },
  33653. {
  33654. "Venomoth": {
  33655. height: math.unit("59", "inches"),
  33656. weight: math.unit("27.6", "lbs"),
  33657. name: "Venomoth",
  33658. image: {
  33659. source: "./media/pokemon/Venomoth.svg"
  33660. },
  33661. rename: true
  33662. }
  33663. },
  33664. [
  33665. {
  33666. name: "Micro",
  33667. height: math.unit(5.9, "inches")
  33668. },
  33669. {
  33670. name: "Normal",
  33671. height: math.unit(59, "inches"),
  33672. default: true
  33673. },
  33674. {
  33675. name: "Macro",
  33676. height: math.unit(5900.0, "inches")
  33677. },
  33678. {
  33679. name: "Megamacro",
  33680. height: math.unit(295000.0, "inches")
  33681. },
  33682. {
  33683. name: "Gigamacro",
  33684. height: math.unit(590000000.0, "inches")
  33685. }
  33686. ]
  33687. )
  33688. };
  33689. pokemonMakers["Venonat"] = () => {
  33690. return makeCharacter(
  33691. { name: "Venonat" },
  33692. {
  33693. "Venonat": {
  33694. height: math.unit("39", "inches"),
  33695. weight: math.unit("66.1", "lbs"),
  33696. name: "Venonat",
  33697. image: {
  33698. source: "./media/pokemon/Venonat.svg"
  33699. },
  33700. rename: true
  33701. }
  33702. },
  33703. [
  33704. {
  33705. name: "Micro",
  33706. height: math.unit(3.9, "inches")
  33707. },
  33708. {
  33709. name: "Normal",
  33710. height: math.unit(39, "inches"),
  33711. default: true
  33712. },
  33713. {
  33714. name: "Macro",
  33715. height: math.unit(3900.0, "inches")
  33716. },
  33717. {
  33718. name: "Megamacro",
  33719. height: math.unit(195000.0, "inches")
  33720. },
  33721. {
  33722. name: "Gigamacro",
  33723. height: math.unit(390000000.0, "inches")
  33724. }
  33725. ]
  33726. )
  33727. };
  33728. pokemonMakers["Vespiquen"] = () => {
  33729. return makeCharacter(
  33730. { name: "Vespiquen" },
  33731. {
  33732. "Vespiquen": {
  33733. height: math.unit("47", "inches"),
  33734. weight: math.unit("84.9", "lbs"),
  33735. name: "Vespiquen",
  33736. image: {
  33737. source: "./media/pokemon/Vespiquen.svg"
  33738. },
  33739. rename: true
  33740. }
  33741. },
  33742. [
  33743. {
  33744. name: "Micro",
  33745. height: math.unit(4.7, "inches")
  33746. },
  33747. {
  33748. name: "Normal",
  33749. height: math.unit(47, "inches"),
  33750. default: true
  33751. },
  33752. {
  33753. name: "Macro",
  33754. height: math.unit(4700.0, "inches")
  33755. },
  33756. {
  33757. name: "Megamacro",
  33758. height: math.unit(235000.0, "inches")
  33759. },
  33760. {
  33761. name: "Gigamacro",
  33762. height: math.unit(470000000.0, "inches")
  33763. }
  33764. ]
  33765. )
  33766. };
  33767. pokemonMakers["Vibrava"] = () => {
  33768. return makeCharacter(
  33769. { name: "Vibrava" },
  33770. {
  33771. "Vibrava": {
  33772. height: math.unit("43", "inches"),
  33773. weight: math.unit("33.7", "lbs"),
  33774. name: "Vibrava",
  33775. image: {
  33776. source: "./media/pokemon/Vibrava.svg"
  33777. },
  33778. rename: true
  33779. }
  33780. },
  33781. [
  33782. {
  33783. name: "Micro",
  33784. height: math.unit(4.3, "inches")
  33785. },
  33786. {
  33787. name: "Normal",
  33788. height: math.unit(43, "inches"),
  33789. default: true
  33790. },
  33791. {
  33792. name: "Macro",
  33793. height: math.unit(4300.0, "inches")
  33794. },
  33795. {
  33796. name: "Megamacro",
  33797. height: math.unit(215000.0, "inches")
  33798. },
  33799. {
  33800. name: "Gigamacro",
  33801. height: math.unit(430000000.0, "inches")
  33802. }
  33803. ]
  33804. )
  33805. };
  33806. pokemonMakers["Victini"] = () => {
  33807. return makeCharacter(
  33808. { name: "Victini" },
  33809. {
  33810. "Victini": {
  33811. height: math.unit("16", "inches"),
  33812. weight: math.unit("8.8", "lbs"),
  33813. name: "Victini",
  33814. image: {
  33815. source: "./media/pokemon/Victini.svg"
  33816. },
  33817. rename: true
  33818. }
  33819. },
  33820. [
  33821. {
  33822. name: "Micro",
  33823. height: math.unit(1.6, "inches")
  33824. },
  33825. {
  33826. name: "Normal",
  33827. height: math.unit(16, "inches"),
  33828. default: true
  33829. },
  33830. {
  33831. name: "Macro",
  33832. height: math.unit(1600.0, "inches")
  33833. },
  33834. {
  33835. name: "Megamacro",
  33836. height: math.unit(80000.0, "inches")
  33837. },
  33838. {
  33839. name: "Gigamacro",
  33840. height: math.unit(160000000.0, "inches")
  33841. }
  33842. ]
  33843. )
  33844. };
  33845. pokemonMakers["Victreebel"] = () => {
  33846. return makeCharacter(
  33847. { name: "Victreebel" },
  33848. {
  33849. "Victreebel": {
  33850. height: math.unit("67", "inches"),
  33851. weight: math.unit("34.2", "lbs"),
  33852. name: "Victreebel",
  33853. image: {
  33854. source: "./media/pokemon/Victreebel.svg"
  33855. },
  33856. rename: true
  33857. }
  33858. },
  33859. [
  33860. {
  33861. name: "Micro",
  33862. height: math.unit(6.7, "inches")
  33863. },
  33864. {
  33865. name: "Normal",
  33866. height: math.unit(67, "inches"),
  33867. default: true
  33868. },
  33869. {
  33870. name: "Macro",
  33871. height: math.unit(6700.0, "inches")
  33872. },
  33873. {
  33874. name: "Megamacro",
  33875. height: math.unit(335000.0, "inches")
  33876. },
  33877. {
  33878. name: "Gigamacro",
  33879. height: math.unit(670000000.0, "inches")
  33880. }
  33881. ]
  33882. )
  33883. };
  33884. pokemonMakers["Vigoroth"] = () => {
  33885. return makeCharacter(
  33886. { name: "Vigoroth" },
  33887. {
  33888. "Vigoroth": {
  33889. height: math.unit("55", "inches"),
  33890. weight: math.unit("102.5", "lbs"),
  33891. name: "Vigoroth",
  33892. image: {
  33893. source: "./media/pokemon/Vigoroth.svg"
  33894. },
  33895. rename: true
  33896. }
  33897. },
  33898. [
  33899. {
  33900. name: "Micro",
  33901. height: math.unit(5.5, "inches")
  33902. },
  33903. {
  33904. name: "Normal",
  33905. height: math.unit(55, "inches"),
  33906. default: true
  33907. },
  33908. {
  33909. name: "Macro",
  33910. height: math.unit(5500.0, "inches")
  33911. },
  33912. {
  33913. name: "Megamacro",
  33914. height: math.unit(275000.0, "inches")
  33915. },
  33916. {
  33917. name: "Gigamacro",
  33918. height: math.unit(550000000.0, "inches")
  33919. }
  33920. ]
  33921. )
  33922. };
  33923. pokemonMakers["Vikavolt"] = () => {
  33924. return makeCharacter(
  33925. { name: "Vikavolt" },
  33926. {
  33927. "Vikavolt": {
  33928. height: math.unit("59", "inches"),
  33929. weight: math.unit("99.2", "lbs"),
  33930. name: "Vikavolt",
  33931. image: {
  33932. source: "./media/pokemon/Vikavolt.svg"
  33933. },
  33934. rename: true
  33935. }
  33936. },
  33937. [
  33938. {
  33939. name: "Micro",
  33940. height: math.unit(5.9, "inches")
  33941. },
  33942. {
  33943. name: "Normal",
  33944. height: math.unit(59, "inches"),
  33945. default: true
  33946. },
  33947. {
  33948. name: "Macro",
  33949. height: math.unit(5900.0, "inches")
  33950. },
  33951. {
  33952. name: "Megamacro",
  33953. height: math.unit(295000.0, "inches")
  33954. },
  33955. {
  33956. name: "Gigamacro",
  33957. height: math.unit(590000000.0, "inches")
  33958. }
  33959. ]
  33960. )
  33961. };
  33962. pokemonMakers["Vileplume"] = () => {
  33963. return makeCharacter(
  33964. { name: "Vileplume" },
  33965. {
  33966. "Vileplume": {
  33967. height: math.unit("47", "inches"),
  33968. weight: math.unit("41.0", "lbs"),
  33969. name: "Vileplume",
  33970. image: {
  33971. source: "./media/pokemon/Vileplume.svg"
  33972. },
  33973. rename: true
  33974. }
  33975. },
  33976. [
  33977. {
  33978. name: "Micro",
  33979. height: math.unit(4.7, "inches")
  33980. },
  33981. {
  33982. name: "Normal",
  33983. height: math.unit(47, "inches"),
  33984. default: true
  33985. },
  33986. {
  33987. name: "Macro",
  33988. height: math.unit(4700.0, "inches")
  33989. },
  33990. {
  33991. name: "Megamacro",
  33992. height: math.unit(235000.0, "inches")
  33993. },
  33994. {
  33995. name: "Gigamacro",
  33996. height: math.unit(470000000.0, "inches")
  33997. }
  33998. ]
  33999. )
  34000. };
  34001. pokemonMakers["Virizion"] = () => {
  34002. return makeCharacter(
  34003. { name: "Virizion" },
  34004. {
  34005. "Virizion": {
  34006. height: math.unit("79", "inches"),
  34007. weight: math.unit("440.9", "lbs"),
  34008. name: "Virizion",
  34009. image: {
  34010. source: "./media/pokemon/Virizion.svg"
  34011. },
  34012. rename: true
  34013. }
  34014. },
  34015. [
  34016. {
  34017. name: "Micro",
  34018. height: math.unit(7.9, "inches")
  34019. },
  34020. {
  34021. name: "Normal",
  34022. height: math.unit(79, "inches"),
  34023. default: true
  34024. },
  34025. {
  34026. name: "Macro",
  34027. height: math.unit(7900.0, "inches")
  34028. },
  34029. {
  34030. name: "Megamacro",
  34031. height: math.unit(395000.0, "inches")
  34032. },
  34033. {
  34034. name: "Gigamacro",
  34035. height: math.unit(790000000.0, "inches")
  34036. }
  34037. ]
  34038. )
  34039. };
  34040. pokemonMakers["Vivillon"] = () => {
  34041. return makeCharacter(
  34042. { name: "Vivillon" },
  34043. {
  34044. "Vivillon": {
  34045. height: math.unit("47", "inches"),
  34046. weight: math.unit("37.5", "lbs"),
  34047. name: "Vivillon",
  34048. image: {
  34049. source: "./media/pokemon/Vivillon.svg"
  34050. },
  34051. rename: true
  34052. }
  34053. },
  34054. [
  34055. {
  34056. name: "Micro",
  34057. height: math.unit(4.7, "inches")
  34058. },
  34059. {
  34060. name: "Normal",
  34061. height: math.unit(47, "inches"),
  34062. default: true
  34063. },
  34064. {
  34065. name: "Macro",
  34066. height: math.unit(4700.0, "inches")
  34067. },
  34068. {
  34069. name: "Megamacro",
  34070. height: math.unit(235000.0, "inches")
  34071. },
  34072. {
  34073. name: "Gigamacro",
  34074. height: math.unit(470000000.0, "inches")
  34075. }
  34076. ]
  34077. )
  34078. };
  34079. pokemonMakers["Volbeat"] = () => {
  34080. return makeCharacter(
  34081. { name: "Volbeat" },
  34082. {
  34083. "Volbeat": {
  34084. height: math.unit("28", "inches"),
  34085. weight: math.unit("39.0", "lbs"),
  34086. name: "Volbeat",
  34087. image: {
  34088. source: "./media/pokemon/Volbeat.svg"
  34089. },
  34090. rename: true
  34091. }
  34092. },
  34093. [
  34094. {
  34095. name: "Micro",
  34096. height: math.unit(2.8, "inches")
  34097. },
  34098. {
  34099. name: "Normal",
  34100. height: math.unit(28, "inches"),
  34101. default: true
  34102. },
  34103. {
  34104. name: "Macro",
  34105. height: math.unit(2800.0, "inches")
  34106. },
  34107. {
  34108. name: "Megamacro",
  34109. height: math.unit(140000.0, "inches")
  34110. },
  34111. {
  34112. name: "Gigamacro",
  34113. height: math.unit(280000000.0, "inches")
  34114. }
  34115. ]
  34116. )
  34117. };
  34118. pokemonMakers["Volcanion"] = () => {
  34119. return makeCharacter(
  34120. { name: "Volcanion" },
  34121. {
  34122. "Volcanion": {
  34123. height: math.unit("67", "inches"),
  34124. weight: math.unit("429.9", "lbs"),
  34125. name: "Volcanion",
  34126. image: {
  34127. source: "./media/pokemon/Volcanion.svg"
  34128. },
  34129. rename: true
  34130. }
  34131. },
  34132. [
  34133. {
  34134. name: "Micro",
  34135. height: math.unit(6.7, "inches")
  34136. },
  34137. {
  34138. name: "Normal",
  34139. height: math.unit(67, "inches"),
  34140. default: true
  34141. },
  34142. {
  34143. name: "Macro",
  34144. height: math.unit(6700.0, "inches")
  34145. },
  34146. {
  34147. name: "Megamacro",
  34148. height: math.unit(335000.0, "inches")
  34149. },
  34150. {
  34151. name: "Gigamacro",
  34152. height: math.unit(670000000.0, "inches")
  34153. }
  34154. ]
  34155. )
  34156. };
  34157. pokemonMakers["Volcarona"] = () => {
  34158. return makeCharacter(
  34159. { name: "Volcarona" },
  34160. {
  34161. "Volcarona": {
  34162. height: math.unit("63", "inches"),
  34163. weight: math.unit("101.4", "lbs"),
  34164. name: "Volcarona",
  34165. image: {
  34166. source: "./media/pokemon/Volcarona.svg"
  34167. },
  34168. rename: true
  34169. }
  34170. },
  34171. [
  34172. {
  34173. name: "Micro",
  34174. height: math.unit(6.3, "inches")
  34175. },
  34176. {
  34177. name: "Normal",
  34178. height: math.unit(63, "inches"),
  34179. default: true
  34180. },
  34181. {
  34182. name: "Macro",
  34183. height: math.unit(6300.0, "inches")
  34184. },
  34185. {
  34186. name: "Megamacro",
  34187. height: math.unit(315000.0, "inches")
  34188. },
  34189. {
  34190. name: "Gigamacro",
  34191. height: math.unit(630000000.0, "inches")
  34192. }
  34193. ]
  34194. )
  34195. };
  34196. pokemonMakers["Voltorb"] = () => {
  34197. return makeCharacter(
  34198. { name: "Voltorb" },
  34199. {
  34200. "Voltorb": {
  34201. height: math.unit("20", "inches"),
  34202. weight: math.unit("22.9", "lbs"),
  34203. name: "Voltorb",
  34204. image: {
  34205. source: "./media/pokemon/Voltorb.svg"
  34206. },
  34207. rename: true
  34208. }
  34209. },
  34210. [
  34211. {
  34212. name: "Micro",
  34213. height: math.unit(2.0, "inches")
  34214. },
  34215. {
  34216. name: "Normal",
  34217. height: math.unit(20, "inches"),
  34218. default: true
  34219. },
  34220. {
  34221. name: "Macro",
  34222. height: math.unit(2000.0, "inches")
  34223. },
  34224. {
  34225. name: "Megamacro",
  34226. height: math.unit(100000.0, "inches")
  34227. },
  34228. {
  34229. name: "Gigamacro",
  34230. height: math.unit(200000000.0, "inches")
  34231. }
  34232. ]
  34233. )
  34234. };
  34235. pokemonMakers["Vullaby"] = () => {
  34236. return makeCharacter(
  34237. { name: "Vullaby" },
  34238. {
  34239. "Vullaby": {
  34240. height: math.unit("20", "inches"),
  34241. weight: math.unit("19.8", "lbs"),
  34242. name: "Vullaby",
  34243. image: {
  34244. source: "./media/pokemon/Vullaby.svg"
  34245. },
  34246. rename: true
  34247. }
  34248. },
  34249. [
  34250. {
  34251. name: "Micro",
  34252. height: math.unit(2.0, "inches")
  34253. },
  34254. {
  34255. name: "Normal",
  34256. height: math.unit(20, "inches"),
  34257. default: true
  34258. },
  34259. {
  34260. name: "Macro",
  34261. height: math.unit(2000.0, "inches")
  34262. },
  34263. {
  34264. name: "Megamacro",
  34265. height: math.unit(100000.0, "inches")
  34266. },
  34267. {
  34268. name: "Gigamacro",
  34269. height: math.unit(200000000.0, "inches")
  34270. }
  34271. ]
  34272. )
  34273. };
  34274. pokemonMakers["Vulpix"] = () => {
  34275. return makeCharacter(
  34276. { name: "Vulpix" },
  34277. {
  34278. "Alola Form": {
  34279. height: math.unit("24", "inches"),
  34280. weight: math.unit("21.8", "lbs"),
  34281. name: "Alola Form",
  34282. image: {
  34283. source: "./media/pokemon/Vulpix - Alola Form.svg"
  34284. },
  34285. rename: true
  34286. },
  34287. "Vulpix": {
  34288. height: math.unit("24", "inches"),
  34289. weight: math.unit("21.8", "lbs"),
  34290. name: "Vulpix",
  34291. image: {
  34292. source: "./media/pokemon/Vulpix.svg"
  34293. },
  34294. rename: true
  34295. }
  34296. },
  34297. [
  34298. {
  34299. name: "Micro",
  34300. height: math.unit(2.4, "inches")
  34301. },
  34302. {
  34303. name: "Normal",
  34304. height: math.unit(24, "inches"),
  34305. default: true
  34306. },
  34307. {
  34308. name: "Macro",
  34309. height: math.unit(2400.0, "inches")
  34310. },
  34311. {
  34312. name: "Megamacro",
  34313. height: math.unit(120000.0, "inches")
  34314. },
  34315. {
  34316. name: "Gigamacro",
  34317. height: math.unit(240000000.0, "inches")
  34318. }
  34319. ]
  34320. )
  34321. };
  34322. pokemonMakers["Wailmer"] = () => {
  34323. return makeCharacter(
  34324. { name: "Wailmer" },
  34325. {
  34326. "Wailmer": {
  34327. height: math.unit("79", "inches"),
  34328. weight: math.unit("286.6", "lbs"),
  34329. name: "Wailmer",
  34330. image: {
  34331. source: "./media/pokemon/Wailmer.svg"
  34332. },
  34333. rename: true
  34334. }
  34335. },
  34336. [
  34337. {
  34338. name: "Micro",
  34339. height: math.unit(7.9, "inches")
  34340. },
  34341. {
  34342. name: "Normal",
  34343. height: math.unit(79, "inches"),
  34344. default: true
  34345. },
  34346. {
  34347. name: "Macro",
  34348. height: math.unit(7900.0, "inches")
  34349. },
  34350. {
  34351. name: "Megamacro",
  34352. height: math.unit(395000.0, "inches")
  34353. },
  34354. {
  34355. name: "Gigamacro",
  34356. height: math.unit(790000000.0, "inches")
  34357. }
  34358. ]
  34359. )
  34360. };
  34361. pokemonMakers["Wailord"] = () => {
  34362. return makeCharacter(
  34363. { name: "Wailord" },
  34364. {
  34365. "Wailord": {
  34366. height: math.unit("571", "inches"),
  34367. weight: math.unit("877.4", "lbs"),
  34368. name: "Wailord",
  34369. image: {
  34370. source: "./media/pokemon/Wailord.svg"
  34371. },
  34372. rename: true
  34373. }
  34374. },
  34375. [
  34376. {
  34377. name: "Micro",
  34378. height: math.unit(57.1, "inches")
  34379. },
  34380. {
  34381. name: "Normal",
  34382. height: math.unit(571, "inches"),
  34383. default: true
  34384. },
  34385. {
  34386. name: "Macro",
  34387. height: math.unit(57100.0, "inches")
  34388. },
  34389. {
  34390. name: "Megamacro",
  34391. height: math.unit(2855000.0, "inches")
  34392. },
  34393. {
  34394. name: "Gigamacro",
  34395. height: math.unit(5710000000.0, "inches")
  34396. }
  34397. ]
  34398. )
  34399. };
  34400. pokemonMakers["Walrein"] = () => {
  34401. return makeCharacter(
  34402. { name: "Walrein" },
  34403. {
  34404. "Walrein": {
  34405. height: math.unit("55", "inches"),
  34406. weight: math.unit("332.0", "lbs"),
  34407. name: "Walrein",
  34408. image: {
  34409. source: "./media/pokemon/Walrein.svg"
  34410. },
  34411. rename: true
  34412. }
  34413. },
  34414. [
  34415. {
  34416. name: "Micro",
  34417. height: math.unit(5.5, "inches")
  34418. },
  34419. {
  34420. name: "Normal",
  34421. height: math.unit(55, "inches"),
  34422. default: true
  34423. },
  34424. {
  34425. name: "Macro",
  34426. height: math.unit(5500.0, "inches")
  34427. },
  34428. {
  34429. name: "Megamacro",
  34430. height: math.unit(275000.0, "inches")
  34431. },
  34432. {
  34433. name: "Gigamacro",
  34434. height: math.unit(550000000.0, "inches")
  34435. }
  34436. ]
  34437. )
  34438. };
  34439. pokemonMakers["Wartortle"] = () => {
  34440. return makeCharacter(
  34441. { name: "Wartortle" },
  34442. {
  34443. "Wartortle": {
  34444. height: math.unit("39", "inches"),
  34445. weight: math.unit("49.6", "lbs"),
  34446. name: "Wartortle",
  34447. image: {
  34448. source: "./media/pokemon/Wartortle.svg"
  34449. },
  34450. rename: true
  34451. }
  34452. },
  34453. [
  34454. {
  34455. name: "Micro",
  34456. height: math.unit(3.9, "inches")
  34457. },
  34458. {
  34459. name: "Normal",
  34460. height: math.unit(39, "inches"),
  34461. default: true
  34462. },
  34463. {
  34464. name: "Macro",
  34465. height: math.unit(3900.0, "inches")
  34466. },
  34467. {
  34468. name: "Megamacro",
  34469. height: math.unit(195000.0, "inches")
  34470. },
  34471. {
  34472. name: "Gigamacro",
  34473. height: math.unit(390000000.0, "inches")
  34474. }
  34475. ]
  34476. )
  34477. };
  34478. pokemonMakers["Watchog"] = () => {
  34479. return makeCharacter(
  34480. { name: "Watchog" },
  34481. {
  34482. "Watchog": {
  34483. height: math.unit("43", "inches"),
  34484. weight: math.unit("59.5", "lbs"),
  34485. name: "Watchog",
  34486. image: {
  34487. source: "./media/pokemon/Watchog.svg"
  34488. },
  34489. rename: true
  34490. }
  34491. },
  34492. [
  34493. {
  34494. name: "Micro",
  34495. height: math.unit(4.3, "inches")
  34496. },
  34497. {
  34498. name: "Normal",
  34499. height: math.unit(43, "inches"),
  34500. default: true
  34501. },
  34502. {
  34503. name: "Macro",
  34504. height: math.unit(4300.0, "inches")
  34505. },
  34506. {
  34507. name: "Megamacro",
  34508. height: math.unit(215000.0, "inches")
  34509. },
  34510. {
  34511. name: "Gigamacro",
  34512. height: math.unit(430000000.0, "inches")
  34513. }
  34514. ]
  34515. )
  34516. };
  34517. pokemonMakers["Weavile"] = () => {
  34518. return makeCharacter(
  34519. { name: "Weavile" },
  34520. {
  34521. "Weavile": {
  34522. height: math.unit("43", "inches"),
  34523. weight: math.unit("75.0", "lbs"),
  34524. name: "Weavile",
  34525. image: {
  34526. source: "./media/pokemon/Weavile.svg"
  34527. },
  34528. rename: true
  34529. }
  34530. },
  34531. [
  34532. {
  34533. name: "Micro",
  34534. height: math.unit(4.3, "inches")
  34535. },
  34536. {
  34537. name: "Normal",
  34538. height: math.unit(43, "inches"),
  34539. default: true
  34540. },
  34541. {
  34542. name: "Macro",
  34543. height: math.unit(4300.0, "inches")
  34544. },
  34545. {
  34546. name: "Megamacro",
  34547. height: math.unit(215000.0, "inches")
  34548. },
  34549. {
  34550. name: "Gigamacro",
  34551. height: math.unit(430000000.0, "inches")
  34552. }
  34553. ]
  34554. )
  34555. };
  34556. pokemonMakers["Weedle"] = () => {
  34557. return makeCharacter(
  34558. { name: "Weedle" },
  34559. {
  34560. "Weedle": {
  34561. height: math.unit("12", "inches"),
  34562. weight: math.unit("7.1", "lbs"),
  34563. name: "Weedle",
  34564. image: {
  34565. source: "./media/pokemon/Weedle.svg"
  34566. },
  34567. rename: true
  34568. }
  34569. },
  34570. [
  34571. {
  34572. name: "Micro",
  34573. height: math.unit(1.2, "inches")
  34574. },
  34575. {
  34576. name: "Normal",
  34577. height: math.unit(12, "inches"),
  34578. default: true
  34579. },
  34580. {
  34581. name: "Macro",
  34582. height: math.unit(1200.0, "inches")
  34583. },
  34584. {
  34585. name: "Megamacro",
  34586. height: math.unit(60000.0, "inches")
  34587. },
  34588. {
  34589. name: "Gigamacro",
  34590. height: math.unit(120000000.0, "inches")
  34591. }
  34592. ]
  34593. )
  34594. };
  34595. pokemonMakers["Weepinbell"] = () => {
  34596. return makeCharacter(
  34597. { name: "Weepinbell" },
  34598. {
  34599. "Weepinbell": {
  34600. height: math.unit("39", "inches"),
  34601. weight: math.unit("14.1", "lbs"),
  34602. name: "Weepinbell",
  34603. image: {
  34604. source: "./media/pokemon/Weepinbell.svg"
  34605. },
  34606. rename: true
  34607. }
  34608. },
  34609. [
  34610. {
  34611. name: "Micro",
  34612. height: math.unit(3.9, "inches")
  34613. },
  34614. {
  34615. name: "Normal",
  34616. height: math.unit(39, "inches"),
  34617. default: true
  34618. },
  34619. {
  34620. name: "Macro",
  34621. height: math.unit(3900.0, "inches")
  34622. },
  34623. {
  34624. name: "Megamacro",
  34625. height: math.unit(195000.0, "inches")
  34626. },
  34627. {
  34628. name: "Gigamacro",
  34629. height: math.unit(390000000.0, "inches")
  34630. }
  34631. ]
  34632. )
  34633. };
  34634. pokemonMakers["Weezing"] = () => {
  34635. return makeCharacter(
  34636. { name: "Weezing" },
  34637. {
  34638. "Galarian Form": {
  34639. height: math.unit("118", "inches"),
  34640. weight: math.unit("35.3", "lbs"),
  34641. name: "Galarian Form",
  34642. image: {
  34643. source: "./media/pokemon/Weezing - Galarian Form.svg"
  34644. },
  34645. rename: true
  34646. },
  34647. "Weezing": {
  34648. height: math.unit("47", "inches"),
  34649. weight: math.unit("20.9", "lbs"),
  34650. name: "Weezing",
  34651. image: {
  34652. source: "./media/pokemon/Weezing.svg"
  34653. },
  34654. rename: true
  34655. }
  34656. },
  34657. [
  34658. {
  34659. name: "Micro",
  34660. height: math.unit(11.8, "inches")
  34661. },
  34662. {
  34663. name: "Normal",
  34664. height: math.unit(118, "inches"),
  34665. default: true
  34666. },
  34667. {
  34668. name: "Macro",
  34669. height: math.unit(11800.0, "inches")
  34670. },
  34671. {
  34672. name: "Megamacro",
  34673. height: math.unit(590000.0, "inches")
  34674. },
  34675. {
  34676. name: "Gigamacro",
  34677. height: math.unit(1180000000.0, "inches")
  34678. }
  34679. ]
  34680. )
  34681. };
  34682. pokemonMakers["Whimsicott"] = () => {
  34683. return makeCharacter(
  34684. { name: "Whimsicott" },
  34685. {
  34686. "Whimsicott": {
  34687. height: math.unit("28", "inches"),
  34688. weight: math.unit("14.6", "lbs"),
  34689. name: "Whimsicott",
  34690. image: {
  34691. source: "./media/pokemon/Whimsicott.svg"
  34692. },
  34693. rename: true
  34694. }
  34695. },
  34696. [
  34697. {
  34698. name: "Micro",
  34699. height: math.unit(2.8, "inches")
  34700. },
  34701. {
  34702. name: "Normal",
  34703. height: math.unit(28, "inches"),
  34704. default: true
  34705. },
  34706. {
  34707. name: "Macro",
  34708. height: math.unit(2800.0, "inches")
  34709. },
  34710. {
  34711. name: "Megamacro",
  34712. height: math.unit(140000.0, "inches")
  34713. },
  34714. {
  34715. name: "Gigamacro",
  34716. height: math.unit(280000000.0, "inches")
  34717. }
  34718. ]
  34719. )
  34720. };
  34721. pokemonMakers["Whirlipede"] = () => {
  34722. return makeCharacter(
  34723. { name: "Whirlipede" },
  34724. {
  34725. "Whirlipede": {
  34726. height: math.unit("47", "inches"),
  34727. weight: math.unit("129.0", "lbs"),
  34728. name: "Whirlipede",
  34729. image: {
  34730. source: "./media/pokemon/Whirlipede.svg"
  34731. },
  34732. rename: true
  34733. }
  34734. },
  34735. [
  34736. {
  34737. name: "Micro",
  34738. height: math.unit(4.7, "inches")
  34739. },
  34740. {
  34741. name: "Normal",
  34742. height: math.unit(47, "inches"),
  34743. default: true
  34744. },
  34745. {
  34746. name: "Macro",
  34747. height: math.unit(4700.0, "inches")
  34748. },
  34749. {
  34750. name: "Megamacro",
  34751. height: math.unit(235000.0, "inches")
  34752. },
  34753. {
  34754. name: "Gigamacro",
  34755. height: math.unit(470000000.0, "inches")
  34756. }
  34757. ]
  34758. )
  34759. };
  34760. pokemonMakers["Whiscash"] = () => {
  34761. return makeCharacter(
  34762. { name: "Whiscash" },
  34763. {
  34764. "Whiscash": {
  34765. height: math.unit("35", "inches"),
  34766. weight: math.unit("52.0", "lbs"),
  34767. name: "Whiscash",
  34768. image: {
  34769. source: "./media/pokemon/Whiscash.svg"
  34770. },
  34771. rename: true
  34772. }
  34773. },
  34774. [
  34775. {
  34776. name: "Micro",
  34777. height: math.unit(3.5, "inches")
  34778. },
  34779. {
  34780. name: "Normal",
  34781. height: math.unit(35, "inches"),
  34782. default: true
  34783. },
  34784. {
  34785. name: "Macro",
  34786. height: math.unit(3500.0, "inches")
  34787. },
  34788. {
  34789. name: "Megamacro",
  34790. height: math.unit(175000.0, "inches")
  34791. },
  34792. {
  34793. name: "Gigamacro",
  34794. height: math.unit(350000000.0, "inches")
  34795. }
  34796. ]
  34797. )
  34798. };
  34799. pokemonMakers["Whismur"] = () => {
  34800. return makeCharacter(
  34801. { name: "Whismur" },
  34802. {
  34803. "Whismur": {
  34804. height: math.unit("24", "inches"),
  34805. weight: math.unit("35.9", "lbs"),
  34806. name: "Whismur",
  34807. image: {
  34808. source: "./media/pokemon/Whismur.svg"
  34809. },
  34810. rename: true
  34811. }
  34812. },
  34813. [
  34814. {
  34815. name: "Micro",
  34816. height: math.unit(2.4, "inches")
  34817. },
  34818. {
  34819. name: "Normal",
  34820. height: math.unit(24, "inches"),
  34821. default: true
  34822. },
  34823. {
  34824. name: "Macro",
  34825. height: math.unit(2400.0, "inches")
  34826. },
  34827. {
  34828. name: "Megamacro",
  34829. height: math.unit(120000.0, "inches")
  34830. },
  34831. {
  34832. name: "Gigamacro",
  34833. height: math.unit(240000000.0, "inches")
  34834. }
  34835. ]
  34836. )
  34837. };
  34838. pokemonMakers["Wigglytuff"] = () => {
  34839. return makeCharacter(
  34840. { name: "Wigglytuff" },
  34841. {
  34842. "Wigglytuff": {
  34843. height: math.unit("39", "inches"),
  34844. weight: math.unit("26.5", "lbs"),
  34845. name: "Wigglytuff",
  34846. image: {
  34847. source: "./media/pokemon/Wigglytuff.svg"
  34848. },
  34849. rename: true
  34850. }
  34851. },
  34852. [
  34853. {
  34854. name: "Micro",
  34855. height: math.unit(3.9, "inches")
  34856. },
  34857. {
  34858. name: "Normal",
  34859. height: math.unit(39, "inches"),
  34860. default: true
  34861. },
  34862. {
  34863. name: "Macro",
  34864. height: math.unit(3900.0, "inches")
  34865. },
  34866. {
  34867. name: "Megamacro",
  34868. height: math.unit(195000.0, "inches")
  34869. },
  34870. {
  34871. name: "Gigamacro",
  34872. height: math.unit(390000000.0, "inches")
  34873. }
  34874. ]
  34875. )
  34876. };
  34877. pokemonMakers["Wimpod"] = () => {
  34878. return makeCharacter(
  34879. { name: "Wimpod" },
  34880. {
  34881. "Wimpod": {
  34882. height: math.unit("20", "inches"),
  34883. weight: math.unit("26.5", "lbs"),
  34884. name: "Wimpod",
  34885. image: {
  34886. source: "./media/pokemon/Wimpod.svg"
  34887. },
  34888. rename: true
  34889. }
  34890. },
  34891. [
  34892. {
  34893. name: "Micro",
  34894. height: math.unit(2.0, "inches")
  34895. },
  34896. {
  34897. name: "Normal",
  34898. height: math.unit(20, "inches"),
  34899. default: true
  34900. },
  34901. {
  34902. name: "Macro",
  34903. height: math.unit(2000.0, "inches")
  34904. },
  34905. {
  34906. name: "Megamacro",
  34907. height: math.unit(100000.0, "inches")
  34908. },
  34909. {
  34910. name: "Gigamacro",
  34911. height: math.unit(200000000.0, "inches")
  34912. }
  34913. ]
  34914. )
  34915. };
  34916. pokemonMakers["Wingull"] = () => {
  34917. return makeCharacter(
  34918. { name: "Wingull" },
  34919. {
  34920. "Wingull": {
  34921. height: math.unit("24", "inches"),
  34922. weight: math.unit("20.9", "lbs"),
  34923. name: "Wingull",
  34924. image: {
  34925. source: "./media/pokemon/Wingull.svg"
  34926. },
  34927. rename: true
  34928. }
  34929. },
  34930. [
  34931. {
  34932. name: "Micro",
  34933. height: math.unit(2.4, "inches")
  34934. },
  34935. {
  34936. name: "Normal",
  34937. height: math.unit(24, "inches"),
  34938. default: true
  34939. },
  34940. {
  34941. name: "Macro",
  34942. height: math.unit(2400.0, "inches")
  34943. },
  34944. {
  34945. name: "Megamacro",
  34946. height: math.unit(120000.0, "inches")
  34947. },
  34948. {
  34949. name: "Gigamacro",
  34950. height: math.unit(240000000.0, "inches")
  34951. }
  34952. ]
  34953. )
  34954. };
  34955. pokemonMakers["Wishiwashi"] = () => {
  34956. return makeCharacter(
  34957. { name: "Wishiwashi" },
  34958. {
  34959. "School Form": {
  34960. height: math.unit("323", "inches"),
  34961. weight: math.unit("173.3", "lbs"),
  34962. name: "School Form",
  34963. image: {
  34964. source: "./media/pokemon/Wishiwashi - School Form.svg"
  34965. },
  34966. rename: true
  34967. },
  34968. "Solo Form": {
  34969. height: math.unit("8", "inches"),
  34970. weight: math.unit("0.7", "lbs"),
  34971. name: "Solo Form",
  34972. image: {
  34973. source: "./media/pokemon/Wishiwashi - Solo Form.svg"
  34974. },
  34975. rename: true
  34976. }
  34977. },
  34978. [
  34979. {
  34980. name: "Micro",
  34981. height: math.unit(32.3, "inches")
  34982. },
  34983. {
  34984. name: "Normal",
  34985. height: math.unit(323, "inches"),
  34986. default: true
  34987. },
  34988. {
  34989. name: "Macro",
  34990. height: math.unit(32300.0, "inches")
  34991. },
  34992. {
  34993. name: "Megamacro",
  34994. height: math.unit(1615000.0, "inches")
  34995. },
  34996. {
  34997. name: "Gigamacro",
  34998. height: math.unit(3230000000.0, "inches")
  34999. }
  35000. ]
  35001. )
  35002. };
  35003. pokemonMakers["Wobbuffet"] = () => {
  35004. return makeCharacter(
  35005. { name: "Wobbuffet" },
  35006. {
  35007. "Wobbuffet": {
  35008. height: math.unit("51", "inches"),
  35009. weight: math.unit("62.8", "lbs"),
  35010. name: "Wobbuffet",
  35011. image: {
  35012. source: "./media/pokemon/Wobbuffet.svg"
  35013. },
  35014. rename: true
  35015. }
  35016. },
  35017. [
  35018. {
  35019. name: "Micro",
  35020. height: math.unit(5.1, "inches")
  35021. },
  35022. {
  35023. name: "Normal",
  35024. height: math.unit(51, "inches"),
  35025. default: true
  35026. },
  35027. {
  35028. name: "Macro",
  35029. height: math.unit(5100.0, "inches")
  35030. },
  35031. {
  35032. name: "Megamacro",
  35033. height: math.unit(255000.0, "inches")
  35034. },
  35035. {
  35036. name: "Gigamacro",
  35037. height: math.unit(510000000.0, "inches")
  35038. }
  35039. ]
  35040. )
  35041. };
  35042. pokemonMakers["Woobat"] = () => {
  35043. return makeCharacter(
  35044. { name: "Woobat" },
  35045. {
  35046. "Woobat": {
  35047. height: math.unit("16", "inches"),
  35048. weight: math.unit("4.6", "lbs"),
  35049. name: "Woobat",
  35050. image: {
  35051. source: "./media/pokemon/Woobat.svg"
  35052. },
  35053. rename: true
  35054. }
  35055. },
  35056. [
  35057. {
  35058. name: "Micro",
  35059. height: math.unit(1.6, "inches")
  35060. },
  35061. {
  35062. name: "Normal",
  35063. height: math.unit(16, "inches"),
  35064. default: true
  35065. },
  35066. {
  35067. name: "Macro",
  35068. height: math.unit(1600.0, "inches")
  35069. },
  35070. {
  35071. name: "Megamacro",
  35072. height: math.unit(80000.0, "inches")
  35073. },
  35074. {
  35075. name: "Gigamacro",
  35076. height: math.unit(160000000.0, "inches")
  35077. }
  35078. ]
  35079. )
  35080. };
  35081. pokemonMakers["Wooloo"] = () => {
  35082. return makeCharacter(
  35083. { name: "Wooloo" },
  35084. {
  35085. "Wooloo": {
  35086. height: math.unit("24", "inches"),
  35087. weight: math.unit("13.2", "lbs"),
  35088. name: "Wooloo",
  35089. image: {
  35090. source: "./media/pokemon/Wooloo.svg"
  35091. },
  35092. rename: true
  35093. }
  35094. },
  35095. [
  35096. {
  35097. name: "Micro",
  35098. height: math.unit(2.4, "inches")
  35099. },
  35100. {
  35101. name: "Normal",
  35102. height: math.unit(24, "inches"),
  35103. default: true
  35104. },
  35105. {
  35106. name: "Macro",
  35107. height: math.unit(2400.0, "inches")
  35108. },
  35109. {
  35110. name: "Megamacro",
  35111. height: math.unit(120000.0, "inches")
  35112. },
  35113. {
  35114. name: "Gigamacro",
  35115. height: math.unit(240000000.0, "inches")
  35116. }
  35117. ]
  35118. )
  35119. };
  35120. pokemonMakers["Wooper"] = () => {
  35121. return makeCharacter(
  35122. { name: "Wooper" },
  35123. {
  35124. "Wooper": {
  35125. height: math.unit("16", "inches"),
  35126. weight: math.unit("18.7", "lbs"),
  35127. name: "Wooper",
  35128. image: {
  35129. source: "./media/pokemon/Wooper.svg"
  35130. },
  35131. rename: true
  35132. }
  35133. },
  35134. [
  35135. {
  35136. name: "Micro",
  35137. height: math.unit(1.6, "inches")
  35138. },
  35139. {
  35140. name: "Normal",
  35141. height: math.unit(16, "inches"),
  35142. default: true
  35143. },
  35144. {
  35145. name: "Macro",
  35146. height: math.unit(1600.0, "inches")
  35147. },
  35148. {
  35149. name: "Megamacro",
  35150. height: math.unit(80000.0, "inches")
  35151. },
  35152. {
  35153. name: "Gigamacro",
  35154. height: math.unit(160000000.0, "inches")
  35155. }
  35156. ]
  35157. )
  35158. };
  35159. pokemonMakers["Wormadam"] = () => {
  35160. return makeCharacter(
  35161. { name: "Wormadam" },
  35162. {
  35163. "Plant Cloak": {
  35164. height: math.unit("20", "inches"),
  35165. weight: math.unit("14.3", "lbs"),
  35166. name: "Plant Cloak",
  35167. image: {
  35168. source: "./media/pokemon/Wormadam - Plant Cloak.svg"
  35169. },
  35170. rename: true
  35171. },
  35172. "Sandy Cloak": {
  35173. height: math.unit("20", "inches"),
  35174. weight: math.unit("14.3", "lbs"),
  35175. name: "Sandy Cloak",
  35176. image: {
  35177. source: "./media/pokemon/Wormadam - Sandy Cloak.svg"
  35178. },
  35179. rename: true
  35180. },
  35181. "Trash Cloak": {
  35182. height: math.unit("20", "inches"),
  35183. weight: math.unit("14.3", "lbs"),
  35184. name: "Trash Cloak",
  35185. image: {
  35186. source: "./media/pokemon/Wormadam - Trash Cloak.svg"
  35187. },
  35188. rename: true
  35189. }
  35190. },
  35191. [
  35192. {
  35193. name: "Micro",
  35194. height: math.unit(2.0, "inches")
  35195. },
  35196. {
  35197. name: "Normal",
  35198. height: math.unit(20, "inches"),
  35199. default: true
  35200. },
  35201. {
  35202. name: "Macro",
  35203. height: math.unit(2000.0, "inches")
  35204. },
  35205. {
  35206. name: "Megamacro",
  35207. height: math.unit(100000.0, "inches")
  35208. },
  35209. {
  35210. name: "Gigamacro",
  35211. height: math.unit(200000000.0, "inches")
  35212. }
  35213. ]
  35214. )
  35215. };
  35216. pokemonMakers["Wurmple"] = () => {
  35217. return makeCharacter(
  35218. { name: "Wurmple" },
  35219. {
  35220. "Wurmple": {
  35221. height: math.unit("12", "inches"),
  35222. weight: math.unit("7.9", "lbs"),
  35223. name: "Wurmple",
  35224. image: {
  35225. source: "./media/pokemon/Wurmple.svg"
  35226. },
  35227. rename: true
  35228. }
  35229. },
  35230. [
  35231. {
  35232. name: "Micro",
  35233. height: math.unit(1.2, "inches")
  35234. },
  35235. {
  35236. name: "Normal",
  35237. height: math.unit(12, "inches"),
  35238. default: true
  35239. },
  35240. {
  35241. name: "Macro",
  35242. height: math.unit(1200.0, "inches")
  35243. },
  35244. {
  35245. name: "Megamacro",
  35246. height: math.unit(60000.0, "inches")
  35247. },
  35248. {
  35249. name: "Gigamacro",
  35250. height: math.unit(120000000.0, "inches")
  35251. }
  35252. ]
  35253. )
  35254. };
  35255. pokemonMakers["Wynaut"] = () => {
  35256. return makeCharacter(
  35257. { name: "Wynaut" },
  35258. {
  35259. "Wynaut": {
  35260. height: math.unit("24", "inches"),
  35261. weight: math.unit("30.9", "lbs"),
  35262. name: "Wynaut",
  35263. image: {
  35264. source: "./media/pokemon/Wynaut.svg"
  35265. },
  35266. rename: true
  35267. }
  35268. },
  35269. [
  35270. {
  35271. name: "Micro",
  35272. height: math.unit(2.4, "inches")
  35273. },
  35274. {
  35275. name: "Normal",
  35276. height: math.unit(24, "inches"),
  35277. default: true
  35278. },
  35279. {
  35280. name: "Macro",
  35281. height: math.unit(2400.0, "inches")
  35282. },
  35283. {
  35284. name: "Megamacro",
  35285. height: math.unit(120000.0, "inches")
  35286. },
  35287. {
  35288. name: "Gigamacro",
  35289. height: math.unit(240000000.0, "inches")
  35290. }
  35291. ]
  35292. )
  35293. };
  35294. pokemonMakers["Xatu"] = () => {
  35295. return makeCharacter(
  35296. { name: "Xatu" },
  35297. {
  35298. "Xatu": {
  35299. height: math.unit("59", "inches"),
  35300. weight: math.unit("33.1", "lbs"),
  35301. name: "Xatu",
  35302. image: {
  35303. source: "./media/pokemon/Xatu.svg"
  35304. },
  35305. rename: true
  35306. }
  35307. },
  35308. [
  35309. {
  35310. name: "Micro",
  35311. height: math.unit(5.9, "inches")
  35312. },
  35313. {
  35314. name: "Normal",
  35315. height: math.unit(59, "inches"),
  35316. default: true
  35317. },
  35318. {
  35319. name: "Macro",
  35320. height: math.unit(5900.0, "inches")
  35321. },
  35322. {
  35323. name: "Megamacro",
  35324. height: math.unit(295000.0, "inches")
  35325. },
  35326. {
  35327. name: "Gigamacro",
  35328. height: math.unit(590000000.0, "inches")
  35329. }
  35330. ]
  35331. )
  35332. };
  35333. pokemonMakers["Xerneas"] = () => {
  35334. return makeCharacter(
  35335. { name: "Xerneas" },
  35336. {
  35337. "Xerneas": {
  35338. height: math.unit("118", "inches"),
  35339. weight: math.unit("474.0", "lbs"),
  35340. name: "Xerneas",
  35341. image: {
  35342. source: "./media/pokemon/Xerneas.svg"
  35343. },
  35344. rename: true
  35345. }
  35346. },
  35347. [
  35348. {
  35349. name: "Micro",
  35350. height: math.unit(11.8, "inches")
  35351. },
  35352. {
  35353. name: "Normal",
  35354. height: math.unit(118, "inches"),
  35355. default: true
  35356. },
  35357. {
  35358. name: "Macro",
  35359. height: math.unit(11800.0, "inches")
  35360. },
  35361. {
  35362. name: "Megamacro",
  35363. height: math.unit(590000.0, "inches")
  35364. },
  35365. {
  35366. name: "Gigamacro",
  35367. height: math.unit(1180000000.0, "inches")
  35368. }
  35369. ]
  35370. )
  35371. };
  35372. pokemonMakers["Xurkitree"] = () => {
  35373. return makeCharacter(
  35374. { name: "Xurkitree" },
  35375. {
  35376. "Xurkitree": {
  35377. height: math.unit("150", "inches"),
  35378. weight: math.unit("220.5", "lbs"),
  35379. name: "Xurkitree",
  35380. image: {
  35381. source: "./media/pokemon/Xurkitree.svg"
  35382. },
  35383. rename: true
  35384. }
  35385. },
  35386. [
  35387. {
  35388. name: "Micro",
  35389. height: math.unit(15.0, "inches")
  35390. },
  35391. {
  35392. name: "Normal",
  35393. height: math.unit(150, "inches"),
  35394. default: true
  35395. },
  35396. {
  35397. name: "Macro",
  35398. height: math.unit(15000.0, "inches")
  35399. },
  35400. {
  35401. name: "Megamacro",
  35402. height: math.unit(750000.0, "inches")
  35403. },
  35404. {
  35405. name: "Gigamacro",
  35406. height: math.unit(1500000000.0, "inches")
  35407. }
  35408. ]
  35409. )
  35410. };
  35411. pokemonMakers["Yamask"] = () => {
  35412. return makeCharacter(
  35413. { name: "Yamask" },
  35414. {
  35415. "Galarian Form": {
  35416. height: math.unit("20", "inches"),
  35417. weight: math.unit("3.3", "lbs"),
  35418. name: "Galarian Form",
  35419. image: {
  35420. source: "./media/pokemon/Yamask - Galarian Form.svg"
  35421. },
  35422. rename: true
  35423. },
  35424. "Yamask": {
  35425. height: math.unit("20", "inches"),
  35426. weight: math.unit("3.3", "lbs"),
  35427. name: "Yamask",
  35428. image: {
  35429. source: "./media/pokemon/Yamask.svg"
  35430. },
  35431. rename: true
  35432. }
  35433. },
  35434. [
  35435. {
  35436. name: "Micro",
  35437. height: math.unit(2.0, "inches")
  35438. },
  35439. {
  35440. name: "Normal",
  35441. height: math.unit(20, "inches"),
  35442. default: true
  35443. },
  35444. {
  35445. name: "Macro",
  35446. height: math.unit(2000.0, "inches")
  35447. },
  35448. {
  35449. name: "Megamacro",
  35450. height: math.unit(100000.0, "inches")
  35451. },
  35452. {
  35453. name: "Gigamacro",
  35454. height: math.unit(200000000.0, "inches")
  35455. }
  35456. ]
  35457. )
  35458. };
  35459. pokemonMakers["Yamper"] = () => {
  35460. return makeCharacter(
  35461. { name: "Yamper" },
  35462. {
  35463. "Yamper": {
  35464. height: math.unit("12", "inches"),
  35465. weight: math.unit("29.8", "lbs"),
  35466. name: "Yamper",
  35467. image: {
  35468. source: "./media/pokemon/Yamper.svg"
  35469. },
  35470. rename: true
  35471. }
  35472. },
  35473. [
  35474. {
  35475. name: "Micro",
  35476. height: math.unit(1.2, "inches")
  35477. },
  35478. {
  35479. name: "Normal",
  35480. height: math.unit(12, "inches"),
  35481. default: true
  35482. },
  35483. {
  35484. name: "Macro",
  35485. height: math.unit(1200.0, "inches")
  35486. },
  35487. {
  35488. name: "Megamacro",
  35489. height: math.unit(60000.0, "inches")
  35490. },
  35491. {
  35492. name: "Gigamacro",
  35493. height: math.unit(120000000.0, "inches")
  35494. }
  35495. ]
  35496. )
  35497. };
  35498. pokemonMakers["Yanma"] = () => {
  35499. return makeCharacter(
  35500. { name: "Yanma" },
  35501. {
  35502. "Yanma": {
  35503. height: math.unit("47", "inches"),
  35504. weight: math.unit("83.8", "lbs"),
  35505. name: "Yanma",
  35506. image: {
  35507. source: "./media/pokemon/Yanma.svg"
  35508. },
  35509. rename: true
  35510. }
  35511. },
  35512. [
  35513. {
  35514. name: "Micro",
  35515. height: math.unit(4.7, "inches")
  35516. },
  35517. {
  35518. name: "Normal",
  35519. height: math.unit(47, "inches"),
  35520. default: true
  35521. },
  35522. {
  35523. name: "Macro",
  35524. height: math.unit(4700.0, "inches")
  35525. },
  35526. {
  35527. name: "Megamacro",
  35528. height: math.unit(235000.0, "inches")
  35529. },
  35530. {
  35531. name: "Gigamacro",
  35532. height: math.unit(470000000.0, "inches")
  35533. }
  35534. ]
  35535. )
  35536. };
  35537. pokemonMakers["Yanmega"] = () => {
  35538. return makeCharacter(
  35539. { name: "Yanmega" },
  35540. {
  35541. "Yanmega": {
  35542. height: math.unit("75", "inches"),
  35543. weight: math.unit("113.5", "lbs"),
  35544. name: "Yanmega",
  35545. image: {
  35546. source: "./media/pokemon/Yanmega.svg"
  35547. },
  35548. rename: true
  35549. }
  35550. },
  35551. [
  35552. {
  35553. name: "Micro",
  35554. height: math.unit(7.5, "inches")
  35555. },
  35556. {
  35557. name: "Normal",
  35558. height: math.unit(75, "inches"),
  35559. default: true
  35560. },
  35561. {
  35562. name: "Macro",
  35563. height: math.unit(7500.0, "inches")
  35564. },
  35565. {
  35566. name: "Megamacro",
  35567. height: math.unit(375000.0, "inches")
  35568. },
  35569. {
  35570. name: "Gigamacro",
  35571. height: math.unit(750000000.0, "inches")
  35572. }
  35573. ]
  35574. )
  35575. };
  35576. pokemonMakers["Yungoos"] = () => {
  35577. return makeCharacter(
  35578. { name: "Yungoos" },
  35579. {
  35580. "Yungoos": {
  35581. height: math.unit("16", "inches"),
  35582. weight: math.unit("13.2", "lbs"),
  35583. name: "Yungoos",
  35584. image: {
  35585. source: "./media/pokemon/Yungoos.svg"
  35586. },
  35587. rename: true
  35588. }
  35589. },
  35590. [
  35591. {
  35592. name: "Micro",
  35593. height: math.unit(1.6, "inches")
  35594. },
  35595. {
  35596. name: "Normal",
  35597. height: math.unit(16, "inches"),
  35598. default: true
  35599. },
  35600. {
  35601. name: "Macro",
  35602. height: math.unit(1600.0, "inches")
  35603. },
  35604. {
  35605. name: "Megamacro",
  35606. height: math.unit(80000.0, "inches")
  35607. },
  35608. {
  35609. name: "Gigamacro",
  35610. height: math.unit(160000000.0, "inches")
  35611. }
  35612. ]
  35613. )
  35614. };
  35615. pokemonMakers["Yveltal"] = () => {
  35616. return makeCharacter(
  35617. { name: "Yveltal" },
  35618. {
  35619. "Yveltal": {
  35620. height: math.unit("228", "inches"),
  35621. weight: math.unit("447.5", "lbs"),
  35622. name: "Yveltal",
  35623. image: {
  35624. source: "./media/pokemon/Yveltal.svg"
  35625. },
  35626. rename: true
  35627. }
  35628. },
  35629. [
  35630. {
  35631. name: "Micro",
  35632. height: math.unit(22.8, "inches")
  35633. },
  35634. {
  35635. name: "Normal",
  35636. height: math.unit(228, "inches"),
  35637. default: true
  35638. },
  35639. {
  35640. name: "Macro",
  35641. height: math.unit(22800.0, "inches")
  35642. },
  35643. {
  35644. name: "Megamacro",
  35645. height: math.unit(1140000.0, "inches")
  35646. },
  35647. {
  35648. name: "Gigamacro",
  35649. height: math.unit(2280000000.0, "inches")
  35650. }
  35651. ]
  35652. )
  35653. };
  35654. pokemonMakers["Zacian"] = () => {
  35655. return makeCharacter(
  35656. { name: "Zacian" },
  35657. {
  35658. "Crowned Sword": {
  35659. height: math.unit("110", "inches"),
  35660. weight: math.unit("782.6", "lbs"),
  35661. name: "Crowned Sword",
  35662. image: {
  35663. source: "./media/pokemon/Zacian - Crowned Sword.svg"
  35664. },
  35665. rename: true
  35666. },
  35667. "Hero of Many Battles": {
  35668. height: math.unit("110", "inches"),
  35669. weight: math.unit("242.5", "lbs"),
  35670. name: "Hero of Many Battles",
  35671. image: {
  35672. source: "./media/pokemon/Zacian - Hero of Many Battles.svg"
  35673. },
  35674. rename: true
  35675. }
  35676. },
  35677. [
  35678. {
  35679. name: "Micro",
  35680. height: math.unit(11.0, "inches")
  35681. },
  35682. {
  35683. name: "Normal",
  35684. height: math.unit(110, "inches"),
  35685. default: true
  35686. },
  35687. {
  35688. name: "Macro",
  35689. height: math.unit(11000.0, "inches")
  35690. },
  35691. {
  35692. name: "Megamacro",
  35693. height: math.unit(550000.0, "inches")
  35694. },
  35695. {
  35696. name: "Gigamacro",
  35697. height: math.unit(1100000000.0, "inches")
  35698. }
  35699. ]
  35700. )
  35701. };
  35702. pokemonMakers["Zamazenta"] = () => {
  35703. return makeCharacter(
  35704. { name: "Zamazenta" },
  35705. {
  35706. "Crowned Shield": {
  35707. height: math.unit("114", "inches"),
  35708. weight: math.unit("1730.6", "lbs"),
  35709. name: "Crowned Shield",
  35710. image: {
  35711. source: "./media/pokemon/Zamazenta - Crowned Shield.svg"
  35712. },
  35713. rename: true
  35714. },
  35715. "Hero of Many Battles": {
  35716. height: math.unit("114", "inches"),
  35717. weight: math.unit("463.0", "lbs"),
  35718. name: "Hero of Many Battles",
  35719. image: {
  35720. source: "./media/pokemon/Zamazenta - Hero of Many Battles.svg"
  35721. },
  35722. rename: true
  35723. }
  35724. },
  35725. [
  35726. {
  35727. name: "Micro",
  35728. height: math.unit(11.4, "inches")
  35729. },
  35730. {
  35731. name: "Normal",
  35732. height: math.unit(114, "inches"),
  35733. default: true
  35734. },
  35735. {
  35736. name: "Macro",
  35737. height: math.unit(11400.0, "inches")
  35738. },
  35739. {
  35740. name: "Megamacro",
  35741. height: math.unit(570000.0, "inches")
  35742. },
  35743. {
  35744. name: "Gigamacro",
  35745. height: math.unit(1140000000.0, "inches")
  35746. }
  35747. ]
  35748. )
  35749. };
  35750. pokemonMakers["Zangoose"] = () => {
  35751. return makeCharacter(
  35752. { name: "Zangoose" },
  35753. {
  35754. "Zangoose": {
  35755. height: math.unit("51", "inches"),
  35756. weight: math.unit("88.8", "lbs"),
  35757. name: "Zangoose",
  35758. image: {
  35759. source: "./media/pokemon/Zangoose.svg"
  35760. },
  35761. rename: true
  35762. }
  35763. },
  35764. [
  35765. {
  35766. name: "Micro",
  35767. height: math.unit(5.1, "inches")
  35768. },
  35769. {
  35770. name: "Normal",
  35771. height: math.unit(51, "inches"),
  35772. default: true
  35773. },
  35774. {
  35775. name: "Macro",
  35776. height: math.unit(5100.0, "inches")
  35777. },
  35778. {
  35779. name: "Megamacro",
  35780. height: math.unit(255000.0, "inches")
  35781. },
  35782. {
  35783. name: "Gigamacro",
  35784. height: math.unit(510000000.0, "inches")
  35785. }
  35786. ]
  35787. )
  35788. };
  35789. pokemonMakers["Zapdos"] = () => {
  35790. return makeCharacter(
  35791. { name: "Zapdos" },
  35792. {
  35793. "Zapdos": {
  35794. height: math.unit("63", "inches"),
  35795. weight: math.unit("116.0", "lbs"),
  35796. name: "Zapdos",
  35797. image: {
  35798. source: "./media/pokemon/Zapdos.svg"
  35799. },
  35800. rename: true
  35801. }
  35802. },
  35803. [
  35804. {
  35805. name: "Micro",
  35806. height: math.unit(6.3, "inches")
  35807. },
  35808. {
  35809. name: "Normal",
  35810. height: math.unit(63, "inches"),
  35811. default: true
  35812. },
  35813. {
  35814. name: "Macro",
  35815. height: math.unit(6300.0, "inches")
  35816. },
  35817. {
  35818. name: "Megamacro",
  35819. height: math.unit(315000.0, "inches")
  35820. },
  35821. {
  35822. name: "Gigamacro",
  35823. height: math.unit(630000000.0, "inches")
  35824. }
  35825. ]
  35826. )
  35827. };
  35828. pokemonMakers["Zebstrika"] = () => {
  35829. return makeCharacter(
  35830. { name: "Zebstrika" },
  35831. {
  35832. "Zebstrika": {
  35833. height: math.unit("63", "inches"),
  35834. weight: math.unit("175.3", "lbs"),
  35835. name: "Zebstrika",
  35836. image: {
  35837. source: "./media/pokemon/Zebstrika.svg"
  35838. },
  35839. rename: true
  35840. }
  35841. },
  35842. [
  35843. {
  35844. name: "Micro",
  35845. height: math.unit(6.3, "inches")
  35846. },
  35847. {
  35848. name: "Normal",
  35849. height: math.unit(63, "inches"),
  35850. default: true
  35851. },
  35852. {
  35853. name: "Macro",
  35854. height: math.unit(6300.0, "inches")
  35855. },
  35856. {
  35857. name: "Megamacro",
  35858. height: math.unit(315000.0, "inches")
  35859. },
  35860. {
  35861. name: "Gigamacro",
  35862. height: math.unit(630000000.0, "inches")
  35863. }
  35864. ]
  35865. )
  35866. };
  35867. pokemonMakers["Zekrom"] = () => {
  35868. return makeCharacter(
  35869. { name: "Zekrom" },
  35870. {
  35871. "Zekrom": {
  35872. height: math.unit("114", "inches"),
  35873. weight: math.unit("760.6", "lbs"),
  35874. name: "Zekrom",
  35875. image: {
  35876. source: "./media/pokemon/Zekrom.svg"
  35877. },
  35878. rename: true
  35879. }
  35880. },
  35881. [
  35882. {
  35883. name: "Micro",
  35884. height: math.unit(11.4, "inches")
  35885. },
  35886. {
  35887. name: "Normal",
  35888. height: math.unit(114, "inches"),
  35889. default: true
  35890. },
  35891. {
  35892. name: "Macro",
  35893. height: math.unit(11400.0, "inches")
  35894. },
  35895. {
  35896. name: "Megamacro",
  35897. height: math.unit(570000.0, "inches")
  35898. },
  35899. {
  35900. name: "Gigamacro",
  35901. height: math.unit(1140000000.0, "inches")
  35902. }
  35903. ]
  35904. )
  35905. };
  35906. pokemonMakers["Zeraora"] = () => {
  35907. return makeCharacter(
  35908. { name: "Zeraora" },
  35909. {
  35910. "Zeraora": {
  35911. height: math.unit("59", "inches"),
  35912. weight: math.unit("98.1", "lbs"),
  35913. name: "Zeraora",
  35914. image: {
  35915. source: "./media/pokemon/Zeraora.svg"
  35916. },
  35917. rename: true
  35918. }
  35919. },
  35920. [
  35921. {
  35922. name: "Micro",
  35923. height: math.unit(5.9, "inches")
  35924. },
  35925. {
  35926. name: "Normal",
  35927. height: math.unit(59, "inches"),
  35928. default: true
  35929. },
  35930. {
  35931. name: "Macro",
  35932. height: math.unit(5900.0, "inches")
  35933. },
  35934. {
  35935. name: "Megamacro",
  35936. height: math.unit(295000.0, "inches")
  35937. },
  35938. {
  35939. name: "Gigamacro",
  35940. height: math.unit(590000000.0, "inches")
  35941. }
  35942. ]
  35943. )
  35944. };
  35945. pokemonMakers["Zigzagoon"] = () => {
  35946. return makeCharacter(
  35947. { name: "Zigzagoon" },
  35948. {
  35949. "Galarian Form": {
  35950. height: math.unit("16", "inches"),
  35951. weight: math.unit("38.6", "lbs"),
  35952. name: "Galarian Form",
  35953. image: {
  35954. source: "./media/pokemon/Zigzagoon - Galarian Form.svg"
  35955. },
  35956. rename: true
  35957. },
  35958. "Zigzagoon": {
  35959. height: math.unit("16", "inches"),
  35960. weight: math.unit("38.6", "lbs"),
  35961. name: "Zigzagoon",
  35962. image: {
  35963. source: "./media/pokemon/Zigzagoon.svg"
  35964. },
  35965. rename: true
  35966. }
  35967. },
  35968. [
  35969. {
  35970. name: "Micro",
  35971. height: math.unit(1.6, "inches")
  35972. },
  35973. {
  35974. name: "Normal",
  35975. height: math.unit(16, "inches"),
  35976. default: true
  35977. },
  35978. {
  35979. name: "Macro",
  35980. height: math.unit(1600.0, "inches")
  35981. },
  35982. {
  35983. name: "Megamacro",
  35984. height: math.unit(80000.0, "inches")
  35985. },
  35986. {
  35987. name: "Gigamacro",
  35988. height: math.unit(160000000.0, "inches")
  35989. }
  35990. ]
  35991. )
  35992. };
  35993. pokemonMakers["Zoroark"] = () => {
  35994. return makeCharacter(
  35995. { name: "Zoroark" },
  35996. {
  35997. "Zoroark": {
  35998. height: math.unit("63", "inches"),
  35999. weight: math.unit("178.8", "lbs"),
  36000. name: "Zoroark",
  36001. image: {
  36002. source: "./media/pokemon/Zoroark.svg"
  36003. },
  36004. rename: true
  36005. }
  36006. },
  36007. [
  36008. {
  36009. name: "Micro",
  36010. height: math.unit(6.3, "inches")
  36011. },
  36012. {
  36013. name: "Normal",
  36014. height: math.unit(63, "inches"),
  36015. default: true
  36016. },
  36017. {
  36018. name: "Macro",
  36019. height: math.unit(6300.0, "inches")
  36020. },
  36021. {
  36022. name: "Megamacro",
  36023. height: math.unit(315000.0, "inches")
  36024. },
  36025. {
  36026. name: "Gigamacro",
  36027. height: math.unit(630000000.0, "inches")
  36028. }
  36029. ]
  36030. )
  36031. };
  36032. pokemonMakers["Zorua"] = () => {
  36033. return makeCharacter(
  36034. { name: "Zorua" },
  36035. {
  36036. "Zorua": {
  36037. height: math.unit("28", "inches"),
  36038. weight: math.unit("27.6", "lbs"),
  36039. name: "Zorua",
  36040. image: {
  36041. source: "./media/pokemon/Zorua.svg"
  36042. },
  36043. rename: true
  36044. }
  36045. },
  36046. [
  36047. {
  36048. name: "Micro",
  36049. height: math.unit(2.8, "inches")
  36050. },
  36051. {
  36052. name: "Normal",
  36053. height: math.unit(28, "inches"),
  36054. default: true
  36055. },
  36056. {
  36057. name: "Macro",
  36058. height: math.unit(2800.0, "inches")
  36059. },
  36060. {
  36061. name: "Megamacro",
  36062. height: math.unit(140000.0, "inches")
  36063. },
  36064. {
  36065. name: "Gigamacro",
  36066. height: math.unit(280000000.0, "inches")
  36067. }
  36068. ]
  36069. )
  36070. };
  36071. pokemonMakers["Zubat"] = () => {
  36072. return makeCharacter(
  36073. { name: "Zubat" },
  36074. {
  36075. "Zubat": {
  36076. height: math.unit("31", "inches"),
  36077. weight: math.unit("16.5", "lbs"),
  36078. name: "Zubat",
  36079. image: {
  36080. source: "./media/pokemon/Zubat.svg"
  36081. },
  36082. rename: true
  36083. }
  36084. },
  36085. [
  36086. {
  36087. name: "Micro",
  36088. height: math.unit(3.1, "inches")
  36089. },
  36090. {
  36091. name: "Normal",
  36092. height: math.unit(31, "inches"),
  36093. default: true
  36094. },
  36095. {
  36096. name: "Macro",
  36097. height: math.unit(3100.0, "inches")
  36098. },
  36099. {
  36100. name: "Megamacro",
  36101. height: math.unit(155000.0, "inches")
  36102. },
  36103. {
  36104. name: "Gigamacro",
  36105. height: math.unit(310000000.0, "inches")
  36106. }
  36107. ]
  36108. )
  36109. };
  36110. pokemonMakers["Zweilous"] = () => {
  36111. return makeCharacter(
  36112. { name: "Zweilous" },
  36113. {
  36114. "Zweilous": {
  36115. height: math.unit("55", "inches"),
  36116. weight: math.unit("110.2", "lbs"),
  36117. name: "Zweilous",
  36118. image: {
  36119. source: "./media/pokemon/Zweilous.svg"
  36120. },
  36121. rename: true
  36122. }
  36123. },
  36124. [
  36125. {
  36126. name: "Micro",
  36127. height: math.unit(5.5, "inches")
  36128. },
  36129. {
  36130. name: "Normal",
  36131. height: math.unit(55, "inches"),
  36132. default: true
  36133. },
  36134. {
  36135. name: "Macro",
  36136. height: math.unit(5500.0, "inches")
  36137. },
  36138. {
  36139. name: "Megamacro",
  36140. height: math.unit(275000.0, "inches")
  36141. },
  36142. {
  36143. name: "Gigamacro",
  36144. height: math.unit(550000000.0, "inches")
  36145. }
  36146. ]
  36147. )
  36148. };
  36149. pokemonMakers["Zygarde"] = () => {
  36150. return makeCharacter(
  36151. { name: "Zygarde" },
  36152. {
  36153. "10% Forme": {
  36154. height: math.unit("47", "inches"),
  36155. weight: math.unit("73.9", "lbs"),
  36156. name: "10% Forme",
  36157. image: {
  36158. source: "./media/pokemon/Zygarde - 10%25 Forme.svg"
  36159. },
  36160. rename: true
  36161. },
  36162. "50% Forme": {
  36163. height: math.unit("197", "inches"),
  36164. weight: math.unit("672.4", "lbs"),
  36165. name: "50% Forme",
  36166. image: {
  36167. source: "./media/pokemon/Zygarde - 50%25 Forme.svg"
  36168. },
  36169. rename: true
  36170. },
  36171. "Complete Forme": {
  36172. height: math.unit("177", "inches"),
  36173. weight: math.unit("1344.8", "lbs"),
  36174. name: "Complete Forme",
  36175. image: {
  36176. source: "./media/pokemon/Zygarde - Complete Forme.svg"
  36177. },
  36178. rename: true
  36179. }
  36180. },
  36181. [
  36182. {
  36183. name: "Micro",
  36184. height: math.unit(4.7, "inches")
  36185. },
  36186. {
  36187. name: "Normal",
  36188. height: math.unit(47, "inches"),
  36189. default: true
  36190. },
  36191. {
  36192. name: "Macro",
  36193. height: math.unit(4700.0, "inches")
  36194. },
  36195. {
  36196. name: "Megamacro",
  36197. height: math.unit(235000.0, "inches")
  36198. },
  36199. {
  36200. name: "Gigamacro",
  36201. height: math.unit(470000000.0, "inches")
  36202. }
  36203. ]
  36204. )
  36205. };
  36206. function makePokemon() {
  36207. const results = [];
  36208. Object.entries(pokemonMakers).forEach(([key, value]) => {
  36209. results.push(
  36210. value()
  36211. );
  36212. });
  36213. return results.sort((a, b) => {
  36214. return a.name.localeCompare(b.name);
  36215. });
  36216. }