pokeedex 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (591) hide show
  1. checksums.yaml +7 -0
  2. data/.github/workflows/main.yml +30 -0
  3. data/.gitignore +13 -0
  4. data/.standard.yml +9 -0
  5. data/CHANGELOG.md +5 -0
  6. data/CODE_OF_CONDUCT.md +132 -0
  7. data/Gemfile +14 -0
  8. data/Gemfile.lock +125 -0
  9. data/LICENSE.txt +21 -0
  10. data/README.md +154 -0
  11. data/Rakefile +20 -0
  12. data/bin/pokeedex +85 -0
  13. data/lib/pokeedex/configuration.rb +47 -0
  14. data/lib/pokeedex/database.rb +42 -0
  15. data/lib/pokeedex/db/migrations/001_create_pokemons.rb +26 -0
  16. data/lib/pokeedex/exceptions.rb +15 -0
  17. data/lib/pokeedex/pokemon/base.rb +16 -0
  18. data/lib/pokeedex/pokemon/decorators/base.rb +112 -0
  19. data/lib/pokeedex/pokemon/model/base.rb +43 -0
  20. data/lib/pokeedex/pokemon/scrapper/base.rb +34 -0
  21. data/lib/pokeedex/pokemon/scrapper/fetchers/base.rb +123 -0
  22. data/lib/pokeedex/pokemon/scrapper/parsers/base.rb +205 -0
  23. data/lib/pokeedex/pokemon/scrapper/pokedex.rb +50 -0
  24. data/lib/pokeedex/pokemon/searcher/base.rb +59 -0
  25. data/lib/pokeedex/version.rb +5 -0
  26. data/lib/pokeedex.rb +55 -0
  27. data/node_modules/.bin/playwright +1 -0
  28. data/node_modules/.bin/playwright-core +1 -0
  29. data/node_modules/.yarn-integrity +22 -0
  30. data/node_modules/@playwright/test/LICENSE +202 -0
  31. data/node_modules/@playwright/test/NOTICE +5 -0
  32. data/node_modules/@playwright/test/README.md +169 -0
  33. data/node_modules/@playwright/test/cli.js +19 -0
  34. data/node_modules/@playwright/test/index.d.ts +18 -0
  35. data/node_modules/@playwright/test/index.js +17 -0
  36. data/node_modules/@playwright/test/index.mjs +18 -0
  37. data/node_modules/@playwright/test/node_modules/.bin/playwright +1 -0
  38. data/node_modules/@playwright/test/package.json +35 -0
  39. data/node_modules/@playwright/test/reporter.d.ts +17 -0
  40. data/node_modules/@playwright/test/reporter.js +17 -0
  41. data/node_modules/@playwright/test/reporter.mjs +17 -0
  42. data/node_modules/@types/node/LICENSE +21 -0
  43. data/node_modules/@types/node/README.md +15 -0
  44. data/node_modules/@types/node/assert/strict.d.ts +8 -0
  45. data/node_modules/@types/node/assert.d.ts +1040 -0
  46. data/node_modules/@types/node/async_hooks.d.ts +541 -0
  47. data/node_modules/@types/node/buffer.d.ts +2300 -0
  48. data/node_modules/@types/node/child_process.d.ts +1544 -0
  49. data/node_modules/@types/node/cluster.d.ts +578 -0
  50. data/node_modules/@types/node/console.d.ts +452 -0
  51. data/node_modules/@types/node/constants.d.ts +19 -0
  52. data/node_modules/@types/node/crypto.d.ts +4451 -0
  53. data/node_modules/@types/node/dgram.d.ts +596 -0
  54. data/node_modules/@types/node/diagnostics_channel.d.ts +554 -0
  55. data/node_modules/@types/node/dns/promises.d.ts +476 -0
  56. data/node_modules/@types/node/dns.d.ts +865 -0
  57. data/node_modules/@types/node/dom-events.d.ts +124 -0
  58. data/node_modules/@types/node/domain.d.ts +170 -0
  59. data/node_modules/@types/node/events.d.ts +931 -0
  60. data/node_modules/@types/node/fs/promises.d.ts +1264 -0
  61. data/node_modules/@types/node/fs.d.ts +4390 -0
  62. data/node_modules/@types/node/globals.d.ts +611 -0
  63. data/node_modules/@types/node/globals.global.d.ts +1 -0
  64. data/node_modules/@types/node/http.d.ts +1921 -0
  65. data/node_modules/@types/node/http2.d.ts +2555 -0
  66. data/node_modules/@types/node/https.d.ts +544 -0
  67. data/node_modules/@types/node/index.d.ts +90 -0
  68. data/node_modules/@types/node/inspector.d.ts +3966 -0
  69. data/node_modules/@types/node/module.d.ts +301 -0
  70. data/node_modules/@types/node/net.d.ts +995 -0
  71. data/node_modules/@types/node/os.d.ts +495 -0
  72. data/node_modules/@types/node/package.json +217 -0
  73. data/node_modules/@types/node/path.d.ts +200 -0
  74. data/node_modules/@types/node/perf_hooks.d.ts +941 -0
  75. data/node_modules/@types/node/process.d.ts +1912 -0
  76. data/node_modules/@types/node/punycode.d.ts +117 -0
  77. data/node_modules/@types/node/querystring.d.ts +153 -0
  78. data/node_modules/@types/node/readline/promises.d.ts +150 -0
  79. data/node_modules/@types/node/readline.d.ts +540 -0
  80. data/node_modules/@types/node/repl.d.ts +430 -0
  81. data/node_modules/@types/node/sea.d.ts +153 -0
  82. data/node_modules/@types/node/sqlite.d.ts +213 -0
  83. data/node_modules/@types/node/stream/consumers.d.ts +12 -0
  84. data/node_modules/@types/node/stream/promises.d.ts +83 -0
  85. data/node_modules/@types/node/stream/web.d.ts +606 -0
  86. data/node_modules/@types/node/stream.d.ts +1726 -0
  87. data/node_modules/@types/node/string_decoder.d.ts +67 -0
  88. data/node_modules/@types/node/test.d.ts +2098 -0
  89. data/node_modules/@types/node/timers/promises.d.ts +97 -0
  90. data/node_modules/@types/node/timers.d.ts +240 -0
  91. data/node_modules/@types/node/tls.d.ts +1220 -0
  92. data/node_modules/@types/node/trace_events.d.ts +197 -0
  93. data/node_modules/@types/node/tty.d.ts +208 -0
  94. data/node_modules/@types/node/url.d.ts +969 -0
  95. data/node_modules/@types/node/util.d.ts +2301 -0
  96. data/node_modules/@types/node/v8.d.ts +808 -0
  97. data/node_modules/@types/node/vm.d.ts +922 -0
  98. data/node_modules/@types/node/wasi.d.ts +181 -0
  99. data/node_modules/@types/node/worker_threads.d.ts +712 -0
  100. data/node_modules/@types/node/zlib.d.ts +539 -0
  101. data/node_modules/fsevents/LICENSE +22 -0
  102. data/node_modules/fsevents/README.md +83 -0
  103. data/node_modules/fsevents/fsevents.d.ts +46 -0
  104. data/node_modules/fsevents/fsevents.js +82 -0
  105. data/node_modules/fsevents/fsevents.node +0 -0
  106. data/node_modules/fsevents/package.json +62 -0
  107. data/node_modules/playwright/.eslintrc.js +6 -0
  108. data/node_modules/playwright/LICENSE +202 -0
  109. data/node_modules/playwright/NOTICE +5 -0
  110. data/node_modules/playwright/README.md +169 -0
  111. data/node_modules/playwright/ThirdPartyNotices.txt +4356 -0
  112. data/node_modules/playwright/cli.js +19 -0
  113. data/node_modules/playwright/index.d.ts +17 -0
  114. data/node_modules/playwright/index.js +17 -0
  115. data/node_modules/playwright/index.mjs +18 -0
  116. data/node_modules/playwright/jsx-runtime.js +41 -0
  117. data/node_modules/playwright/jsx-runtime.mjs +21 -0
  118. data/node_modules/playwright/lib/common/config.js +256 -0
  119. data/node_modules/playwright/lib/common/configLoader.js +321 -0
  120. data/node_modules/playwright/lib/common/esmLoaderHost.js +93 -0
  121. data/node_modules/playwright/lib/common/expectBundle.js +27 -0
  122. data/node_modules/playwright/lib/common/expectBundleImpl.js +389 -0
  123. data/node_modules/playwright/lib/common/fixtures.js +323 -0
  124. data/node_modules/playwright/lib/common/globals.js +48 -0
  125. data/node_modules/playwright/lib/common/ipc.js +48 -0
  126. data/node_modules/playwright/lib/common/poolBuilder.js +79 -0
  127. data/node_modules/playwright/lib/common/process.js +140 -0
  128. data/node_modules/playwright/lib/common/suiteUtils.js +133 -0
  129. data/node_modules/playwright/lib/common/test.js +311 -0
  130. data/node_modules/playwright/lib/common/testLoader.js +102 -0
  131. data/node_modules/playwright/lib/common/testType.js +284 -0
  132. data/node_modules/playwright/lib/fsWatcher.js +69 -0
  133. data/node_modules/playwright/lib/index.js +888 -0
  134. data/node_modules/playwright/lib/internalsForTest.js +28 -0
  135. data/node_modules/playwright/lib/isomorphic/events.js +72 -0
  136. data/node_modules/playwright/lib/isomorphic/folders.js +25 -0
  137. data/node_modules/playwright/lib/isomorphic/stringInternPool.js +58 -0
  138. data/node_modules/playwright/lib/isomorphic/teleReceiver.js +504 -0
  139. data/node_modules/playwright/lib/isomorphic/teleSuiteUpdater.js +149 -0
  140. data/node_modules/playwright/lib/isomorphic/testServerConnection.js +210 -0
  141. data/node_modules/playwright/lib/isomorphic/testServerInterface.js +5 -0
  142. data/node_modules/playwright/lib/isomorphic/testTree.js +272 -0
  143. data/node_modules/playwright/lib/loader/loaderMain.js +58 -0
  144. data/node_modules/playwright/lib/matchers/expect.js +297 -0
  145. data/node_modules/playwright/lib/matchers/matcherHint.js +50 -0
  146. data/node_modules/playwright/lib/matchers/matchers.js +449 -0
  147. data/node_modules/playwright/lib/matchers/toBeTruthy.js +55 -0
  148. data/node_modules/playwright/lib/matchers/toEqual.js +57 -0
  149. data/node_modules/playwright/lib/matchers/toMatchSnapshot.js +383 -0
  150. data/node_modules/playwright/lib/matchers/toMatchText.js +76 -0
  151. data/node_modules/playwright/lib/plugins/gitCommitInfoPlugin.js +78 -0
  152. data/node_modules/playwright/lib/plugins/index.js +19 -0
  153. data/node_modules/playwright/lib/plugins/webServerPlugin.js +187 -0
  154. data/node_modules/playwright/lib/program.js +346 -0
  155. data/node_modules/playwright/lib/reporters/base.js +553 -0
  156. data/node_modules/playwright/lib/reporters/blob.js +133 -0
  157. data/node_modules/playwright/lib/reporters/dot.js +82 -0
  158. data/node_modules/playwright/lib/reporters/empty.js +42 -0
  159. data/node_modules/playwright/lib/reporters/github.js +115 -0
  160. data/node_modules/playwright/lib/reporters/html.js +623 -0
  161. data/node_modules/playwright/lib/reporters/internalReporter.js +123 -0
  162. data/node_modules/playwright/lib/reporters/json.js +243 -0
  163. data/node_modules/playwright/lib/reporters/junit.js +233 -0
  164. data/node_modules/playwright/lib/reporters/line.js +108 -0
  165. data/node_modules/playwright/lib/reporters/list.js +222 -0
  166. data/node_modules/playwright/lib/reporters/markdown.js +76 -0
  167. data/node_modules/playwright/lib/reporters/merge.js +477 -0
  168. data/node_modules/playwright/lib/reporters/multiplexer.js +90 -0
  169. data/node_modules/playwright/lib/reporters/reporterV2.js +118 -0
  170. data/node_modules/playwright/lib/reporters/teleEmitter.js +268 -0
  171. data/node_modules/playwright/lib/reporters/versions/blobV1.js +5 -0
  172. data/node_modules/playwright/lib/runner/dispatcher.js +532 -0
  173. data/node_modules/playwright/lib/runner/failureTracker.js +60 -0
  174. data/node_modules/playwright/lib/runner/loadUtils.js +308 -0
  175. data/node_modules/playwright/lib/runner/loaderHost.js +85 -0
  176. data/node_modules/playwright/lib/runner/processHost.js +175 -0
  177. data/node_modules/playwright/lib/runner/projectUtils.js +203 -0
  178. data/node_modules/playwright/lib/runner/reporters.js +151 -0
  179. data/node_modules/playwright/lib/runner/runner.js +179 -0
  180. data/node_modules/playwright/lib/runner/sigIntWatcher.js +100 -0
  181. data/node_modules/playwright/lib/runner/taskRunner.js +147 -0
  182. data/node_modules/playwright/lib/runner/tasks.js +407 -0
  183. data/node_modules/playwright/lib/runner/testGroups.js +136 -0
  184. data/node_modules/playwright/lib/runner/testServer.js +605 -0
  185. data/node_modules/playwright/lib/runner/uiModeReporter.js +31 -0
  186. data/node_modules/playwright/lib/runner/vcs.js +55 -0
  187. data/node_modules/playwright/lib/runner/watchMode.js +398 -0
  188. data/node_modules/playwright/lib/runner/workerHost.js +85 -0
  189. data/node_modules/playwright/lib/third_party/tsconfig-loader.js +134 -0
  190. data/node_modules/playwright/lib/transform/babelBundle.js +28 -0
  191. data/node_modules/playwright/lib/transform/babelBundleImpl.js +2032 -0
  192. data/node_modules/playwright/lib/transform/compilationCache.js +254 -0
  193. data/node_modules/playwright/lib/transform/esmLoader.js +117 -0
  194. data/node_modules/playwright/lib/transform/esmUtils.js +32 -0
  195. data/node_modules/playwright/lib/transform/portTransport.js +81 -0
  196. data/node_modules/playwright/lib/transform/transform.js +267 -0
  197. data/node_modules/playwright/lib/util.js +356 -0
  198. data/node_modules/playwright/lib/utilsBundle.js +28 -0
  199. data/node_modules/playwright/lib/utilsBundleImpl.js +102 -0
  200. data/node_modules/playwright/lib/worker/fixtureRunner.js +279 -0
  201. data/node_modules/playwright/lib/worker/testInfo.js +397 -0
  202. data/node_modules/playwright/lib/worker/testTracing.js +314 -0
  203. data/node_modules/playwright/lib/worker/timeoutManager.js +153 -0
  204. data/node_modules/playwright/lib/worker/workerMain.js +637 -0
  205. data/node_modules/playwright/node_modules/.bin/playwright-core +1 -0
  206. data/node_modules/playwright/package.json +66 -0
  207. data/node_modules/playwright/test.d.ts +18 -0
  208. data/node_modules/playwright/test.js +24 -0
  209. data/node_modules/playwright/test.mjs +33 -0
  210. data/node_modules/playwright/types/test.d.ts +8444 -0
  211. data/node_modules/playwright/types/testReporter.d.ts +749 -0
  212. data/node_modules/playwright-core/LICENSE +202 -0
  213. data/node_modules/playwright-core/NOTICE +5 -0
  214. data/node_modules/playwright-core/README.md +3 -0
  215. data/node_modules/playwright-core/ThirdPartyNotices.txt +1548 -0
  216. data/node_modules/playwright-core/bin/PrintDeps.exe +0 -0
  217. data/node_modules/playwright-core/bin/README.md +2 -0
  218. data/node_modules/playwright-core/bin/install_media_pack.ps1 +5 -0
  219. data/node_modules/playwright-core/bin/reinstall_chrome_beta_linux.sh +40 -0
  220. data/node_modules/playwright-core/bin/reinstall_chrome_beta_mac.sh +13 -0
  221. data/node_modules/playwright-core/bin/reinstall_chrome_beta_win.ps1 +24 -0
  222. data/node_modules/playwright-core/bin/reinstall_chrome_stable_linux.sh +40 -0
  223. data/node_modules/playwright-core/bin/reinstall_chrome_stable_mac.sh +12 -0
  224. data/node_modules/playwright-core/bin/reinstall_chrome_stable_win.ps1 +24 -0
  225. data/node_modules/playwright-core/bin/reinstall_msedge_beta_linux.sh +40 -0
  226. data/node_modules/playwright-core/bin/reinstall_msedge_beta_mac.sh +11 -0
  227. data/node_modules/playwright-core/bin/reinstall_msedge_beta_win.ps1 +23 -0
  228. data/node_modules/playwright-core/bin/reinstall_msedge_dev_linux.sh +40 -0
  229. data/node_modules/playwright-core/bin/reinstall_msedge_dev_mac.sh +11 -0
  230. data/node_modules/playwright-core/bin/reinstall_msedge_dev_win.ps1 +23 -0
  231. data/node_modules/playwright-core/bin/reinstall_msedge_stable_linux.sh +40 -0
  232. data/node_modules/playwright-core/bin/reinstall_msedge_stable_mac.sh +11 -0
  233. data/node_modules/playwright-core/bin/reinstall_msedge_stable_win.ps1 +24 -0
  234. data/node_modules/playwright-core/browsers.json +53 -0
  235. data/node_modules/playwright-core/cli.js +18 -0
  236. data/node_modules/playwright-core/index.d.ts +17 -0
  237. data/node_modules/playwright-core/index.js +33 -0
  238. data/node_modules/playwright-core/index.mjs +28 -0
  239. data/node_modules/playwright-core/lib/androidServerImpl.js +69 -0
  240. data/node_modules/playwright-core/lib/browserServerImpl.js +92 -0
  241. data/node_modules/playwright-core/lib/cli/driver.js +95 -0
  242. data/node_modules/playwright-core/lib/cli/program.js +577 -0
  243. data/node_modules/playwright-core/lib/cli/programWithTestStub.js +67 -0
  244. data/node_modules/playwright-core/lib/client/accessibility.js +50 -0
  245. data/node_modules/playwright-core/lib/client/android.js +473 -0
  246. data/node_modules/playwright-core/lib/client/api.js +279 -0
  247. data/node_modules/playwright-core/lib/client/artifact.js +79 -0
  248. data/node_modules/playwright-core/lib/client/browser.js +145 -0
  249. data/node_modules/playwright-core/lib/client/browserContext.js +541 -0
  250. data/node_modules/playwright-core/lib/client/browserType.js +241 -0
  251. data/node_modules/playwright-core/lib/client/cdpSession.js +53 -0
  252. data/node_modules/playwright-core/lib/client/channelOwner.js +231 -0
  253. data/node_modules/playwright-core/lib/client/clientHelper.js +57 -0
  254. data/node_modules/playwright-core/lib/client/clientInstrumentation.js +50 -0
  255. data/node_modules/playwright-core/lib/client/clock.js +68 -0
  256. data/node_modules/playwright-core/lib/client/connection.js +330 -0
  257. data/node_modules/playwright-core/lib/client/consoleMessage.js +55 -0
  258. data/node_modules/playwright-core/lib/client/coverage.js +41 -0
  259. data/node_modules/playwright-core/lib/client/dialog.js +57 -0
  260. data/node_modules/playwright-core/lib/client/download.js +62 -0
  261. data/node_modules/playwright-core/lib/client/electron.js +135 -0
  262. data/node_modules/playwright-core/lib/client/elementHandle.js +321 -0
  263. data/node_modules/playwright-core/lib/client/errors.js +77 -0
  264. data/node_modules/playwright-core/lib/client/eventEmitter.js +314 -0
  265. data/node_modules/playwright-core/lib/client/events.js +94 -0
  266. data/node_modules/playwright-core/lib/client/fetch.js +396 -0
  267. data/node_modules/playwright-core/lib/client/fileChooser.js +45 -0
  268. data/node_modules/playwright-core/lib/client/frame.js +504 -0
  269. data/node_modules/playwright-core/lib/client/harRouter.js +99 -0
  270. data/node_modules/playwright-core/lib/client/input.js +111 -0
  271. data/node_modules/playwright-core/lib/client/jsHandle.js +129 -0
  272. data/node_modules/playwright-core/lib/client/jsonPipe.js +35 -0
  273. data/node_modules/playwright-core/lib/client/localUtils.js +35 -0
  274. data/node_modules/playwright-core/lib/client/locator.js +441 -0
  275. data/node_modules/playwright-core/lib/client/network.js +604 -0
  276. data/node_modules/playwright-core/lib/client/page.js +725 -0
  277. data/node_modules/playwright-core/lib/client/playwright.js +77 -0
  278. data/node_modules/playwright-core/lib/client/selectors.js +67 -0
  279. data/node_modules/playwright-core/lib/client/stream.js +54 -0
  280. data/node_modules/playwright-core/lib/client/tracing.js +138 -0
  281. data/node_modules/playwright-core/lib/client/types.js +24 -0
  282. data/node_modules/playwright-core/lib/client/video.js +51 -0
  283. data/node_modules/playwright-core/lib/client/waiter.js +158 -0
  284. data/node_modules/playwright-core/lib/client/webError.js +37 -0
  285. data/node_modules/playwright-core/lib/client/worker.js +71 -0
  286. data/node_modules/playwright-core/lib/client/writableStream.js +54 -0
  287. data/node_modules/playwright-core/lib/common/socksProxy.js +569 -0
  288. data/node_modules/playwright-core/lib/common/timeoutSettings.js +73 -0
  289. data/node_modules/playwright-core/lib/common/types.js +5 -0
  290. data/node_modules/playwright-core/lib/generated/clockSource.js +7 -0
  291. data/node_modules/playwright-core/lib/generated/consoleApiSource.js +7 -0
  292. data/node_modules/playwright-core/lib/generated/injectedScriptSource.js +7 -0
  293. data/node_modules/playwright-core/lib/generated/recorderSource.js +7 -0
  294. data/node_modules/playwright-core/lib/generated/utilityScriptSource.js +7 -0
  295. data/node_modules/playwright-core/lib/image_tools/colorUtils.js +98 -0
  296. data/node_modules/playwright-core/lib/image_tools/compare.js +108 -0
  297. data/node_modules/playwright-core/lib/image_tools/imageChannel.js +70 -0
  298. data/node_modules/playwright-core/lib/image_tools/stats.js +102 -0
  299. data/node_modules/playwright-core/lib/inProcessFactory.js +54 -0
  300. data/node_modules/playwright-core/lib/inprocess.js +20 -0
  301. data/node_modules/playwright-core/lib/outofprocess.js +67 -0
  302. data/node_modules/playwright-core/lib/protocol/debug.js +27 -0
  303. data/node_modules/playwright-core/lib/protocol/serializers.js +173 -0
  304. data/node_modules/playwright-core/lib/protocol/transport.js +82 -0
  305. data/node_modules/playwright-core/lib/protocol/validator.js +2694 -0
  306. data/node_modules/playwright-core/lib/protocol/validatorPrimitives.js +139 -0
  307. data/node_modules/playwright-core/lib/remote/playwrightConnection.js +274 -0
  308. data/node_modules/playwright-core/lib/remote/playwrightServer.js +110 -0
  309. data/node_modules/playwright-core/lib/server/accessibility.js +62 -0
  310. data/node_modules/playwright-core/lib/server/android/android.js +441 -0
  311. data/node_modules/playwright-core/lib/server/android/backendAdb.js +172 -0
  312. data/node_modules/playwright-core/lib/server/artifact.js +104 -0
  313. data/node_modules/playwright-core/lib/server/bidi/bidiBrowser.js +296 -0
  314. data/node_modules/playwright-core/lib/server/bidi/bidiConnection.js +206 -0
  315. data/node_modules/playwright-core/lib/server/bidi/bidiExecutionContext.js +162 -0
  316. data/node_modules/playwright-core/lib/server/bidi/bidiFirefox.js +110 -0
  317. data/node_modules/playwright-core/lib/server/bidi/bidiInput.js +174 -0
  318. data/node_modules/playwright-core/lib/server/bidi/bidiNetworkManager.js +304 -0
  319. data/node_modules/playwright-core/lib/server/bidi/bidiPage.js +456 -0
  320. data/node_modules/playwright-core/lib/server/bidi/third_party/bidiDeserializer.js +93 -0
  321. data/node_modules/playwright-core/lib/server/bidi/third_party/bidiKeyboard.js +238 -0
  322. data/node_modules/playwright-core/lib/server/bidi/third_party/bidiProtocol.js +139 -0
  323. data/node_modules/playwright-core/lib/server/bidi/third_party/bidiSerializer.js +144 -0
  324. data/node_modules/playwright-core/lib/server/browser.js +137 -0
  325. data/node_modules/playwright-core/lib/server/browserContext.js +684 -0
  326. data/node_modules/playwright-core/lib/server/browserType.js +307 -0
  327. data/node_modules/playwright-core/lib/server/chromium/appIcon.png +0 -0
  328. data/node_modules/playwright-core/lib/server/chromium/chromium.js +362 -0
  329. data/node_modules/playwright-core/lib/server/chromium/chromiumSwitches.js +44 -0
  330. data/node_modules/playwright-core/lib/server/chromium/crAccessibility.js +237 -0
  331. data/node_modules/playwright-core/lib/server/chromium/crBrowser.js +515 -0
  332. data/node_modules/playwright-core/lib/server/chromium/crConnection.js +228 -0
  333. data/node_modules/playwright-core/lib/server/chromium/crCoverage.js +246 -0
  334. data/node_modules/playwright-core/lib/server/chromium/crDevTools.js +104 -0
  335. data/node_modules/playwright-core/lib/server/chromium/crDragDrop.js +143 -0
  336. data/node_modules/playwright-core/lib/server/chromium/crExecutionContext.js +156 -0
  337. data/node_modules/playwright-core/lib/server/chromium/crInput.js +171 -0
  338. data/node_modules/playwright-core/lib/server/chromium/crNetworkManager.js +767 -0
  339. data/node_modules/playwright-core/lib/server/chromium/crPage.js +1128 -0
  340. data/node_modules/playwright-core/lib/server/chromium/crPdf.js +153 -0
  341. data/node_modules/playwright-core/lib/server/chromium/crProtocolHelper.js +133 -0
  342. data/node_modules/playwright-core/lib/server/chromium/crServiceWorker.js +112 -0
  343. data/node_modules/playwright-core/lib/server/chromium/defaultFontFamilies.js +145 -0
  344. data/node_modules/playwright-core/lib/server/chromium/videoRecorder.js +155 -0
  345. data/node_modules/playwright-core/lib/server/clock.js +125 -0
  346. data/node_modules/playwright-core/lib/server/codegen/csharp.js +299 -0
  347. data/node_modules/playwright-core/lib/server/codegen/java.js +235 -0
  348. data/node_modules/playwright-core/lib/server/codegen/javascript.js +223 -0
  349. data/node_modules/playwright-core/lib/server/codegen/jsonl.js +47 -0
  350. data/node_modules/playwright-core/lib/server/codegen/language.js +76 -0
  351. data/node_modules/playwright-core/lib/server/codegen/languages.js +30 -0
  352. data/node_modules/playwright-core/lib/server/codegen/python.js +265 -0
  353. data/node_modules/playwright-core/lib/server/codegen/types.js +5 -0
  354. data/node_modules/playwright-core/lib/server/console.js +57 -0
  355. data/node_modules/playwright-core/lib/server/cookieStore.js +112 -0
  356. data/node_modules/playwright-core/lib/server/debugController.js +234 -0
  357. data/node_modules/playwright-core/lib/server/debugger.js +132 -0
  358. data/node_modules/playwright-core/lib/server/deviceDescriptors.js +26 -0
  359. data/node_modules/playwright-core/lib/server/deviceDescriptorsSource.json +1669 -0
  360. data/node_modules/playwright-core/lib/server/dialog.js +70 -0
  361. data/node_modules/playwright-core/lib/server/dispatchers/androidDispatcher.js +193 -0
  362. data/node_modules/playwright-core/lib/server/dispatchers/artifactDispatcher.js +118 -0
  363. data/node_modules/playwright-core/lib/server/dispatchers/browserContextDispatcher.js +351 -0
  364. data/node_modules/playwright-core/lib/server/dispatchers/browserDispatcher.js +170 -0
  365. data/node_modules/playwright-core/lib/server/dispatchers/browserTypeDispatcher.js +55 -0
  366. data/node_modules/playwright-core/lib/server/dispatchers/cdpSessionDispatcher.js +48 -0
  367. data/node_modules/playwright-core/lib/server/dispatchers/debugControllerDispatcher.js +103 -0
  368. data/node_modules/playwright-core/lib/server/dispatchers/dialogDispatcher.js +44 -0
  369. data/node_modules/playwright-core/lib/server/dispatchers/dispatcher.js +395 -0
  370. data/node_modules/playwright-core/lib/server/dispatchers/electronDispatcher.js +93 -0
  371. data/node_modules/playwright-core/lib/server/dispatchers/elementHandlerDispatcher.js +228 -0
  372. data/node_modules/playwright-core/lib/server/dispatchers/frameDispatcher.js +286 -0
  373. data/node_modules/playwright-core/lib/server/dispatchers/jsHandleDispatcher.js +102 -0
  374. data/node_modules/playwright-core/lib/server/dispatchers/jsonPipeDispatcher.js +59 -0
  375. data/node_modules/playwright-core/lib/server/dispatchers/localUtilsDispatcher.js +413 -0
  376. data/node_modules/playwright-core/lib/server/dispatchers/networkDispatchers.js +221 -0
  377. data/node_modules/playwright-core/lib/server/dispatchers/pageDispatcher.js +358 -0
  378. data/node_modules/playwright-core/lib/server/dispatchers/playwrightDispatcher.js +106 -0
  379. data/node_modules/playwright-core/lib/server/dispatchers/selectorsDispatcher.js +36 -0
  380. data/node_modules/playwright-core/lib/server/dispatchers/streamDispatcher.js +62 -0
  381. data/node_modules/playwright-core/lib/server/dispatchers/tracingDispatcher.js +54 -0
  382. data/node_modules/playwright-core/lib/server/dispatchers/writableStreamDispatcher.js +58 -0
  383. data/node_modules/playwright-core/lib/server/dom.js +845 -0
  384. data/node_modules/playwright-core/lib/server/download.js +53 -0
  385. data/node_modules/playwright-core/lib/server/electron/electron.js +296 -0
  386. data/node_modules/playwright-core/lib/server/electron/loader.js +57 -0
  387. data/node_modules/playwright-core/lib/server/errors.js +68 -0
  388. data/node_modules/playwright-core/lib/server/fetch.js +660 -0
  389. data/node_modules/playwright-core/lib/server/fileChooser.js +42 -0
  390. data/node_modules/playwright-core/lib/server/fileUploadUtils.js +75 -0
  391. data/node_modules/playwright-core/lib/server/firefox/ffAccessibility.js +216 -0
  392. data/node_modules/playwright-core/lib/server/firefox/ffBrowser.js +458 -0
  393. data/node_modules/playwright-core/lib/server/firefox/ffConnection.js +168 -0
  394. data/node_modules/playwright-core/lib/server/firefox/ffExecutionContext.js +138 -0
  395. data/node_modules/playwright-core/lib/server/firefox/ffInput.js +150 -0
  396. data/node_modules/playwright-core/lib/server/firefox/ffNetworkManager.js +233 -0
  397. data/node_modules/playwright-core/lib/server/firefox/ffPage.js +556 -0
  398. data/node_modules/playwright-core/lib/server/firefox/firefox.js +110 -0
  399. data/node_modules/playwright-core/lib/server/formData.js +75 -0
  400. data/node_modules/playwright-core/lib/server/frameSelectors.js +171 -0
  401. data/node_modules/playwright-core/lib/server/frames.js +1654 -0
  402. data/node_modules/playwright-core/lib/server/har/harRecorder.js +139 -0
  403. data/node_modules/playwright-core/lib/server/har/harTracer.js +531 -0
  404. data/node_modules/playwright-core/lib/server/helper.js +103 -0
  405. data/node_modules/playwright-core/lib/server/index.js +114 -0
  406. data/node_modules/playwright-core/lib/server/input.js +311 -0
  407. data/node_modules/playwright-core/lib/server/instrumentation.js +70 -0
  408. data/node_modules/playwright-core/lib/server/isomorphic/utilityScriptSerializers.js +226 -0
  409. data/node_modules/playwright-core/lib/server/javascript.js +306 -0
  410. data/node_modules/playwright-core/lib/server/launchApp.js +91 -0
  411. data/node_modules/playwright-core/lib/server/macEditingCommands.js +139 -0
  412. data/node_modules/playwright-core/lib/server/network.js +617 -0
  413. data/node_modules/playwright-core/lib/server/page.js +825 -0
  414. data/node_modules/playwright-core/lib/server/pipeTransport.js +85 -0
  415. data/node_modules/playwright-core/lib/server/playwright.js +85 -0
  416. data/node_modules/playwright-core/lib/server/progress.js +102 -0
  417. data/node_modules/playwright-core/lib/server/protocolError.js +49 -0
  418. data/node_modules/playwright-core/lib/server/recorder/contextRecorder.js +316 -0
  419. data/node_modules/playwright-core/lib/server/recorder/recorderActions.js +5 -0
  420. data/node_modules/playwright-core/lib/server/recorder/recorderApp.js +190 -0
  421. data/node_modules/playwright-core/lib/server/recorder/recorderCollection.js +127 -0
  422. data/node_modules/playwright-core/lib/server/recorder/recorderRunner.js +177 -0
  423. data/node_modules/playwright-core/lib/server/recorder/recorderUtils.js +71 -0
  424. data/node_modules/playwright-core/lib/server/recorder/throttledFile.js +46 -0
  425. data/node_modules/playwright-core/lib/server/recorder.js +324 -0
  426. data/node_modules/playwright-core/lib/server/registry/browserFetcher.js +168 -0
  427. data/node_modules/playwright-core/lib/server/registry/dependencies.js +322 -0
  428. data/node_modules/playwright-core/lib/server/registry/index.js +924 -0
  429. data/node_modules/playwright-core/lib/server/registry/nativeDeps.js +490 -0
  430. data/node_modules/playwright-core/lib/server/registry/oopDownloadBrowserMain.js +138 -0
  431. data/node_modules/playwright-core/lib/server/screenshotter.js +348 -0
  432. data/node_modules/playwright-core/lib/server/selectors.js +73 -0
  433. data/node_modules/playwright-core/lib/server/socksClientCertificatesInterceptor.js +328 -0
  434. data/node_modules/playwright-core/lib/server/socksInterceptor.js +100 -0
  435. data/node_modules/playwright-core/lib/server/trace/recorder/snapshotter.js +171 -0
  436. data/node_modules/playwright-core/lib/server/trace/recorder/snapshotterInjected.js +493 -0
  437. data/node_modules/playwright-core/lib/server/trace/recorder/tracing.js +486 -0
  438. data/node_modules/playwright-core/lib/server/trace/test/inMemorySnapshotter.js +93 -0
  439. data/node_modules/playwright-core/lib/server/trace/viewer/traceViewer.js +216 -0
  440. data/node_modules/playwright-core/lib/server/transport.js +191 -0
  441. data/node_modules/playwright-core/lib/server/types.js +24 -0
  442. data/node_modules/playwright-core/lib/server/usKeyboardLayout.js +555 -0
  443. data/node_modules/playwright-core/lib/server/webkit/webkit.js +87 -0
  444. data/node_modules/playwright-core/lib/server/webkit/wkAccessibility.js +194 -0
  445. data/node_modules/playwright-core/lib/server/webkit/wkBrowser.js +328 -0
  446. data/node_modules/playwright-core/lib/server/webkit/wkConnection.js +173 -0
  447. data/node_modules/playwright-core/lib/server/webkit/wkExecutionContext.js +146 -0
  448. data/node_modules/playwright-core/lib/server/webkit/wkInput.js +169 -0
  449. data/node_modules/playwright-core/lib/server/webkit/wkInterceptableRequest.js +162 -0
  450. data/node_modules/playwright-core/lib/server/webkit/wkPage.js +1216 -0
  451. data/node_modules/playwright-core/lib/server/webkit/wkProvisionalPage.js +94 -0
  452. data/node_modules/playwright-core/lib/server/webkit/wkWorkers.js +104 -0
  453. data/node_modules/playwright-core/lib/third_party/diff_match_patch.js +2222 -0
  454. data/node_modules/playwright-core/lib/third_party/pixelmatch.js +255 -0
  455. data/node_modules/playwright-core/lib/utils/ascii.js +31 -0
  456. data/node_modules/playwright-core/lib/utils/comparators.js +171 -0
  457. data/node_modules/playwright-core/lib/utils/crypto.js +174 -0
  458. data/node_modules/playwright-core/lib/utils/debug.js +46 -0
  459. data/node_modules/playwright-core/lib/utils/debugLogger.js +91 -0
  460. data/node_modules/playwright-core/lib/utils/env.js +49 -0
  461. data/node_modules/playwright-core/lib/utils/eventsHelper.js +38 -0
  462. data/node_modules/playwright-core/lib/utils/expectUtils.js +33 -0
  463. data/node_modules/playwright-core/lib/utils/fileUtils.js +205 -0
  464. data/node_modules/playwright-core/lib/utils/happy-eyeballs.js +181 -0
  465. data/node_modules/playwright-core/lib/utils/headers.js +52 -0
  466. data/node_modules/playwright-core/lib/utils/hostPlatform.js +133 -0
  467. data/node_modules/playwright-core/lib/utils/httpServer.js +236 -0
  468. data/node_modules/playwright-core/lib/utils/index.js +368 -0
  469. data/node_modules/playwright-core/lib/utils/isomorphic/cssParser.js +250 -0
  470. data/node_modules/playwright-core/lib/utils/isomorphic/cssTokenizer.js +979 -0
  471. data/node_modules/playwright-core/lib/utils/isomorphic/locatorGenerators.js +651 -0
  472. data/node_modules/playwright-core/lib/utils/isomorphic/locatorParser.js +179 -0
  473. data/node_modules/playwright-core/lib/utils/isomorphic/locatorUtils.js +62 -0
  474. data/node_modules/playwright-core/lib/utils/isomorphic/mimeType.js +29 -0
  475. data/node_modules/playwright-core/lib/utils/isomorphic/selectorParser.js +397 -0
  476. data/node_modules/playwright-core/lib/utils/isomorphic/stringUtils.js +139 -0
  477. data/node_modules/playwright-core/lib/utils/isomorphic/traceUtils.js +39 -0
  478. data/node_modules/playwright-core/lib/utils/isomorphic/urlMatch.js +120 -0
  479. data/node_modules/playwright-core/lib/utils/linuxUtils.js +78 -0
  480. data/node_modules/playwright-core/lib/utils/manualPromise.js +109 -0
  481. data/node_modules/playwright-core/lib/utils/multimap.js +75 -0
  482. data/node_modules/playwright-core/lib/utils/network.js +160 -0
  483. data/node_modules/playwright-core/lib/utils/processLauncher.js +248 -0
  484. data/node_modules/playwright-core/lib/utils/profiler.js +53 -0
  485. data/node_modules/playwright-core/lib/utils/rtti.js +44 -0
  486. data/node_modules/playwright-core/lib/utils/semaphore.js +51 -0
  487. data/node_modules/playwright-core/lib/utils/spawnAsync.js +45 -0
  488. data/node_modules/playwright-core/lib/utils/stackTrace.js +121 -0
  489. data/node_modules/playwright-core/lib/utils/task.js +58 -0
  490. data/node_modules/playwright-core/lib/utils/time.js +37 -0
  491. data/node_modules/playwright-core/lib/utils/timeoutRunner.js +66 -0
  492. data/node_modules/playwright-core/lib/utils/traceUtils.js +44 -0
  493. data/node_modules/playwright-core/lib/utils/userAgent.js +105 -0
  494. data/node_modules/playwright-core/lib/utils/wsServer.js +127 -0
  495. data/node_modules/playwright-core/lib/utils/zipFile.js +75 -0
  496. data/node_modules/playwright-core/lib/utils/zones.js +62 -0
  497. data/node_modules/playwright-core/lib/utilsBundle.js +82 -0
  498. data/node_modules/playwright-core/lib/utilsBundleImpl/index.js +53 -0
  499. data/node_modules/playwright-core/lib/utilsBundleImpl/xdg-open +1066 -0
  500. data/node_modules/playwright-core/lib/vite/htmlReport/index.html +66 -0
  501. data/node_modules/playwright-core/lib/vite/recorder/assets/codeMirrorModule-aW6Vz3gf.js +24 -0
  502. data/node_modules/playwright-core/lib/vite/recorder/assets/codeMirrorModule-ez37Vkbh.css +1 -0
  503. data/node_modules/playwright-core/lib/vite/recorder/assets/codicon-DCmgc-ay.ttf +0 -0
  504. data/node_modules/playwright-core/lib/vite/recorder/assets/index-B-MT5gKo.css +1 -0
  505. data/node_modules/playwright-core/lib/vite/recorder/assets/index-DCpXOVIh.js +47 -0
  506. data/node_modules/playwright-core/lib/vite/recorder/index.html +29 -0
  507. data/node_modules/playwright-core/lib/vite/recorder/playwright-logo.svg +9 -0
  508. data/node_modules/playwright-core/lib/vite/traceViewer/assets/codeMirrorModule-eFKCUIu2.js +24 -0
  509. data/node_modules/playwright-core/lib/vite/traceViewer/assets/testServerConnection-DeE2kSzz.js +1 -0
  510. data/node_modules/playwright-core/lib/vite/traceViewer/assets/workbench-D0cirtfA.js +72 -0
  511. data/node_modules/playwright-core/lib/vite/traceViewer/assets/xtermModule-BeNbaIVa.js +9 -0
  512. data/node_modules/playwright-core/lib/vite/traceViewer/codeMirrorModule.ez37Vkbh.css +1 -0
  513. data/node_modules/playwright-core/lib/vite/traceViewer/codicon.DCmgc-ay.ttf +0 -0
  514. data/node_modules/playwright-core/lib/vite/traceViewer/embedded.BkuvsLJp.js +2 -0
  515. data/node_modules/playwright-core/lib/vite/traceViewer/embedded.html +16 -0
  516. data/node_modules/playwright-core/lib/vite/traceViewer/embedded.w7WN2u1R.css +1 -0
  517. data/node_modules/playwright-core/lib/vite/traceViewer/index.C968kAiC.js +2 -0
  518. data/node_modules/playwright-core/lib/vite/traceViewer/index.CrbWWHbf.css +1 -0
  519. data/node_modules/playwright-core/lib/vite/traceViewer/index.html +27 -0
  520. data/node_modules/playwright-core/lib/vite/traceViewer/playwright-logo.svg +9 -0
  521. data/node_modules/playwright-core/lib/vite/traceViewer/snapshot.html +21 -0
  522. data/node_modules/playwright-core/lib/vite/traceViewer/sw.bundle.js +3 -0
  523. data/node_modules/playwright-core/lib/vite/traceViewer/uiMode.BkFnr4V0.js +10 -0
  524. data/node_modules/playwright-core/lib/vite/traceViewer/uiMode.D3cNFP6u.css +1 -0
  525. data/node_modules/playwright-core/lib/vite/traceViewer/uiMode.html +18 -0
  526. data/node_modules/playwright-core/lib/vite/traceViewer/workbench.DjbIuxix.css +1 -0
  527. data/node_modules/playwright-core/lib/vite/traceViewer/xtermModule.DSXBckUd.css +32 -0
  528. data/node_modules/playwright-core/lib/zipBundle.js +25 -0
  529. data/node_modules/playwright-core/lib/zipBundleImpl.js +5 -0
  530. data/node_modules/playwright-core/package.json +44 -0
  531. data/node_modules/playwright-core/types/protocol.d.ts +21500 -0
  532. data/node_modules/playwright-core/types/structs.d.ts +45 -0
  533. data/node_modules/playwright-core/types/types.d.ts +21431 -0
  534. data/node_modules/undici-types/LICENSE +21 -0
  535. data/node_modules/undici-types/README.md +6 -0
  536. data/node_modules/undici-types/agent.d.ts +31 -0
  537. data/node_modules/undici-types/api.d.ts +43 -0
  538. data/node_modules/undici-types/balanced-pool.d.ts +29 -0
  539. data/node_modules/undici-types/cache.d.ts +36 -0
  540. data/node_modules/undici-types/client.d.ts +108 -0
  541. data/node_modules/undici-types/connector.d.ts +34 -0
  542. data/node_modules/undici-types/content-type.d.ts +21 -0
  543. data/node_modules/undici-types/cookies.d.ts +28 -0
  544. data/node_modules/undici-types/diagnostics-channel.d.ts +66 -0
  545. data/node_modules/undici-types/dispatcher.d.ts +255 -0
  546. data/node_modules/undici-types/env-http-proxy-agent.d.ts +21 -0
  547. data/node_modules/undici-types/errors.d.ts +149 -0
  548. data/node_modules/undici-types/eventsource.d.ts +63 -0
  549. data/node_modules/undici-types/fetch.d.ts +209 -0
  550. data/node_modules/undici-types/file.d.ts +39 -0
  551. data/node_modules/undici-types/filereader.d.ts +54 -0
  552. data/node_modules/undici-types/formdata.d.ts +108 -0
  553. data/node_modules/undici-types/global-dispatcher.d.ts +9 -0
  554. data/node_modules/undici-types/global-origin.d.ts +7 -0
  555. data/node_modules/undici-types/handlers.d.ts +15 -0
  556. data/node_modules/undici-types/header.d.ts +4 -0
  557. data/node_modules/undici-types/index.d.ts +71 -0
  558. data/node_modules/undici-types/interceptors.d.ts +15 -0
  559. data/node_modules/undici-types/mock-agent.d.ts +50 -0
  560. data/node_modules/undici-types/mock-client.d.ts +25 -0
  561. data/node_modules/undici-types/mock-errors.d.ts +12 -0
  562. data/node_modules/undici-types/mock-interceptor.d.ts +93 -0
  563. data/node_modules/undici-types/mock-pool.d.ts +25 -0
  564. data/node_modules/undici-types/package.json +55 -0
  565. data/node_modules/undici-types/patch.d.ts +71 -0
  566. data/node_modules/undici-types/pool-stats.d.ts +19 -0
  567. data/node_modules/undici-types/pool.d.ts +39 -0
  568. data/node_modules/undici-types/proxy-agent.d.ts +28 -0
  569. data/node_modules/undici-types/readable.d.ts +60 -0
  570. data/node_modules/undici-types/retry-agent.d.ts +8 -0
  571. data/node_modules/undici-types/retry-handler.d.ts +116 -0
  572. data/node_modules/undici-types/util.d.ts +18 -0
  573. data/node_modules/undici-types/webidl.d.ts +222 -0
  574. data/node_modules/undici-types/websocket.d.ts +152 -0
  575. data/pokeedex.gemspec +32 -0
  576. data/spec/fixtures/pokemon_com/responses/GET-200-bulbasaur.html +2262 -0
  577. data/spec/fixtures/pokemon_com/responses/GET-404-not-found.html +808 -0
  578. data/spec/pokeedex/configuration_spec.rb +37 -0
  579. data/spec/pokeedex/database_spec.rb +21 -0
  580. data/spec/pokeedex/exceptions_spec.rb +11 -0
  581. data/spec/pokeedex/pokemon/base_spec.rb +15 -0
  582. data/spec/pokeedex/pokemon/decorators/base_spec.rb +63 -0
  583. data/spec/pokeedex/pokemon/model/base_spec.rb +36 -0
  584. data/spec/pokeedex/pokemon/scrapper/fetchers/base_spec.rb +36 -0
  585. data/spec/pokeedex/pokemon/scrapper/parsers/base_spec.rb +49 -0
  586. data/spec/pokeedex/pokemon/scrapper/pokedex_spec.rb +71 -0
  587. data/spec/pokeedex/pokemon/searcher/base.rb +81 -0
  588. data/spec/pokeedex_spec.rb +7 -0
  589. data/spec/spec_helper.rb +42 -0
  590. data/yarn.lock +41 -0
  591. metadata +731 -0
@@ -0,0 +1,2262 @@
1
+
2
+
3
+
4
+
5
+
6
+
7
+ <!DOCTYPE html>
8
+ <html class="no-js " lang="es-xl">
9
+ <head><script src="/d-Headiction-our-How-and-ther-Lord-That-manly-sp" async></script>
10
+
11
+ <!-- Google Tag Manager -->
12
+ <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
13
+ new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
14
+ j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
15
+ 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
16
+ })(window,document,'script','dataLayer','GTM-V9L7');</script>
17
+ <!-- End Google Tag Manager -->
18
+
19
+ <meta charset="utf-8" />
20
+ <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
21
+ <meta http-equiv="Content-Language" content="es-xl" />
22
+ <meta name="language" content="es-xl" />
23
+ <link rel="shortcut icon" href="https://assets.pokemon.com/static2/_ui/img/favicon.ico" />
24
+
25
+ <title>Bulbasaur | Pokédex</title>
26
+
27
+
28
+ <meta property="og:image" content="https://www.pokemon.com/static-assets/content-assets/cms2/img/pokedex/full/001.png" />
29
+ <meta property="og:image:width" content="215" />
30
+ <meta property="og:image:height" content="215" />
31
+ <meta property="og:description" content="Lleva un bulbo en el lomo desde que nace. A medida que el Pokémon crece, el bulbo también va haciéndose más grande." />
32
+ <meta property="og:title" content="Bulbasaur | Pokédex | Más en Pokemon.es" />
33
+ <meta name="twitter:card" content="summary" />
34
+ <meta name="twitter:image" content="https://www.pokemon.com/static-assets/content-assets/cms2/img/pokedex/full/001.png" />
35
+
36
+
37
+
38
+
39
+ <meta name="description" content="Lleva un bulbo en el lomo desde que nace. A medida que el Pokémon crece, el bulbo también va haciéndose más grande." />
40
+
41
+
42
+ <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
43
+
44
+ <link rel="stylesheet" href="https://assets.pokemon.com/static2/_ui/css/main.css" />
45
+ <link href='//fonts.googleapis.com/css?family=Roboto:400,700' rel='stylesheet' type='text/css' />
46
+
47
+
48
+
49
+ <link rel="alternate" hreflang="fr" href="https://www.pokemon.com/fr/pokedex/bulbizarre" />
50
+ <link rel="alternate" hreflang="en" href="https://www.pokemon.com/us/pokedex/bulbasaur" />
51
+ <link rel="alternate" hreflang="es-do" href="https://www.pokemon.com/el/pokedex/bulbasaur" />
52
+ <link rel="alternate" hreflang="de" href="https://www.pokemon.com/de/pokedex/bisasam" />
53
+ <link rel="alternate" hreflang="it" href="https://www.pokemon.com/it/pokedex/bulbasaur" />
54
+ <link rel="alternate" hreflang="es-py" href="https://www.pokemon.com/el/pokedex/bulbasaur" />
55
+ <link rel="alternate" hreflang="es-cl" href="https://www.pokemon.com/el/pokedex/bulbasaur" />
56
+ <link rel="alternate" hreflang="pt-br" href="https://www.pokemon.com/br/pokedex/bulbasaur" />
57
+ <link rel="alternate" hreflang="es-gt" href="https://www.pokemon.com/el/pokedex/bulbasaur" />
58
+ <link rel="alternate" hreflang="fi" href="https://www.pokemon.com/fi/pokedex/bulbasaur" />
59
+ <link rel="alternate" hreflang="es-mx" href="https://www.pokemon.com/el/pokedex/bulbasaur" />
60
+ <link rel="alternate" hreflang="es" href="https://www.pokemon.com/es/pokedex/bulbasaur" />
61
+ <link rel="alternate" hreflang="en-gb" href="https://www.pokemon.com/uk/pokedex/bulbasaur" />
62
+ <link rel="alternate" hreflang="ru" href="https://www.pokemon.com/ru/pokedex/bulbasaur" />
63
+ <link rel="alternate" hreflang="es-hn" href="https://www.pokemon.com/el/pokedex/bulbasaur" />
64
+ <link rel="alternate" hreflang="nl" href="https://www.pokemon.com/nl/pokedex/bulbasaur" />
65
+ <link rel="alternate" hreflang="es-uy" href="https://www.pokemon.com/el/pokedex/bulbasaur" />
66
+ <link rel="alternate" hreflang="es-bo" href="https://www.pokemon.com/el/pokedex/bulbasaur" />
67
+ <link rel="alternate" hreflang="es-ar" href="https://www.pokemon.com/el/pokedex/bulbasaur" />
68
+ <link rel="alternate" hreflang="nb" href="https://www.pokemon.com/no/pokedex/bulbasaur" />
69
+ <link rel="alternate" hreflang="sv" href="https://www.pokemon.com/se/pokedex/bulbasaur" />
70
+ <link rel="alternate" hreflang="es-cr" href="https://www.pokemon.com/el/pokedex/bulbasaur" />
71
+ <link rel="alternate" hreflang="es-pe" href="https://www.pokemon.com/el/pokedex/bulbasaur" />
72
+ <link rel="alternate" hreflang="es-co" href="https://www.pokemon.com/el/pokedex/bulbasaur" />
73
+ <link rel="alternate" hreflang="es-pa" href="https://www.pokemon.com/el/pokedex/bulbasaur" />
74
+ <link rel="alternate" hreflang="es-sv" href="https://www.pokemon.com/el/pokedex/bulbasaur" />
75
+ <link rel="alternate" hreflang="da" href="https://www.pokemon.com/dk/pokedex/bulbasaur" />
76
+
77
+ <!-- google search appliance meta tags -->
78
+ <meta name="pkm-title" content="Bulbasaur" /><meta name="pkm-category" content="pokedex" /><meta name="pkm-image" content="https://www.pokemon.com/static-assets/content-assets/cms2/img/pokedex/site_search/001.png" /><meta name="pkm-id" content="001" />
79
+
80
+ <script src="https://assets.pokemon.com/static2/_ui/js/vendor/modernizr.custom.js"></script>
81
+ <script src="https://www.recaptcha.net/recaptcha/enterprise.js?render=6Lc4P0MoAAAAAAhyCYBhoVfHZUF3HMvFdXSRZ-kO&hl=es-xl"></script>
82
+
83
+
84
+ <!-- START: GOOGLE TAG MANAGER - PAGE DETAILS -->
85
+
86
+ <!-- END: GOOGLE TAG MANAGER - PAGE DETAILS -->
87
+
88
+
89
+ <script>
90
+ // TODO: this should be moved to a better place in the application
91
+ // needed for image deferred loading in sliders
92
+ window.addEventListener('load', function(){
93
+ window.loaded = true;
94
+ });
95
+ </script>
96
+
97
+
98
+ <script>
99
+ window.token = "lBjivkZReBtzaBzJAlI2U8xeWZ4pcXPXzSIQq2xh4tOstY8TPjCFj8hWCAZQkGum";
100
+ window.mockAPI = false;
101
+ window.loginURL = '/el/club-de-entrenadores-pokemon/login';
102
+ window.pokemonUI = window.pokemonUI || {};
103
+ window.pokemonUI.recaptcha_key = "6Lc4P0MoAAAAAAhyCYBhoVfHZUF3HMvFdXSRZ-kO"
104
+
105
+ window.pokemonUI.countryCode = 'el'.replace('/', '');
106
+ window.pokemonUI.api = {
107
+ 'user-details': 'https://www.pokemon.com/api/users/details',
108
+ 'base-url-secure': 'https://www.pokemon.com',
109
+
110
+ 'gsa': '/us/search/api/'
111
+
112
+ };
113
+
114
+ window.pokemonUI.config = {
115
+ 'collection': 'production_pokemon_collection'
116
+ };
117
+
118
+ window.pokemonUI.modals = window.pokemonUI.modals || {};
119
+ window.pokemonUI.modals = {
120
+ "season": "Temporada",
121
+ "episode": "Episodio",
122
+ "legal": "Aviso: Si haces clic en el video de YouTube arriba, saldrás del sitio web de Pokémon. The Pokémon Company International no se responsabiliza del contenido de ningún sitio web vinculado que no esté administrado por The Pokémon Company International. Las políticas de privacidad y las prácticas de seguridad de estos sitios web pueden no seguir las normas de The Pokémon Company International.",
123
+
124
+ "twitchlegal": "Aviso: Si haces clic en el video de Twitch arriba, saldrás del sitio web de Pokémon. The Pokémon Company International no se responsabiliza del contenido de ningún sitio web vinculado que no esté administrado por The Pokémon Company International. Las políticas de privacidad y las prácticas de seguridad de estos sitios web pueden no seguir las normas de The Pokémon Company International.",
125
+ };
126
+ window.pokemonUI.dictionary = window.pokemonUI.dictionary || {};
127
+ window.pokemonUI.dictionary.dashboard = {
128
+ "youRecentlyPurchased": "Canjeado recientemente por ti",
129
+ "shopMore": "Comprar más"
130
+ };
131
+ window.pokemonUI.global_dictionary = window.pokemonUI.global_dictionary || {};
132
+ window.pokemonUI.global_dictionary.search = {
133
+ 'searchUrl': '/el/busqueda/',
134
+ 'GSALanguageCode': 'el'.replace('/', ''),
135
+ 'sortBy': 'Ordenar por:',
136
+ 'filterBy': 'Filtrar por:',
137
+ 'selectCategory': 'Ver todos',
138
+ 'mostRelevant': 'Más relevante',
139
+ 'mostRecent': 'Más reciente',
140
+ 'returnedResults': 'Se encontraron XXXX resultados.',
141
+ 'recommendedResults': 'Resultados recomendados',
142
+ 'playGame': 'Jugar',
143
+ 'all': {title : 'Ver todos'},
144
+ 'pokedex' : {title : 'Pokédex'},
145
+ 'videogames' : {title : 'Videojuego'},
146
+ 'tcg' : {title : 'Juego de Cartas Coleccionables'},
147
+ 'animation' : {title : 'Dibujos animados'},
148
+ 'news' : {title : 'Noticias'},
149
+ 'events' : {title : 'Eventos'},
150
+ 'strategy' : {title : 'Estrategia'},
151
+
152
+ "numberPrefix": "N.º\u0026nbsp\u003B"
153
+ };
154
+ window.pokemonUI.global_dictionary.datatables = {
155
+ 'search': 'Buscar',
156
+ 'previous': 'Anterior',
157
+ 'next': 'Siguiente',
158
+ 'emptyTable': "No hay datos disponibles.",
159
+ 'zeroRecords': "No se encontraron registros coincidentes."
160
+ };
161
+ window.pokemonUI.global_dictionary.errorMessages = {
162
+
163
+ 'dataError': 'No disponible actualmente. Vuelve a intentarlo más tarde.'
164
+ };
165
+ window.pokemonUI['ui-path'] = 'https://assets.pokemon.com/static2/_ui/'
166
+
167
+ window.pokemonUI.global_api = {
168
+
169
+ 'gsa': '/us/search/api/',
170
+
171
+ 'status-indicators': {
172
+ 'game-server-status': '/api/tcg/game_server_status',
173
+ 'tcgo-in-maintenance': '/api/tcg/in_maintenance_status',
174
+ 'notifications': 'https://www.pokemon.com/api/user/notifications/config'
175
+ }
176
+ };
177
+
178
+ /*Setting the Endpoint to Null. The value will be explicitly overriden in machine_local.py via tpci-ansible */
179
+ window.pokemonUI.email_signup_api = "https://api.emo.pokemon.com/";
180
+
181
+
182
+
183
+ window.pokemonUI.cookie = {
184
+ set: function (name, value, days) {
185
+ if (days) {
186
+ var date = new Date();
187
+ date.setTime(date.getTime()+(days*24*60*60*1000));
188
+ var expires = "; expires="+date.toGMTString();
189
+ }
190
+ else var expires = "";
191
+ document.cookie = name+"="+value+expires+"; path=/";
192
+ },
193
+
194
+ get:function(name){
195
+ var nameEQ = name + '=',
196
+ ca = document.cookie.split(';'),
197
+ c, i = 0, ii = 0;
198
+
199
+ for(i = 0, ii = ca.length; i < ii; i++) {
200
+ c = ca[i];
201
+
202
+ while(c.charAt(0) === ' '){
203
+ c = c.substring(1, c.length);
204
+ }
205
+
206
+ if(c.indexOf(nameEQ) === 0){
207
+ var value = c.substring(nameEQ.length, c.length);
208
+ if (value.charAt(0) == '"' && value.charAt(value.length-1) == '"') {
209
+ value = value.substring(1,value.length-1);
210
+ }
211
+ return value;
212
+ }
213
+ }
214
+ return null;
215
+ }
216
+ };
217
+
218
+ window.pokemonUI.cookie.set("django_language", "es-xl", 365);
219
+
220
+
221
+
222
+
223
+
224
+ window.enableDashboard = true;
225
+
226
+
227
+
228
+ </script>
229
+
230
+
231
+ <script>
232
+ window.pokemonUI.api = window.pokemonUI.api || {};
233
+ window.pokemonUI.api['pokedex'] = '/el/api/pokedex/';
234
+ window.pokemonUI.collectiblesSlug = "collectible-bulbasaur";
235
+ </script>
236
+ <script>
237
+ window.pokemonUI = window.pokemonUI || {};
238
+ window.pokemonUI.collectibles = window.pokemonUI.collectibles || {};
239
+ window.pokemonUI.collectibles.toggles = {
240
+ addToCollection: "Agregar a mi colección",
241
+ addToWishlist: "Agregar a mi lista de deseos",
242
+ addToTradelist: "Agregar a mi lista de intercambios",
243
+ friendsHaveThis: "0 amigos tienen esto",
244
+ friendsWantThis: "0 amigos quieren esto",
245
+ friendsTradeThis: "0 amigos quieren intercambiar esto"
246
+ };
247
+ window.pokemonUI.collectibles.friends = {
248
+ tradeWithFriends: "Intercambiar con amigos",
249
+ canTrade: "Puedes intercambiar este artículo de colección con estos amigos:",
250
+ cannotTrade: "Si agregas este artículo a tu colección, lista de deseos o lista de intercambios, ¡podrás intercambiarlo con tus amigos!",
251
+ noFriends: "Ninguno de tus amigos puede intercambiar esto contigo."
252
+ };
253
+ window.pokemonUI.collectibles.compare = {
254
+ yourCollectibles: "Tus artículos de colección",
255
+ friendCollectibles: "Artículos de colección"
256
+ };
257
+ window.pokemonUI.collectibles.search = {
258
+
259
+ zeroResults: "No se encontraron resultados con estos filtros."
260
+ }
261
+ </script>
262
+
263
+
264
+ <script>
265
+
266
+ window.pokemonUI.collectibles.friends['canTrade'] = 'Puedes intercambiar este Pokémon con estos amigos:';
267
+
268
+ window.pokemonUI.collectibles.friends['cannotTrade'] = 'Si agregas este Pokémon a tu colección, lista de deseos o lista de intercambios, ¡podrás intercambiarlo con tus amigos!';
269
+ </script>
270
+
271
+
272
+
273
+
274
+
275
+
276
+ <link rel="stylesheet" href="https://assets.pokemon.com/static2/_ui/css/pokedex.css" />
277
+
278
+
279
+ <link rel="image_src" href="https://www.pokemon.com/static-assets/content-assets/cms2/img/pokedex/full/001.png" />
280
+
281
+
282
+
283
+
284
+
285
+ <script data-main="https://assets.pokemon.com/static2/_ui/js/pokemon-detail.js" src="https://assets.pokemon.com/static2/_ui/js/vendor/require.js"></script>
286
+
287
+
288
+
289
+
290
+
291
+ <link rel="stylesheet" href="https://assets.pokemon.com/static2/_ui/css/gus.css" media="all" type="text/css"/>
292
+ <link rel="stylesheet" href="https://assets.pokemon.com/static2/_ui/css/gus_integration.css" />
293
+
294
+ </head>
295
+ <body class="el fluid custom-form-elements
296
+
297
+ ">
298
+
299
+
300
+ <!-- Google Tag Manager (noscript) -->
301
+ <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-V9L7"
302
+ height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
303
+ <!-- End Google Tag Manager (noscript) -->
304
+
305
+
306
+
307
+ <div id='gus-wrapper'>
308
+ <div class="pokemon-gus-container" data-site="pcom" data-locale="es-xl" data-api="https://www.pokemon.com/api/gus/" data-width="913px"></div>
309
+ </div>
310
+
311
+
312
+
313
+
314
+
315
+
316
+
317
+
318
+
319
+
320
+
321
+
322
+ <div class="main-filler"></div>
323
+ <nav class="main">
324
+
325
+
326
+
327
+ <div class="blocker"></div>
328
+
329
+ <div class="content-wrapper">
330
+
331
+ <div class="nav-bar">
332
+ <a href="#" class="nav-toggle"><span
333
+ class="icon icon_hamburger"></span></a>
334
+
335
+ <ul class="dashboard-open visible-mobile">
336
+ <li class="visible-signed-in">
337
+ <a href="/el/club-de-entrenadores-pokemon/login">
338
+ <div class="avatar-icon-wrapper">
339
+ <img class="avatar-icon avatar-icon-mobile"
340
+ src="https://assets.pokemon.com/static2/_ui/img/chrome/profile-navigation/profile-nav-avatar.png"
341
+ alt="Ver perfil"/>
342
+ </div>
343
+ </a>
344
+ </li>
345
+
346
+ <li class="visible-not-signed-in">
347
+ <a href="/el/club-de-entrenadores-pokemon/login">
348
+ <div class="avatar-icon-wrapper">
349
+ <img class="avatar-icon avatar-icon-mobile"
350
+ src="https://assets.pokemon.com/static2/_ui/img/chrome/profile-navigation/profile-nav-signup.png"
351
+ alt="Iniciar sesión/Registrarse"/>
352
+ </div>
353
+ <div class="sign-in-text-wrapper sign-in-text-wrapper-mobile">
354
+ Iniciar sesión
355
+ </div>
356
+ </a>
357
+ </li>
358
+ </ul>
359
+ </div>
360
+
361
+
362
+
363
+ </div>
364
+
365
+ </nav>
366
+
367
+
368
+
369
+
370
+
371
+
372
+
373
+
374
+
375
+
376
+
377
+
378
+ <div id="user-dashboard" class="
379
+
380
+ default-background
381
+
382
+ ">
383
+
384
+ <div class="drawer">
385
+
386
+ <nav class="profile-nav hidden-mobile">
387
+
388
+ <ul class="dashboard-open">
389
+ <li class="visible-not-signed-in sign-up">
390
+ <a href="https://club.pokemon.com/el/club-de-entrenadores-pokemon/login">
391
+ <span class="">
392
+ <div class="avatar-icon-wrapper">
393
+ <img class="avatar-icon" src="https://assets.pokemon.com/static2/_ui/img/chrome/profile-navigation/profile-nav-signup.png"
394
+ alt="Sign In"/>
395
+ </div>
396
+ <div class="sign-in-text-wrapper">
397
+ Iniciar sesión
398
+ </div>
399
+ </span>
400
+ </a>
401
+ </li>
402
+
403
+ <li class="visible-signed-in">
404
+ <a href="https://club.pokemon.com/el/club-de-entrenadores-pokemon/editar-perfil/">
405
+ <span class="">
406
+ <div class="avatar-icon-wrapper">
407
+ <img class="avatar-icon"
408
+ src="https://assets.pokemon.com/static2/_ui/img/chrome/profile-navigation/profile-nav-avatar.png"
409
+ alt="Profile"/>
410
+ </div>
411
+ </span>
412
+ </a>
413
+ </li>
414
+
415
+
416
+ <li class="visible-signed-in organizer-link">
417
+ <a href="/el/club-de-entrenadores-pokemon/play-pokemon/eventos/">
418
+ <span class="" >
419
+ <div class="organizer-icon-wrapper">
420
+ <img class="organizer-icon default" alt="Perfil"
421
+ src="https://assets.pokemon.com/static2/_ui/img/chrome/profile-navigation/profile-nav-builder.png" />
422
+ <img class="organizer-icon ie9-hover" alt="Perfil"
423
+ src="https://assets.pokemon.com/static2/_ui/img/chrome/profile-navigation/profile-nav-builder-ie9-hover.png" />
424
+ <span class="offscreen">Perfil</span>
425
+ </div>
426
+ </span>
427
+ </a>
428
+ </li>
429
+
430
+
431
+ <li class="visible-signed-in sign-in" id="sidebar-logout-button">
432
+ <a href="/el/club-de-entrenadores-pokemon/logout">
433
+ <span>Cerrar sesión</span>
434
+ </a>
435
+ </li>
436
+
437
+ </ul>
438
+ <div class="search">
439
+ <a class="icon icon_search" href="">
440
+ <span class="offscreen"></span>
441
+ </a>
442
+ </div>
443
+ <div class="bottom-angle"></div>
444
+ </nav>
445
+
446
+ <div class="dashboard"></div>
447
+
448
+ </div>
449
+
450
+ </div>
451
+
452
+
453
+
454
+
455
+
456
+
457
+ <div class="container
458
+
459
+ ">
460
+
461
+
462
+
463
+
464
+
465
+
466
+
467
+
468
+ <section class="section pokedex-pokemon-header overflow-visible">
469
+ <div class="pokedex-pokemon-pagination">
470
+ <a href="/el/pokedex/pecharunt" class="previous">
471
+ <div class="pokedex-pokemon-pagination-wrapper">
472
+ <span class="icon icon_arrow_sm_left"></span>
473
+ <span class="pokemon-number">N.º&nbsp;1025</span>
474
+ <span class="pokemon-name hidden-mobile">Pecharunt</span>
475
+ </div>
476
+ </a>
477
+
478
+ <a href="/el/pokedex/ivysaur" class="next">
479
+ <div class="pokedex-pokemon-pagination-wrapper">
480
+ <span class="icon icon_arrow_sm_right"></span>
481
+ <span class="pokemon-number">N.º&nbsp;0002</span>
482
+ <span class="pokemon-name hidden-mobile">Ivysaur</span>
483
+ </div>
484
+ </a>
485
+ </div>
486
+ <div class="pokedex-pokemon-pagination-title">
487
+ <div>
488
+ Bulbasaur
489
+ <span class="pokemon-number">N.º&nbsp;0001</span>
490
+ </div>
491
+ </div>
492
+ </section>
493
+
494
+ <section class="section pokedex-pokemon-form">
495
+ <div class="column-12 push-1">
496
+ <div class="styled-select button-black right">
497
+
498
+
499
+
500
+ </div>
501
+ </div>
502
+ </section>
503
+
504
+
505
+
506
+
507
+
508
+
509
+
510
+
511
+
512
+ <section class="section pokedex-pokemon-details">
513
+ <div class="column-6 push-1">
514
+ <div class="pokedex-pokemon-profile">
515
+ <div class="profile-images">
516
+
517
+
518
+ <img class="active" src="https://www.pokemon.com/static-assets/content-assets/cms2/img/pokedex/full/001.png" alt="Bulbasaur" />
519
+
520
+
521
+ </div>
522
+ </div>
523
+
524
+
525
+ <div class="pokemon-stats-info active">
526
+ <h3>Puntos de base</h3>
527
+
528
+ <ul>
529
+ <li class="first">
530
+ <ul class="gauge">
531
+ <li data-value="3" class="meter"></li>
532
+ <li></li>
533
+ <li></li>
534
+ <li></li>
535
+ <li></li>
536
+ <li></li>
537
+ <li></li>
538
+ <li></li>
539
+ <li></li>
540
+ <li></li>
541
+ <li></li>
542
+ <li></li>
543
+ <li></li>
544
+ <li></li>
545
+ <li></li>
546
+ <li></li>
547
+ </ul>
548
+ <span>PS</span>
549
+ </li>
550
+
551
+ <li>
552
+ <ul class="gauge">
553
+ <li data-value="3" class="meter"></li>
554
+ <li></li>
555
+ <li></li>
556
+ <li></li>
557
+ <li></li>
558
+ <li></li>
559
+ <li></li>
560
+ <li></li>
561
+ <li></li>
562
+ <li></li>
563
+ <li></li>
564
+ <li></li>
565
+ <li></li>
566
+ <li></li>
567
+ <li></li>
568
+ <li></li>
569
+ </ul>
570
+ <span>Ataque</span>
571
+ </li>
572
+
573
+ <li>
574
+ <ul class="gauge">
575
+ <li data-value="3" class="meter"></li>
576
+ <li></li>
577
+ <li></li>
578
+ <li></li>
579
+ <li></li>
580
+ <li></li>
581
+ <li></li>
582
+ <li></li>
583
+ <li></li>
584
+ <li></li>
585
+ <li></li>
586
+ <li></li>
587
+ <li></li>
588
+ <li></li>
589
+ <li></li>
590
+ <li></li>
591
+ </ul>
592
+ <span>Defensa</span>
593
+ </li>
594
+
595
+ <li>
596
+ <ul class="gauge">
597
+ <li data-value="4" class="meter"></li>
598
+ <li></li>
599
+ <li></li>
600
+ <li></li>
601
+ <li></li>
602
+ <li></li>
603
+ <li></li>
604
+ <li></li>
605
+ <li></li>
606
+ <li></li>
607
+ <li></li>
608
+ <li></li>
609
+ <li></li>
610
+ <li></li>
611
+ <li></li>
612
+ <li></li>
613
+ </ul>
614
+ <span>Ataque Especial</span>
615
+ </li>
616
+
617
+ <li>
618
+ <ul class="gauge">
619
+ <li data-value="4" class="meter"></li>
620
+ <li></li>
621
+ <li></li>
622
+ <li></li>
623
+ <li></li>
624
+ <li></li>
625
+ <li></li>
626
+ <li></li>
627
+ <li></li>
628
+ <li></li>
629
+ <li></li>
630
+ <li></li>
631
+ <li></li>
632
+ <li></li>
633
+ <li></li>
634
+ <li></li>
635
+ </ul>
636
+ <span>Defensa Especial</span>
637
+ </li>
638
+
639
+ <li>
640
+ <ul class="gauge">
641
+ <li data-value="3" class="meter"></li>
642
+ <li></li>
643
+ <li></li>
644
+ <li></li>
645
+ <li></li>
646
+ <li></li>
647
+ <li></li>
648
+ <li></li>
649
+ <li></li>
650
+ <li></li>
651
+ <li></li>
652
+ <li></li>
653
+ <li></li>
654
+ <li></li>
655
+ <li></li>
656
+ <li></li>
657
+ </ul>
658
+ <span>Velocidad</span>
659
+ </li>
660
+ </ul>
661
+
662
+ </div>
663
+ >
664
+
665
+ </div> <!-- column-6 push-1 -->
666
+
667
+ <div class="column-6 push-7">
668
+ <div class="pokedex-pokemon-details-right">
669
+
670
+ <div class="version-descriptions active">
671
+
672
+
673
+ <p class="version-y
674
+ ">
675
+ Lleva un bulbo en el lomo desde que nace. A medida que el Pokémon crece, el bulbo también va haciéndose más grande.
676
+ </p>
677
+
678
+ <p class="version-x
679
+ active">
680
+ Tras nacer, crece alimentándose durante un tiempo de los nutrientes que contiene el bulbo de su lomo.
681
+ </p>
682
+
683
+
684
+ </div>
685
+
686
+
687
+ <h3>Versiones:</h3>
688
+ <div class="version-labels">
689
+ <span class="version-label version-x active"><i class="icon icon_pokeball"></i></span>
690
+ <span class="version-label version-y"><i class="icon icon_pokeball"></i></span>
691
+ </div>
692
+
693
+ <div class="info match-height-tablet">
694
+
695
+
696
+ <div class="pokemon-ability-info color-bg color-lightblue match active">
697
+
698
+ <div class="column-7">
699
+ <div class="left-column">
700
+ <ul>
701
+ <li>
702
+ <span class="attribute-title">Altura</span>
703
+ <span class="attribute-value">0,7 m</span>
704
+ </li>
705
+
706
+ <li>
707
+ <span class="attribute-title">Peso</span>
708
+ <span class="attribute-value">6,9 kg</span>
709
+ </li>
710
+
711
+ <li>
712
+ <span class="attribute-title">Sexo</span>
713
+
714
+ <span class="attribute-value">
715
+ <i class="icon icon_male_symbol"></i>
716
+ <i class="icon icon_female_symbol"></i>
717
+ </span>
718
+
719
+ </li>
720
+ </ul>
721
+ </div>
722
+ </div>
723
+
724
+ <div class="column-7 push-4">
725
+ <div class="right-column">
726
+ <ul>
727
+ <li>
728
+ <span class="attribute-title">Categoría</span>
729
+ <span class="attribute-value">Semilla</span>
730
+ </li>
731
+
732
+ <li>
733
+ <span class="attribute-title">Habilidad</span>
734
+
735
+ <ul class="attribute-list">
736
+
737
+ <li>
738
+ <a href="" class="moreInfo">
739
+ <span class="attribute-value">Espesura</span>
740
+ </a>
741
+ </li>
742
+
743
+ </ul>
744
+ </li>
745
+
746
+ </ul>
747
+ </div>
748
+ </div>
749
+
750
+
751
+ <div class="pokemon-ability-info-detail match">
752
+ <span class="button-close">
753
+ <i class="icon icon_multiply"></i>Cerrar</span>
754
+ <span class="title">Información sobre habilidad</span>
755
+ <h3>Espesura</h3>
756
+ <p>Potencia sus movimientos de tipo Planta cuando le quedan pocos PS.</p>
757
+ </div>
758
+
759
+
760
+ </div> <!-- pokemon-ability-info color-bg color-lightblue match -->
761
+
762
+ <div class="pokedex-pokemon-attributes active">
763
+ <div class="dtm-type">
764
+ <h3>Tipo</h3>
765
+ <ul>
766
+ <li class="background-color-grass">
767
+
768
+ <a href="/el/pokedex/?type=grass">Planta</a>
769
+
770
+ </li>
771
+
772
+ <li class="background-color-poison middle">
773
+
774
+ <a href="/el/pokedex/?type=poison">Veneno</a>
775
+
776
+ </li>
777
+
778
+ </ul>
779
+ </div> <!-- dtm-type -->
780
+
781
+ <div class="dtm-weaknesses">
782
+ <h3>Debilidad</h3>
783
+ <ul>
784
+
785
+ <li class="background-color-fire first">
786
+
787
+ <a href="/el/pokedex/?weakness=fire">
788
+
789
+ <span>Fuego
790
+
791
+ </span>
792
+ </a>
793
+ </li>
794
+
795
+ <li class="background-color-ice middle">
796
+
797
+ <a href="/el/pokedex/?weakness=ice">
798
+
799
+ <span>Hielo
800
+
801
+ </span>
802
+ </a>
803
+ </li>
804
+
805
+ <li class="background-color-flying last">
806
+
807
+ <a href="/el/pokedex/?weakness=flying">
808
+
809
+ <span>Volador
810
+
811
+ </span>
812
+ </a>
813
+ </li>
814
+
815
+ <li class="background-color-psychic first">
816
+
817
+ <a href="/el/pokedex/?weakness=psychic">
818
+
819
+ <span>Psíquico
820
+
821
+ </span>
822
+ </a>
823
+ </li>
824
+
825
+ </ul>
826
+ </div> <!-- dtm-weaknesses -->
827
+
828
+ </div> <!-- pokedex-pokemon-attributes -->
829
+
830
+
831
+ </div> <!-- info match-height-tablet -->
832
+
833
+ <div class="collectibles-detail-friends"></div>
834
+ </div>
835
+ </div>
836
+ </section>
837
+
838
+
839
+
840
+
841
+
842
+ <section class="section pokedex-pokemon-evolution">
843
+ <div class="column-12 push-1 dog-ear-bl">
844
+
845
+ <h2>Evoluciones</h2>
846
+
847
+
848
+ <ul class="evolution-profile evolution-five match-height-tablet">
849
+
850
+ <li class="first">
851
+
852
+
853
+
854
+
855
+
856
+ <a href="/el/pokedex/bulbasaur">
857
+
858
+
859
+ <img src="https://www.pokemon.com/static-assets/content-assets/cms2/img/pokedex/detail/001.png"
860
+ alt="Bulbasaur" />
861
+ <h3 class="match">
862
+ Bulbasaur
863
+ <span class="pokemon-number">
864
+ N.º&nbsp;0001
865
+ </span>
866
+ </h3>
867
+
868
+ <ul class="evolution-attributes match-height">
869
+ <li class="background-color-grass match">Planta</li>
870
+
871
+ <li class="background-color-poison match">Veneno</li>
872
+
873
+ </ul>
874
+ </a>
875
+
876
+ </li>
877
+
878
+ <li class="middle">
879
+
880
+
881
+
882
+
883
+
884
+ <a href="/el/pokedex/ivysaur">
885
+
886
+
887
+ <img src="https://www.pokemon.com/static-assets/content-assets/cms2/img/pokedex/detail/002.png"
888
+ alt="Ivysaur" />
889
+ <h3 class="match">
890
+ Ivysaur
891
+ <span class="pokemon-number">
892
+ N.º&nbsp;0002
893
+ </span>
894
+ </h3>
895
+
896
+ <ul class="evolution-attributes match-height">
897
+ <li class="background-color-grass match">Planta</li>
898
+
899
+ <li class="background-color-poison match">Veneno</li>
900
+
901
+ </ul>
902
+ </a>
903
+
904
+ </li>
905
+
906
+ <li class="last">
907
+
908
+
909
+
910
+
911
+
912
+ <a href="/el/pokedex/venusaur">
913
+
914
+
915
+ <img src="https://www.pokemon.com/static-assets/content-assets/cms2/img/pokedex/detail/003.png"
916
+ alt="Venusaur" />
917
+ <h3 class="match">
918
+ Venusaur
919
+ <span class="pokemon-number">
920
+ N.º&nbsp;0003
921
+ </span>
922
+ </h3>
923
+
924
+ <ul class="evolution-attributes match-height">
925
+ <li class="background-color-grass match">Planta</li>
926
+
927
+ <li class="background-color-poison match">Veneno</li>
928
+
929
+ </ul>
930
+ </a>
931
+
932
+ </li>
933
+
934
+ </ul>
935
+
936
+ </div>
937
+ </section>
938
+
939
+
940
+
941
+ <section class="section pokedex-pokemon-share no-padding-top">
942
+
943
+ <div class="column-12 push-1">
944
+
945
+ <div class="content-block content-block-half-first">
946
+
947
+
948
+ </div>
949
+
950
+ <div class="content-block content-block-half">
951
+
952
+ <a href="/el/pokedex/" class="button button-orange right">Ir a la Pokédex</a>
953
+
954
+ </div>
955
+ </div>
956
+
957
+ </section>
958
+
959
+
960
+
961
+ <!--googleoff: index-->
962
+
963
+
964
+
965
+ <section id="homepage-video-slider"
966
+ class="slider-widget generic-slider video-slider preload-images
967
+
968
+
969
+
970
+
971
+ slider-description
972
+
973
+ ">
974
+
975
+
976
+ <div class="slider-title">
977
+ <div class="column-12 push-1">
978
+ <h3 class="pokemon-character-slider-title">
979
+ <span class="notch-left-top-outer"></span>
980
+
981
+ <span class="icon icon_pokemontv"></span>
982
+
983
+ Episodios Pokémon de Bulbasaur
984
+ </h3>
985
+ </div>
986
+ </div>
987
+
988
+
989
+
990
+ <div class="slider-wrapper">
991
+ <ul class="slider">
992
+
993
+
994
+
995
+
996
+ <li class="match" data-analytics-label="T3 | Episodio 11 | La cascada de la luna azul | /us/pokedex/bulbasaur"
997
+ data-content-id="item-episodes"
998
+ data-content-type="Slider"
999
+ data-content-variation="slideCenter"
1000
+ data-content-location=""
1001
+ data-content-category="Episode"
1002
+ data-content-download="">
1003
+
1004
+
1005
+ <div class="poster">
1006
+
1007
+
1008
+ <img data-preload-src="https://assets.pokemon.com/assets/cms2/img/watch-pokemon-tv/seasons/season03/season03_ep22_ss01.jpg"
1009
+ class="preload"
1010
+ alt="None">
1011
+ </div>
1012
+
1013
+
1014
+
1015
+ <div class="text">
1016
+
1017
+ <h5 class="title">La cascada de la luna azul</h5>
1018
+
1019
+
1020
+ <div class="description">T3 | Episodio 11</div>
1021
+
1022
+ </div>
1023
+
1024
+ <span class="notch-bottom-center-small"></span>
1025
+
1026
+
1027
+ <a href="/el/episodios-pokemon/03_22-la-cascada-de-la-luna-azul/" class="block-link" title="T3 | Episodio 11">
1028
+ <span class="offscreen">
1029
+ La cascada de la luna azul
1030
+ -
1031
+ T3 | Episodio 11
1032
+ </span>
1033
+ </a>
1034
+
1035
+ </li>
1036
+
1037
+
1038
+
1039
+
1040
+
1041
+ <li class="match" data-analytics-label="T2 | Episodio 10 | ¡Perdidos en la nieve! | /us/pokedex/bulbasaur"
1042
+ data-content-id="item-episodes"
1043
+ data-content-type="Slider"
1044
+ data-content-variation="slideCenter"
1045
+ data-content-location=""
1046
+ data-content-category="Episode"
1047
+ data-content-download="">
1048
+
1049
+
1050
+ <div class="poster">
1051
+
1052
+ <span class="video-play-button"></span>
1053
+
1054
+
1055
+ <img data-preload-src="https://assets.pokemon.com/assets/cms2/img/watch-pokemon-tv/seasons/season02/season02_ep10_ss01.jpg"
1056
+ class="preload"
1057
+ alt="None">
1058
+ </div>
1059
+
1060
+
1061
+
1062
+ <div class="text">
1063
+
1064
+ <h5 class="title">¡Perdidos en la nieve!</h5>
1065
+
1066
+
1067
+ <div class="description">T2 | Episodio 10</div>
1068
+
1069
+ </div>
1070
+
1071
+ <span class="notch-bottom-center-small"></span>
1072
+
1073
+
1074
+ <a href="/el/episodios-pokemon/02_10-perdidos-en-la-nieve/" class="block-link" title="T2 | Episodio 10">
1075
+ <span class="offscreen">
1076
+ ¡Perdidos en la nieve!
1077
+ -
1078
+ T2 | Episodio 10
1079
+ </span>
1080
+ </a>
1081
+
1082
+ </li>
1083
+
1084
+
1085
+
1086
+
1087
+
1088
+ <li class="match" data-analytics-label="T7 | Episodio 38 | Un paseo para perder | /us/pokedex/bulbasaur"
1089
+ data-content-id="item-episodes"
1090
+ data-content-type="Slider"
1091
+ data-content-variation="slideCenter"
1092
+ data-content-location=""
1093
+ data-content-category="Episode"
1094
+ data-content-download="">
1095
+
1096
+
1097
+ <div class="poster">
1098
+
1099
+
1100
+ <img data-preload-src="https://assets.pokemon.com/assets/cms2/img/watch-pokemon-tv/seasons/season07/season07_ep38_ss01.jpg"
1101
+ class="preload"
1102
+ alt="None">
1103
+ </div>
1104
+
1105
+
1106
+
1107
+ <div class="text">
1108
+
1109
+ <h5 class="title">Un paseo para perder</h5>
1110
+
1111
+
1112
+ <div class="description">T7 | Episodio 38</div>
1113
+
1114
+ </div>
1115
+
1116
+ <span class="notch-bottom-center-small"></span>
1117
+
1118
+
1119
+ <a href="/el/episodios-pokemon/07_38-un-paseo-para-perder/" class="block-link" title="T7 | Episodio 38">
1120
+ <span class="offscreen">
1121
+ Un paseo para perder
1122
+ -
1123
+ T7 | Episodio 38
1124
+ </span>
1125
+ </a>
1126
+
1127
+ </li>
1128
+
1129
+
1130
+
1131
+
1132
+
1133
+ <li class="match" data-analytics-label="T1 | Episodio 38 | ¡Despierta Snorlax! | /us/pokedex/bulbasaur"
1134
+ data-content-id="item-episodes"
1135
+ data-content-type="Slider"
1136
+ data-content-variation="slideCenter"
1137
+ data-content-location=""
1138
+ data-content-category="Episode"
1139
+ data-content-download="">
1140
+
1141
+
1142
+ <div class="poster">
1143
+
1144
+ <span class="video-play-button"></span>
1145
+
1146
+
1147
+ <img data-preload-src="https://assets.pokemon.com/assets/cms2/img/watch-pokemon-tv/seasons/season01/season01_ep38_ss01.jpg"
1148
+ class="preload"
1149
+ alt="None">
1150
+ </div>
1151
+
1152
+
1153
+
1154
+ <div class="text">
1155
+
1156
+ <h5 class="title">¡Despierta Snorlax!</h5>
1157
+
1158
+
1159
+ <div class="description">T1 | Episodio 38</div>
1160
+
1161
+ </div>
1162
+
1163
+ <span class="notch-bottom-center-small"></span>
1164
+
1165
+
1166
+ <a href="/el/episodios-pokemon/01_38-despierta-snorlax/" class="block-link" title="T1 | Episodio 38">
1167
+ <span class="offscreen">
1168
+ ¡Despierta Snorlax!
1169
+ -
1170
+ T1 | Episodio 38
1171
+ </span>
1172
+ </a>
1173
+
1174
+ </li>
1175
+
1176
+
1177
+
1178
+
1179
+
1180
+ <li class="match" data-analytics-label="T1 | Episodio 35 | ¡La misteriosa mansión de Ditto! | /us/pokedex/bulbasaur"
1181
+ data-content-id="item-episodes"
1182
+ data-content-type="Slider"
1183
+ data-content-variation="slideCenter"
1184
+ data-content-location=""
1185
+ data-content-category="Episode"
1186
+ data-content-download="">
1187
+
1188
+
1189
+ <div class="poster">
1190
+
1191
+ <span class="video-play-button"></span>
1192
+
1193
+
1194
+ <img data-preload-src="https://assets.pokemon.com/assets/cms2/img/watch-pokemon-tv/seasons/season01/season01_ep35_ss01.jpg"
1195
+ class="preload"
1196
+ alt="None">
1197
+ </div>
1198
+
1199
+
1200
+
1201
+ <div class="text">
1202
+
1203
+ <h5 class="title">¡La misteriosa mansión de Ditto!</h5>
1204
+
1205
+
1206
+ <div class="description">T1 | Episodio 35</div>
1207
+
1208
+ </div>
1209
+
1210
+ <span class="notch-bottom-center-small"></span>
1211
+
1212
+
1213
+ <a href="/el/episodios-pokemon/01_35-la-misteriosa-mansion-de-ditto/" class="block-link" title="T1 | Episodio 35">
1214
+ <span class="offscreen">
1215
+ ¡La misteriosa mansión de Ditto!
1216
+ -
1217
+ T1 | Episodio 35
1218
+ </span>
1219
+ </a>
1220
+
1221
+ </li>
1222
+
1223
+
1224
+
1225
+
1226
+
1227
+ <li class="match" data-analytics-label="T5 | Episodio 16 | Bulbasaur, el embajador | /us/pokedex/bulbasaur"
1228
+ data-content-id="item-episodes"
1229
+ data-content-type="Slider"
1230
+ data-content-variation="slideCenter"
1231
+ data-content-location=""
1232
+ data-content-category="Episode"
1233
+ data-content-download="">
1234
+
1235
+
1236
+ <div class="poster">
1237
+
1238
+
1239
+ <img data-preload-src="https://assets.pokemon.com/assets/cms2/img/watch-pokemon-tv/seasons/season05/season05_ep16_ss01.jpg"
1240
+ class="preload"
1241
+ alt="None">
1242
+ </div>
1243
+
1244
+
1245
+
1246
+ <div class="text">
1247
+
1248
+ <h5 class="title">Bulbasaur, el embajador</h5>
1249
+
1250
+
1251
+ <div class="description">T5 | Episodio 16</div>
1252
+
1253
+ </div>
1254
+
1255
+ <span class="notch-bottom-center-small"></span>
1256
+
1257
+
1258
+ <a href="/el/episodios-pokemon/05_16-bulbasaur-el-embajador/" class="block-link" title="T5 | Episodio 16">
1259
+ <span class="offscreen">
1260
+ Bulbasaur, el embajador
1261
+ -
1262
+ T5 | Episodio 16
1263
+ </span>
1264
+ </a>
1265
+
1266
+ </li>
1267
+
1268
+
1269
+
1270
+
1271
+
1272
+ <li class="match" data-analytics-label="T2 | Episodio 26 | ¡Amigos hasta el fin! | /us/pokedex/bulbasaur"
1273
+ data-content-id="item-episodes"
1274
+ data-content-type="Slider"
1275
+ data-content-variation="slideCenter"
1276
+ data-content-location=""
1277
+ data-content-category="Episode"
1278
+ data-content-download="">
1279
+
1280
+
1281
+ <div class="poster">
1282
+
1283
+ <span class="video-play-button"></span>
1284
+
1285
+
1286
+ <img data-preload-src="https://assets.pokemon.com/assets/cms2/img/watch-pokemon-tv/seasons/season02/season02_ep26_ss01.jpg"
1287
+ class="preload"
1288
+ alt="None">
1289
+ </div>
1290
+
1291
+
1292
+
1293
+ <div class="text">
1294
+
1295
+ <h5 class="title">¡Amigos hasta el fin!</h5>
1296
+
1297
+
1298
+ <div class="description">T2 | Episodio 26</div>
1299
+
1300
+ </div>
1301
+
1302
+ <span class="notch-bottom-center-small"></span>
1303
+
1304
+
1305
+ <a href="/el/episodios-pokemon/02_26-amigos-hasta-el-fin/" class="block-link" title="T2 | Episodio 26">
1306
+ <span class="offscreen">
1307
+ ¡Amigos hasta el fin!
1308
+ -
1309
+ T2 | Episodio 26
1310
+ </span>
1311
+ </a>
1312
+
1313
+ </li>
1314
+
1315
+
1316
+
1317
+
1318
+
1319
+ <li class="match" data-analytics-label="T3 | Episodio 13 | Mi amiga Blissey | /us/pokedex/bulbasaur"
1320
+ data-content-id="item-episodes"
1321
+ data-content-type="Slider"
1322
+ data-content-variation="slideCenter"
1323
+ data-content-location=""
1324
+ data-content-category="Episode"
1325
+ data-content-download="">
1326
+
1327
+
1328
+ <div class="poster">
1329
+
1330
+
1331
+ <img data-preload-src="https://assets.pokemon.com/assets/cms2/img/watch-pokemon-tv/seasons/season03/season03_ep24_ss01.jpg"
1332
+ class="preload"
1333
+ alt="None">
1334
+ </div>
1335
+
1336
+
1337
+
1338
+ <div class="text">
1339
+
1340
+ <h5 class="title">Mi amiga Blissey</h5>
1341
+
1342
+
1343
+ <div class="description">T3 | Episodio 13</div>
1344
+
1345
+ </div>
1346
+
1347
+ <span class="notch-bottom-center-small"></span>
1348
+
1349
+
1350
+ <a href="/el/episodios-pokemon/03_24-mi-amiga-blissey/" class="block-link" title="T3 | Episodio 13">
1351
+ <span class="offscreen">
1352
+ Mi amiga Blissey
1353
+ -
1354
+ T3 | Episodio 13
1355
+ </span>
1356
+ </a>
1357
+
1358
+ </li>
1359
+
1360
+
1361
+ </ul>
1362
+ </div><!-- class="slider-wrapper" -->
1363
+
1364
+
1365
+
1366
+ <div class="slider-more-button">
1367
+ <div class="column-12 push-1">
1368
+ <div class="content-block content-block-full">
1369
+ <a class="button button-black right "
1370
+
1371
+
1372
+ href="/el/episodios-pokemon/">TV Pokémon</a>
1373
+ </div>
1374
+ </div>
1375
+ </div>
1376
+
1377
+
1378
+
1379
+ <noscript>
1380
+
1381
+
1382
+ <div>
1383
+ <a href="/el/episodios-pokemon/03_22-la-cascada-de-la-luna-azul/">
1384
+ <h5>La cascada de la luna azul</h5>
1385
+ <span class="subtitle">T3 | Episodio 11</span>
1386
+ <img src="https://assets.pokemon.com/assets/cms2/img/watch-pokemon-tv/seasons/season03/season03_ep22_ss01.jpg" alt="None" />
1387
+ </a>
1388
+ </div>
1389
+
1390
+
1391
+
1392
+ <div>
1393
+ <a href="/el/episodios-pokemon/02_10-perdidos-en-la-nieve/">
1394
+ <h5>¡Perdidos en la nieve!</h5>
1395
+ <span class="subtitle">T2 | Episodio 10</span>
1396
+ <img src="https://assets.pokemon.com/assets/cms2/img/watch-pokemon-tv/seasons/season02/season02_ep10_ss01.jpg" alt="None" />
1397
+ </a>
1398
+ </div>
1399
+
1400
+
1401
+
1402
+ <div>
1403
+ <a href="/el/episodios-pokemon/07_38-un-paseo-para-perder/">
1404
+ <h5>Un paseo para perder</h5>
1405
+ <span class="subtitle">T7 | Episodio 38</span>
1406
+ <img src="https://assets.pokemon.com/assets/cms2/img/watch-pokemon-tv/seasons/season07/season07_ep38_ss01.jpg" alt="None" />
1407
+ </a>
1408
+ </div>
1409
+
1410
+
1411
+
1412
+ <div>
1413
+ <a href="/el/episodios-pokemon/01_38-despierta-snorlax/">
1414
+ <h5>¡Despierta Snorlax!</h5>
1415
+ <span class="subtitle">T1 | Episodio 38</span>
1416
+ <img src="https://assets.pokemon.com/assets/cms2/img/watch-pokemon-tv/seasons/season01/season01_ep38_ss01.jpg" alt="None" />
1417
+ </a>
1418
+ </div>
1419
+
1420
+
1421
+
1422
+ <div>
1423
+ <a href="/el/episodios-pokemon/01_35-la-misteriosa-mansion-de-ditto/">
1424
+ <h5>¡La misteriosa mansión de Ditto!</h5>
1425
+ <span class="subtitle">T1 | Episodio 35</span>
1426
+ <img src="https://assets.pokemon.com/assets/cms2/img/watch-pokemon-tv/seasons/season01/season01_ep35_ss01.jpg" alt="None" />
1427
+ </a>
1428
+ </div>
1429
+
1430
+
1431
+
1432
+ <div>
1433
+ <a href="/el/episodios-pokemon/05_16-bulbasaur-el-embajador/">
1434
+ <h5>Bulbasaur, el embajador</h5>
1435
+ <span class="subtitle">T5 | Episodio 16</span>
1436
+ <img src="https://assets.pokemon.com/assets/cms2/img/watch-pokemon-tv/seasons/season05/season05_ep16_ss01.jpg" alt="None" />
1437
+ </a>
1438
+ </div>
1439
+
1440
+
1441
+
1442
+ <div>
1443
+ <a href="/el/episodios-pokemon/02_26-amigos-hasta-el-fin/">
1444
+ <h5>¡Amigos hasta el fin!</h5>
1445
+ <span class="subtitle">T2 | Episodio 26</span>
1446
+ <img src="https://assets.pokemon.com/assets/cms2/img/watch-pokemon-tv/seasons/season02/season02_ep26_ss01.jpg" alt="None" />
1447
+ </a>
1448
+ </div>
1449
+
1450
+
1451
+
1452
+ <div>
1453
+ <a href="/el/episodios-pokemon/03_24-mi-amiga-blissey/">
1454
+ <h5>Mi amiga Blissey</h5>
1455
+ <span class="subtitle">T3 | Episodio 13</span>
1456
+ <img src="https://assets.pokemon.com/assets/cms2/img/watch-pokemon-tv/seasons/season03/season03_ep24_ss01.jpg" alt="None" />
1457
+ </a>
1458
+ </div>
1459
+
1460
+
1461
+ </noscript>
1462
+
1463
+ </section>
1464
+
1465
+
1466
+ <!--googleon: index-->
1467
+
1468
+
1469
+
1470
+
1471
+ <section id="trading-card-slider"
1472
+ class="slider-widget generic-slider preload-images
1473
+
1474
+ slider-option-enable-when-all-content-visible-true
1475
+
1476
+
1477
+
1478
+ slider-description
1479
+
1480
+ ">
1481
+
1482
+
1483
+ <div class="slider-title">
1484
+ <div class="column-12 push-1">
1485
+ <h3 class="pokemon-character-slider-title">
1486
+ <span class="notch-left-top-outer"></span>
1487
+
1488
+
1489
+ <span class="icon icon_cards"></span>
1490
+
1491
+ Cartas de Bulbasaur
1492
+ </h3>
1493
+ </div>
1494
+ </div>
1495
+
1496
+
1497
+
1498
+ <div class="slider-wrapper">
1499
+ <ul class="slider">
1500
+
1501
+
1502
+
1503
+
1504
+
1505
+ <li data-analytics-label="Bulbasaur | | /us/pokedex/bulbasaur"
1506
+ data-content-id="item-cards"
1507
+ data-content-type="Slider"
1508
+ data-content-variation="slideCenter"
1509
+ data-content-location=""
1510
+ data-content-category="Card"
1511
+ data-content-download=""
1512
+ >
1513
+
1514
+ <a href="/el/jcc-pokemon/cartas-pokemon/series/svp/46/">
1515
+
1516
+ <div class="card-img">
1517
+ <img data-preload-src="https://www.pokemon.com/static-assets/content-assets/cms2-es-es/img/cards/web/SVP/SVP_ES_46.png"
1518
+ alt="Bulbasaur"
1519
+ class="preload">
1520
+ </div>
1521
+ <div class="card-name">
1522
+ <h5>Bulbasaur</h5>
1523
+ <span class="card-number">46</span>
1524
+
1525
+ <br style="clear:both;">
1526
+ <img class="card-expansion-symbol" width="25" height="25" src="https://www.pokemon.com/static-assets/content-assets/cms2-es-xl/img/trading-card-game/_symbols/expansion_symbol_25x25/svp-expansion-symbol.png">
1527
+ <span class="expansion-name"></span>
1528
+ <span class="notch-bottom-center-small"></span>
1529
+ </div>
1530
+ </a>
1531
+ </li>
1532
+
1533
+
1534
+
1535
+
1536
+
1537
+
1538
+ <li data-analytics-label="Bulbasaur | | /us/pokedex/bulbasaur"
1539
+ data-content-id="item-cards"
1540
+ data-content-type="Slider"
1541
+ data-content-variation="slideCenter"
1542
+ data-content-location=""
1543
+ data-content-category="Card"
1544
+ data-content-download=""
1545
+ >
1546
+
1547
+ <a href="/el/jcc-pokemon/cartas-pokemon/series/swshp/SWSH231/">
1548
+
1549
+ <div class="card-img">
1550
+ <img data-preload-src="https://www.pokemon.com/static-assets/content-assets/cms2-es-es/img/cards/web/SWSHP/SWSHP_ES_SWSH231.png"
1551
+ alt="Bulbasaur"
1552
+ class="preload">
1553
+ </div>
1554
+ <div class="card-name">
1555
+ <h5>Bulbasaur</h5>
1556
+ <span class="card-number">SWSH231</span>
1557
+
1558
+ <br style="clear:both;">
1559
+ <img class="card-expansion-symbol" width="25" height="25" src="https://www.pokemon.com/static-assets/content-assets/cms2-es-xl/img/trading-card-game/_symbols/expansion_symbol_25x25/swshp-expansion-symbol.png">
1560
+ <span class="expansion-name"></span>
1561
+ <span class="notch-bottom-center-small"></span>
1562
+ </div>
1563
+ </a>
1564
+ </li>
1565
+
1566
+
1567
+
1568
+
1569
+
1570
+
1571
+ <li data-analytics-label="Bulbasaur | | /us/pokedex/bulbasaur"
1572
+ data-content-id="item-cards"
1573
+ data-content-type="Slider"
1574
+ data-content-variation="slideCenter"
1575
+ data-content-location=""
1576
+ data-content-category="Card"
1577
+ data-content-download=""
1578
+ >
1579
+
1580
+ <a href="/el/jcc-pokemon/cartas-pokemon/series/sv3pt5/1/">
1581
+
1582
+ <div class="card-img">
1583
+ <img data-preload-src="https://www.pokemon.com/static-assets/content-assets/cms2-es-es/img/cards/web/SV3PT5/SV3PT5_ES_1.png"
1584
+ alt="Bulbasaur"
1585
+ class="preload">
1586
+ </div>
1587
+ <div class="card-name">
1588
+ <h5>Bulbasaur</h5>
1589
+ <span class="card-number">1</span>
1590
+
1591
+ <br style="clear:both;">
1592
+ <img class="card-expansion-symbol" width="25" height="25" src="https://www.pokemon.com/static-assets/content-assets/cms2-es-xl/img/trading-card-game/_symbols/expansion_symbol_25x25/sv3pt5-expansion-symbol.png">
1593
+ <span class="expansion-name"></span>
1594
+ <span class="notch-bottom-center-small"></span>
1595
+ </div>
1596
+ </a>
1597
+ </li>
1598
+
1599
+
1600
+
1601
+
1602
+
1603
+
1604
+ <li data-analytics-label="Bulbasaur | | /us/pokedex/bulbasaur"
1605
+ data-content-id="item-cards"
1606
+ data-content-type="Slider"
1607
+ data-content-variation="slideCenter"
1608
+ data-content-location=""
1609
+ data-content-category="Card"
1610
+ data-content-download=""
1611
+ >
1612
+
1613
+ <a href="/el/jcc-pokemon/cartas-pokemon/series/sm35/1/">
1614
+
1615
+ <div class="card-img">
1616
+ <img data-preload-src="https://www.pokemon.com/static-assets/content-assets/cms2-es-es/img/cards/web/SM35/SM35_ES_1.png"
1617
+ alt="Bulbasaur"
1618
+ class="preload">
1619
+ </div>
1620
+ <div class="card-name">
1621
+ <h5>Bulbasaur</h5>
1622
+ <span class="card-number">1</span>
1623
+
1624
+ <br style="clear:both;">
1625
+ <img class="card-expansion-symbol" width="25" height="25" src="https://www.pokemon.com/static-assets/content-assets/cms2-es-xl/img/trading-card-game/_symbols/expansion_symbol_25x25/sm35-expansion-symbol.png">
1626
+ <span class="expansion-name"></span>
1627
+ <span class="notch-bottom-center-small"></span>
1628
+ </div>
1629
+ </a>
1630
+ </li>
1631
+
1632
+
1633
+
1634
+
1635
+
1636
+
1637
+ <li data-analytics-label="Bulbasaur | | /us/pokedex/bulbasaur"
1638
+ data-content-id="item-cards"
1639
+ data-content-type="Slider"
1640
+ data-content-variation="slideCenter"
1641
+ data-content-location=""
1642
+ data-content-category="Card"
1643
+ data-content-download=""
1644
+ >
1645
+
1646
+ <a href="/el/jcc-pokemon/cartas-pokemon/series/sv3pt5/166/">
1647
+
1648
+ <div class="card-img">
1649
+ <img data-preload-src="https://www.pokemon.com/static-assets/content-assets/cms2-es-es/img/cards/web/SV3PT5/SV3PT5_ES_166.png"
1650
+ alt="Bulbasaur"
1651
+ class="preload">
1652
+ </div>
1653
+ <div class="card-name">
1654
+ <h5>Bulbasaur</h5>
1655
+ <span class="card-number">166</span>
1656
+
1657
+ <br style="clear:both;">
1658
+ <img class="card-expansion-symbol" width="25" height="25" src="https://www.pokemon.com/static-assets/content-assets/cms2-es-xl/img/trading-card-game/_symbols/expansion_symbol_25x25/sv3pt5-expansion-symbol.png">
1659
+ <span class="expansion-name"></span>
1660
+ <span class="notch-bottom-center-small"></span>
1661
+ </div>
1662
+ </a>
1663
+ </li>
1664
+
1665
+
1666
+
1667
+
1668
+
1669
+
1670
+ <li data-analytics-label="Bulbasaur | | /us/pokedex/bulbasaur"
1671
+ data-content-id="item-cards"
1672
+ data-content-type="Slider"
1673
+ data-content-variation="slideCenter"
1674
+ data-content-location=""
1675
+ data-content-category="Card"
1676
+ data-content-download=""
1677
+ >
1678
+
1679
+ <a href="/el/jcc-pokemon/cartas-pokemon/series/sv07/143/">
1680
+
1681
+ <div class="card-img">
1682
+ <img data-preload-src="https://www.pokemon.com/static-assets/content-assets/cms2-es-es/img/cards/web/SV07/SV07_ES_143.png"
1683
+ alt="Bulbasaur"
1684
+ class="preload">
1685
+ </div>
1686
+ <div class="card-name">
1687
+ <h5>Bulbasaur</h5>
1688
+ <span class="card-number">143</span>
1689
+
1690
+ <br style="clear:both;">
1691
+ <img class="card-expansion-symbol" width="25" height="25" src="https://www.pokemon.com/static-assets/content-assets/cms2-es-xl/img/trading-card-game/_symbols/expansion_symbol_25x25/sv07-expansion-symbol.png">
1692
+ <span class="expansion-name"></span>
1693
+ <span class="notch-bottom-center-small"></span>
1694
+ </div>
1695
+ </a>
1696
+ </li>
1697
+
1698
+
1699
+
1700
+
1701
+
1702
+
1703
+ <li data-analytics-label="Bulbasaur | | /us/pokedex/bulbasaur"
1704
+ data-content-id="item-cards"
1705
+ data-content-type="Slider"
1706
+ data-content-variation="slideCenter"
1707
+ data-content-location=""
1708
+ data-content-category="Card"
1709
+ data-content-download=""
1710
+ >
1711
+
1712
+ <a href="/el/jcc-pokemon/cartas-pokemon/series/pgo/1/">
1713
+
1714
+ <div class="card-img">
1715
+ <img data-preload-src="https://www.pokemon.com/static-assets/content-assets/cms2-es-es/img/cards/web/PGO/PGO_ES_1.png"
1716
+ alt="Bulbasaur"
1717
+ class="preload">
1718
+ </div>
1719
+ <div class="card-name">
1720
+ <h5>Bulbasaur</h5>
1721
+ <span class="card-number">1</span>
1722
+
1723
+ <br style="clear:both;">
1724
+ <img class="card-expansion-symbol" width="25" height="25" src="https://www.pokemon.com/static-assets/content-assets/cms2-es-xl/img/trading-card-game/_symbols/expansion_symbol_25x25/pgo-expansion-symbol.png">
1725
+ <span class="expansion-name"></span>
1726
+ <span class="notch-bottom-center-small"></span>
1727
+ </div>
1728
+ </a>
1729
+ </li>
1730
+
1731
+
1732
+
1733
+
1734
+
1735
+
1736
+ <li data-analytics-label="Bulbasaur | | /us/pokedex/bulbasaur"
1737
+ data-content-id="item-cards"
1738
+ data-content-type="Slider"
1739
+ data-content-variation="slideCenter"
1740
+ data-content-location=""
1741
+ data-content-category="Card"
1742
+ data-content-download=""
1743
+ >
1744
+
1745
+ <a href="/el/jcc-pokemon/cartas-pokemon/series/dp3/77/">
1746
+
1747
+ <div class="card-img">
1748
+ <img data-preload-src="https://www.pokemon.com/static-assets/content-assets/cms2-es-es/img/cards/web/DP3/DP3_ES_77.png"
1749
+ alt="Bulbasaur"
1750
+ class="preload">
1751
+ </div>
1752
+ <div class="card-name">
1753
+ <h5>Bulbasaur</h5>
1754
+ <span class="card-number">77</span>
1755
+
1756
+ <br style="clear:both;">
1757
+ <img class="card-expansion-symbol" width="25" height="25" src="https://www.pokemon.com/static-assets/content-assets/cms2-es-xl/img/trading-card-game/_symbols/expansion_symbol_25x25/dp3-expansion-symbol.png">
1758
+ <span class="expansion-name"></span>
1759
+ <span class="notch-bottom-center-small"></span>
1760
+ </div>
1761
+ </a>
1762
+ </li>
1763
+
1764
+
1765
+
1766
+
1767
+
1768
+
1769
+ <li data-analytics-label="Bulbasaur | | /us/pokedex/bulbasaur"
1770
+ data-content-id="item-cards"
1771
+ data-content-type="Slider"
1772
+ data-content-variation="slideCenter"
1773
+ data-content-location=""
1774
+ data-content-category="Card"
1775
+ data-content-download=""
1776
+ >
1777
+
1778
+ <a href="/el/jcc-pokemon/cartas-pokemon/series/det/1/">
1779
+
1780
+ <div class="card-img">
1781
+ <img data-preload-src="https://www.pokemon.com/static-assets/content-assets/cms2-es-es/img/cards/web/DET/DET_ES_1.png"
1782
+ alt="Bulbasaur"
1783
+ class="preload">
1784
+ </div>
1785
+ <div class="card-name">
1786
+ <h5>Bulbasaur</h5>
1787
+ <span class="card-number">1</span>
1788
+
1789
+ <br style="clear:both;">
1790
+ <img class="card-expansion-symbol" width="25" height="25" src="https://www.pokemon.com/static-assets/content-assets/cms2-es-xl/img/trading-card-game/_symbols/expansion_symbol_25x25/det-expansion-symbol.png">
1791
+ <span class="expansion-name"></span>
1792
+ <span class="notch-bottom-center-small"></span>
1793
+ </div>
1794
+ </a>
1795
+ </li>
1796
+
1797
+
1798
+ </ul>
1799
+ </div><!-- class="slider-wrapper" -->
1800
+
1801
+
1802
+
1803
+ <div class="slider-more-button">
1804
+ <div class="column-12 push-1">
1805
+ <div class="content-block content-block-full">
1806
+ <a class="button button-black right "
1807
+
1808
+
1809
+ href="/el/jcc-pokemon/cartas-pokemon/">Explorar más cartas</a>
1810
+ </div>
1811
+ </div>
1812
+ </div>
1813
+
1814
+
1815
+
1816
+ <noscript>
1817
+
1818
+
1819
+ <div>
1820
+ <a href="/el/episodios-pokemon/03_22-la-cascada-de-la-luna-azul/">
1821
+ <h5>La cascada de la luna azul</h5>
1822
+ <span class="subtitle">T3 | Episodio 11</span>
1823
+ <img src="https://assets.pokemon.com/assets/cms2/img/watch-pokemon-tv/seasons/season03/season03_ep22_ss01.jpg" alt="None" />
1824
+ </a>
1825
+ </div>
1826
+
1827
+
1828
+
1829
+ <div>
1830
+ <a href="/el/episodios-pokemon/02_10-perdidos-en-la-nieve/">
1831
+ <h5>¡Perdidos en la nieve!</h5>
1832
+ <span class="subtitle">T2 | Episodio 10</span>
1833
+ <img src="https://assets.pokemon.com/assets/cms2/img/watch-pokemon-tv/seasons/season02/season02_ep10_ss01.jpg" alt="None" />
1834
+ </a>
1835
+ </div>
1836
+
1837
+
1838
+
1839
+ <div>
1840
+ <a href="/el/episodios-pokemon/07_38-un-paseo-para-perder/">
1841
+ <h5>Un paseo para perder</h5>
1842
+ <span class="subtitle">T7 | Episodio 38</span>
1843
+ <img src="https://assets.pokemon.com/assets/cms2/img/watch-pokemon-tv/seasons/season07/season07_ep38_ss01.jpg" alt="None" />
1844
+ </a>
1845
+ </div>
1846
+
1847
+
1848
+
1849
+ <div>
1850
+ <a href="/el/episodios-pokemon/01_38-despierta-snorlax/">
1851
+ <h5>¡Despierta Snorlax!</h5>
1852
+ <span class="subtitle">T1 | Episodio 38</span>
1853
+ <img src="https://assets.pokemon.com/assets/cms2/img/watch-pokemon-tv/seasons/season01/season01_ep38_ss01.jpg" alt="None" />
1854
+ </a>
1855
+ </div>
1856
+
1857
+
1858
+
1859
+ <div>
1860
+ <a href="/el/episodios-pokemon/01_35-la-misteriosa-mansion-de-ditto/">
1861
+ <h5>¡La misteriosa mansión de Ditto!</h5>
1862
+ <span class="subtitle">T1 | Episodio 35</span>
1863
+ <img src="https://assets.pokemon.com/assets/cms2/img/watch-pokemon-tv/seasons/season01/season01_ep35_ss01.jpg" alt="None" />
1864
+ </a>
1865
+ </div>
1866
+
1867
+
1868
+
1869
+ <div>
1870
+ <a href="/el/episodios-pokemon/05_16-bulbasaur-el-embajador/">
1871
+ <h5>Bulbasaur, el embajador</h5>
1872
+ <span class="subtitle">T5 | Episodio 16</span>
1873
+ <img src="https://assets.pokemon.com/assets/cms2/img/watch-pokemon-tv/seasons/season05/season05_ep16_ss01.jpg" alt="None" />
1874
+ </a>
1875
+ </div>
1876
+
1877
+
1878
+
1879
+ <div>
1880
+ <a href="/el/episodios-pokemon/02_26-amigos-hasta-el-fin/">
1881
+ <h5>¡Amigos hasta el fin!</h5>
1882
+ <span class="subtitle">T2 | Episodio 26</span>
1883
+ <img src="https://assets.pokemon.com/assets/cms2/img/watch-pokemon-tv/seasons/season02/season02_ep26_ss01.jpg" alt="None" />
1884
+ </a>
1885
+ </div>
1886
+
1887
+
1888
+
1889
+ <div>
1890
+ <a href="/el/episodios-pokemon/03_24-mi-amiga-blissey/">
1891
+ <h5>Mi amiga Blissey</h5>
1892
+ <span class="subtitle">T3 | Episodio 13</span>
1893
+ <img src="https://assets.pokemon.com/assets/cms2/img/watch-pokemon-tv/seasons/season03/season03_ep24_ss01.jpg" alt="None" />
1894
+ </a>
1895
+ </div>
1896
+
1897
+
1898
+ </noscript>
1899
+
1900
+ </section>
1901
+
1902
+
1903
+
1904
+ <div id="pokedex-auth-error-modal" class="popup user-alert">
1905
+ <div class="content">
1906
+ <h3>Requiere inicio de sesión</h3>
1907
+ <p>¡Necesitas una cuenta del Club de Entrenadores Pokémon para guardar tus Pokémon favoritos!</p>
1908
+ <a href="/es/club-de-entrenadores-pokemon/login?_rd=/es/pokedex/bulbasaur" class="button arrow-left button-green sign-in">Iniciar sesión</a>
1909
+ <a href="/el/club-de-entrenadores-pokemon/registro/" class="button button-blue signup">Registrarse</a>
1910
+ <a href="#" class="button no-arrow button-grey closeBtn">No, gracias</a>
1911
+ </div>
1912
+ </div>
1913
+
1914
+ <div id="pokedex-collectible-auth-error-modal" class="popup user-alert">
1915
+ <div class="content">
1916
+ <h3>Requiere inicio de sesión</h3>
1917
+ <p>¡Inicia sesión en tu cuenta del Club de Entrenadores Pokémon para agregar Pokémon a tu colección!</p>
1918
+ <a href="/es/club-de-entrenadores-pokemon/login?_rd=/es/pokedex/bulbasaur" class="button arrow-left button-green sign-in">Iniciar sesión</a>
1919
+ <a href="/el/club-de-entrenadores-pokemon/registro/" class="button button-blue signup">Registrarse</a>
1920
+ <a href="#" class="button no-arrow button-grey closeBtn">No, gracias</a>
1921
+ </div>
1922
+ </div>
1923
+
1924
+
1925
+
1926
+
1927
+
1928
+ <!-- end of container -->
1929
+ </div>
1930
+
1931
+
1932
+
1933
+
1934
+
1935
+ <div id="back-to-top" class="visible-mobile">
1936
+ <span class="offscreen">Regresar al inicio</span>
1937
+ </div>
1938
+
1939
+ <div class="footer-divider">
1940
+ <span class="footer-notch"></span>
1941
+ </div>
1942
+
1943
+ <footer class="global-footer">
1944
+
1945
+
1946
+
1947
+
1948
+ <div class="global-footer-email">
1949
+ <p class="footer-email-title">¡Regístrate para recibir correos electrónicos de&nbsp;Pokémon!</p>
1950
+ <div class="footer-email-container disable-custom-select-menu">
1951
+ <div class="footer-email-form">
1952
+ <input type="email" name="email-signup-email-text" id="email-signup-email-text" placeholder="Correo electrónico" class="footer-white-box" required />
1953
+ <div class="region_dob_wrap">
1954
+ <select id="email-signup-regions" class="footer-white-box footer-region-select" required>
1955
+ </select>
1956
+ <input type="text" class="footer-email-input footer-white-box" title="Fecha de nacimiento" id="email-signup-dob" placeholder="Fecha de nacimiento"></input>
1957
+ </div>
1958
+ </div>
1959
+ <div class="footer-email-notification-options">
1960
+ <p class="email_msg">Me gustaría recibir correos electrónicos acerca&nbsp;de:</p>
1961
+ <div class="footer-email-checkbox-wrapper-1">
1962
+ <input type="checkbox" id="email-signup-vg-apps" name="email-signup-vg-apps" value="pokemon_news" class="footer-email-checkbox">
1963
+ <label for="email-signup-vg-apps"> Videojuegos, aplicaciones y muchas más cosas de&nbsp;Pokémon</label>
1964
+ </div>
1965
+ <div class="footer-email-checkbox-wrapper-1" id="email-signup-pc-container" style="display:none;">
1966
+ <input type="checkbox" id="email-signup-pc" name="email-signup-pc" value="pcenter" class="footer-email-checkbox">
1967
+ <label for="email-signup-pc"> Pokémon Center (nuestra tienda en línea&nbsp;oficial)</label>
1968
+ </div>
1969
+ <div class="footer-email-checkbox-wrapper-1">
1970
+ <input type="checkbox" id="email-signup-terms" name="email-signup-terms" value="terms" class="footer-email-checkbox">
1971
+ <label for="email-signup-terms">
1972
+
1973
+
1974
+
1975
+
1976
+
1977
+ Acepto los <a class="footer-email-link" href="/el/terminos-de-uso/">Términos de uso</a> y la <a class="footer-email-link" href="/el/aviso-sobre-la-privacidad/">Aviso sobre la privacidad</a> de Pokemon.com/LATAM
1978
+ </label>
1979
+ </div>
1980
+ </div>
1981
+ </div>
1982
+ <input type="submit" name="submit_button" value="Regístrate" class="footer-email-sumbit" id="email-signup-submit-button"/>
1983
+ </div>
1984
+
1985
+
1986
+ <div class="content-wrapper match-height-tablet">
1987
+
1988
+
1989
+
1990
+ <div class="global-footer-links match">
1991
+ <h2><span class="offscreen">The Pok&eacute;mon Company</span></h2>
1992
+ <ul>
1993
+
1994
+
1995
+ <li>
1996
+ <a href="/el/noticias-pokemon/" rel="" title="">
1997
+ Novedades
1998
+ </a>
1999
+ </li>
2000
+
2001
+ <li>
2002
+
2003
+ <a href="https://parents.pokemon.com/es-mx/"
2004
+ rel=""
2005
+ title="">
2006
+ Guía para padres y tutores
2007
+ </a>
2008
+ </li>
2009
+ <li>
2010
+ <a href="/el/servicio-de-atencion-al-cliente/" rel="" title="">
2011
+ Servicio de atención al cliente
2012
+ </a>
2013
+ </li>
2014
+ <li>
2015
+ <a href="https://corporate.pokemon.com/en-us/" rel="" title="" id="about-our-company-link">
2016
+ Sobre nuestra compañía
2017
+ </a>
2018
+ </li>
2019
+
2020
+
2021
+ <li>
2022
+ <a href="/el/pais-region/" rel="" title="">
2023
+ Seleccionar país o región
2024
+ </a>
2025
+ </li>
2026
+ <li>
2027
+ <a id="press-link" href="https://press.pokemon.com/es-MX" class="exit-link"
2028
+ target="_blank"
2029
+ rel="https://press.pokemon.com/es-MX"
2030
+ title="External: https://press.pokemon.com/es-MX">
2031
+ Sitio de prensa
2032
+ </a>
2033
+ </li>
2034
+
2035
+
2036
+
2037
+ </ul>
2038
+ </div>
2039
+
2040
+
2041
+
2042
+ <div class="global-footer-social match">
2043
+
2044
+ <div class="footer-social-wrapper">
2045
+ <div class="find-us">
2046
+ <div class="find-us-box">
2047
+
2048
+
2049
+ <a href="https://www.facebook.com/Pok%C3%A9mon-103682847702080" class="facebook exit-link" target="_blank"
2050
+ title="External: https://www.facebook.com/Pok%C3%A9mon-103682847702080">
2051
+ <span class="offscreen">Facebook</span>
2052
+ </a>
2053
+
2054
+ <a href="https://www.youtube.com/PokemonLATAM" class="youtube exit-link" target="_blank"
2055
+ title="External: https://www.youtube.com/PokemonLATAM">
2056
+ <span class="offscreen">Youtube</span>
2057
+ </a>
2058
+
2059
+ <a href="https://www.twitter.com/PokemonLATAM" class="twitter exit-link" target="_blank"
2060
+ title="External: https://www.twitter.com/PokemonLATAM">
2061
+ <span class="offscreen">Twitter</span>
2062
+ </a>
2063
+
2064
+
2065
+ </div>
2066
+ </div>
2067
+
2068
+ </div>
2069
+
2070
+ </div>
2071
+
2072
+
2073
+
2074
+
2075
+
2076
+ <div class="global-footer-legal match">
2077
+
2078
+ <div class="footer-legal-wrapper">
2079
+
2080
+ <div id="footer--privacy">
2081
+ <a
2082
+ title="External: https://caru.bbbprograms.org/seal/Confirmation/1596150491"
2083
+
2084
+ href="/el/aviso-sobre-la-privacidad/"
2085
+
2086
+ >
2087
+ </a>
2088
+ <ul>
2089
+
2090
+ <li>
2091
+ <a href="/el/terminos-de-uso/">Términos de uso</a>
2092
+ </li>
2093
+
2094
+ <li>
2095
+ <a href="/el/aviso-sobre-la-privacidad/">Aviso sobre la privacidad</a>
2096
+ </li>
2097
+
2098
+ <li>
2099
+ <a id="cookieLink" href="/el/pagina-de-cookies/">Página de Cookies</a>
2100
+ </li>
2101
+
2102
+ <li>
2103
+ <a href="/el/informacion-legal/">Información legal</a>
2104
+ </li>
2105
+
2106
+
2107
+
2108
+ </ul>
2109
+ </div>
2110
+
2111
+ <span>©2023 Pokémon. ©1995 - 2023 Nintendo/Creatures Inc./GAME FREAK inc. TM, ®Nintendo.</span>
2112
+
2113
+ </div>
2114
+
2115
+ </div>
2116
+
2117
+
2118
+ </div>
2119
+
2120
+
2121
+ </footer>
2122
+
2123
+
2124
+
2125
+
2126
+
2127
+ <div id="modal" class="popup">
2128
+ <div class="externalLink">
2129
+ <h6>
2130
+
2131
+ Estás a punto de salir de un sitio web operado por The Pokémon Company International, Inc.
2132
+
2133
+ </h6>
2134
+ <p>
2135
+
2136
+ The Pokémon Company International no se responsabiliza del contenido de ningún sitio web vinculado que no esté administrado por The Pokémon Company International. Las políticas de privacidad y las prácticas de seguridad de estos sitios web pueden no seguir las normas de The Pokémon Company International.
2137
+
2138
+ </p>
2139
+ <div class="buttons-wrapper">
2140
+ <a href="#" class="button button-green arrow-right continueBtn">
2141
+
2142
+ Continuar
2143
+
2144
+ </a>
2145
+ <a href="#" class="button button-darkgray arrow-left closeBtn">
2146
+
2147
+ Cancelar
2148
+
2149
+ </a>
2150
+ </div>
2151
+ </div>
2152
+ </div>
2153
+
2154
+ <div id="pokemon-center-modal" class="popup">
2155
+ <div class="externalLink centerLink">
2156
+ <h6>
2157
+ Haz clic en "Continuar" para visitar PokemonCenter.com, nuestra tienda en línea oficial.
2158
+ </h6>
2159
+ <h6>
2160
+ Las políticas de privacidad y las prácticas de seguridad son diferentes.
2161
+ </h6>
2162
+ <div class="buttons-wrapper">
2163
+ <a href="#" class="button button-green arrow-right continueBtn">
2164
+
2165
+ Continuar
2166
+
2167
+ </a>
2168
+ <a href="#" class="button button-darkgray arrow-left closeBtn" target="_blank">
2169
+
2170
+ Cancelar
2171
+
2172
+ </a>
2173
+ </div>
2174
+ </div>
2175
+ </div>
2176
+
2177
+ <div id="site-search-modal" class="popup">
2178
+
2179
+ <form id="site-search-widget" class="form-analytics" name="site-search-modal">
2180
+ <span class="search"><input type="search" placeholder="Buscar" name="search" id="site-search-widget-term" autocomplete="off" /></span>
2181
+ <span class="submit icon icon_search"><input type="submit" value="" id="site-search-widget-submit"/></span>
2182
+ <div id="modal-search-results"></div>
2183
+ </form>
2184
+ </div>
2185
+
2186
+ <div id='report-screen-name-success-modal' class='popup'>
2187
+ <h6>Informar sobre un apodo inapropiado</h6>
2188
+
2189
+ <div class='modalBox'>
2190
+ <img src="https://assets.pokemon.com/static2/_ui/img/chrome/external_link_bumper.png" alt="" class="hidden-mobile" />
2191
+
2192
+ <p>
2193
+ Los administradores de Pokemon.com recibieron tu reporte y revisarán el apodo para comprobar si se ajusta a los términos de uso.
2194
+ </p>
2195
+
2196
+ <div class='buttons-wrapper'>
2197
+ <a href='#' class='button button-orange closeBtn'>
2198
+ Cerrar
2199
+ </a>
2200
+ </div>
2201
+ </div>
2202
+ </div>
2203
+
2204
+ <div id='report-screen-name-failure-modal' class='popup'>
2205
+ <h6>Informar sobre un apodo inapropiado</h6>
2206
+
2207
+ <div class='modalBox'>
2208
+ <img src="https://assets.pokemon.com/static2/_ui/img/chrome/external_link_bumper.png" alt="" class="hidden-mobile" />
2209
+
2210
+ <p>
2211
+ No se pudo procesar tu petición. Inténtalo de nuevo. Si no se soluciona el problema, ponte en contacto con el Servicio de Atención al Cliente.
2212
+ </p>
2213
+
2214
+ <div class='buttons-wrapper'>
2215
+ <a href='#' class='button button-orange closeBtn'>
2216
+ Cerrar
2217
+ </a>
2218
+ </div>
2219
+ </div>
2220
+ </div>
2221
+
2222
+ <div id="email-signup-success" class="email-modal-content popup" tabindex="0">
2223
+ <div class="email-modal-close-icon-container">
2224
+ <a tabindex="0" class="icon icon_multiply email-modal-close-icon closeBtn"></a>
2225
+ </div>
2226
+ <div class="email-modal-body modalBox">
2227
+ <span class="icon icon_check email-modal-big-icon" style="color: green;"></span>
2228
+ <p class="email-modal-emphasis-text">¡Te registraste correctamente para recibir correos electrónicos de&nbsp;Pokémon!</p>
2229
+ <p>Te enviaremos varios correos electrónicos cada semana.</p>
2230
+ <p>Puedes cancelar tu suscripción en cualquier momento mediante el enlace que aparece en el pie de página de tu correo&nbsp;electrónico.</p>
2231
+ </div>
2232
+ </div>
2233
+
2234
+ <div id="email-signup-failure" class="email-modal-content popup" tabindex="0">
2235
+ <div class="email-modal-close-icon-container">
2236
+ <a tabindex="0" class="icon icon_multiply email-modal-close-icon closeBtn"></a>
2237
+ </div>
2238
+ <div class="email-modal-body modalBox">
2239
+ <span class="icon icon_multiply email-modal-big-icon" style="color: red;"></span>
2240
+ <p class="email-modal-emphasis-text">Lo sentimos, pero no podemos procesar tu&nbsp;solicitud.</p>
2241
+ <p>En este momento no podemos suscribirte a los correos&nbsp;electrónicos.</p>
2242
+ <p>
2243
+
2244
+
2245
+
2246
+
2247
+ Visita <a href="/el/">Pokemon.com/LATAM</a> para consultar las últimas noticias sobre Pokémon o haz clic <a href="https://support.pokemon.com/hc/en-us/articles/20573695697428">aquí</a> para ponerte en contacto con el servicio de atención al&nbsp;cliente.
2248
+ </p>
2249
+ </div>
2250
+ </div>
2251
+
2252
+ <div id='popupScreen' class="popupScreen"></div>
2253
+
2254
+
2255
+
2256
+
2257
+
2258
+
2259
+
2260
+ </body>
2261
+ </html>
2262
+