diff --git a/README.md b/README.md
index 89ed458..7f0f7de 100644
--- a/README.md
+++ b/README.md
@@ -8,8 +8,11 @@ This repository contains the tickets, scripts, and documentation for the end of
#### `deploy_archives`
Run this once the archives have been built to tar them up and scp them to the server.
-#### Wiki Data
-##### `find_data`
+#### Wiki Data (`wiki` directory)
+##### `wiki_pages`
+Not a script, just a listing of all the pages in the wiki (as of the 27 July 2020 lockdown). Use this and Special:Export to create an XML dump of wiki pages and place it in the `wiki` directory.
+
+##### `find_pages`
Run this locally (it uses the MediaWiki HTTP API). Finds all pages in categories related to Pokemon generations 1 - 4 that have been edited since 31 March 2020.
#### Forum Data (`forum` directory)
diff --git a/epilogue/__init__.py b/epilogue/__init__.py
index 2f6d025..35cebd5 100644
--- a/epilogue/__init__.py
+++ b/epilogue/__init__.py
@@ -1,9 +1,11 @@
import os
from .forum import Forum
+from .wiki import Wiki
from .archive_generator import ArchiveGenerator
BASEDIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
FORUM_DATABASE = os.path.join(BASEDIR, "forum", "forum.sqlite")
+WIKI_DIRECTORY = os.path.join(BASEDIR, "wiki")
TEMPLATES_DIR = os.path.join(BASEDIR, "templates")
STATIC_DIR = os.path.join(BASEDIR, "static")
@@ -13,5 +15,14 @@ WIKI_ARCHIVES = os.path.join(ARCHIVES_BASEDIR, "wiki")
def main():
forum = Forum(FORUM_DATABASE)
+
+ wiki = None
+ for entry in os.listdir(WIKI_DIRECTORY):
+ if entry.endswith(".xml"):
+ wiki = Wiki(os.path.join(WIKI_DIRECTORY, entry))
+
generator = ArchiveGenerator(TEMPLATES_DIR, STATIC_DIR)
- generator.generate_forum(forum, FORUM_ARCHIVES)
\ No newline at end of file
+ #generator.generate_forum(forum, FORUM_ARCHIVES)
+
+ if wiki:
+ generator.generate_wiki(wiki, WIKI_ARCHIVES)
\ No newline at end of file
diff --git a/epilogue/archive_generator.py b/epilogue/archive_generator.py
index 4820b3d..6db9c38 100644
--- a/epilogue/archive_generator.py
+++ b/epilogue/archive_generator.py
@@ -6,6 +6,9 @@ from datetime import datetime
import chevron
import bbcode
+from .wiki import NAMESPACES as WIKI_NAMESPACES
+import mwparserfromhell
+
logging.basicConfig(level=logging.INFO)
logger = logging.getLogger("ArchiveGenerator")
@@ -29,6 +32,38 @@ class ArchiveGenerator():
self.template_dir = template_dir
self.static_dir = static_dir
+ def generate_wiki (self, wiki, out_dir):
+ logger.info("Archiving wiki to %s", out_dir)
+ try:
+ os.makedirs(out_dir)
+ except FileExistsError: pass
+
+ shutil.copyfile(os.path.join(self.static_dir, "style.css"), os.path.join(out_dir, "style.css"))
+ renderer = TemplateRenderer(self.template_dir, out_dir)
+
+ for page in wiki.get_pages():
+ if page.redirect:
+ continue
+
+ if page.namespace != WIKI_NAMESPACES['MAIN']:
+ continue
+
+ page_out = "{}.html".format(page.title).replace(" ", "_")
+ base = ""
+ if "/" in page_out:
+ base = "../" * page_out.count("/")
+ try:
+ os.makedirs(os.path.dirname(os.path.join(out_dir, page_out)))
+ except FileExistsError: pass
+
+ logger.info("Archiving page %s to %s", page.title, page_out)
+ renderer.render_template_to_file("page", page_out, {
+ "title": " - {}".format(page.title),
+ "page": page,
+ "base": base,
+ "text": mwparserfromhell.parse(page.get_latest().text)
+ })
+
def generate_forum (self, forum, out_dir):
logger.info("Archiving forum to %s", out_dir)
try:
diff --git a/epilogue/wiki.py b/epilogue/wiki.py
new file mode 100644
index 0000000..fc7d236
--- /dev/null
+++ b/epilogue/wiki.py
@@ -0,0 +1,74 @@
+from xml.etree import ElementTree
+
+NAMESPACE = "{http://www.mediawiki.org/xml/export-0.10/}"
+PAGE_TAG = "{}page".format(NAMESPACE)
+ID_TAG = "{}id".format(NAMESPACE)
+TITLE_TAG = "{}title".format(NAMESPACE)
+REVISION_TAG = "{}revision".format(NAMESPACE)
+NS_TAG = "{}ns".format(NAMESPACE)
+REDIRECT_TAG = "{}redirect".format(NAMESPACE)
+
+TEXT_TAG = "{}text".format(NAMESPACE)
+FORMAT_TAG = "{}format".format(NAMESPACE)
+MODEL_TAG = "{}model".format(NAMESPACE)
+TIMESTAMP_TAG = "{}timestamp".format(NAMESPACE)
+COMMENT_TAG = "{}comment".format(NAMESPACE)
+CONTRIBUTOR_TAG = "{}contributor".format(NAMESPACE)
+
+USERNAME_TAG = "{}username".format(NAMESPACE)
+
+NAMESPACES = {
+ "MAIN": 0,
+ "TEMPLATE": 10
+}
+
+class Wiki():
+ def __init__ (self, xml_path):
+ self.xml_path = xml_path
+
+ def get_pages (self):
+ tree = ElementTree.parse(self.xml_path)
+ return (Page(element) for element in tree.getroot() if element.tag == PAGE_TAG)
+
+class Page():
+ def __init__ (self, element):
+ self.redirect = None
+ self.revisions = []
+ for child in element:
+ if child.tag == ID_TAG:
+ self.id = child.text
+ elif child.tag == NS_TAG:
+ self.namespace = int(child.text)
+ elif child.tag == TITLE_TAG:
+ self.title = child.text
+ elif child.tag == REVISION_TAG:
+ self.revisions.append(Revision(child))
+ elif child.tag == REDIRECT_TAG:
+ self.redirect = child.attrib['title']
+
+ def get_latest (self):
+ return self.revisions[0]
+
+class Revision():
+ def __init__ (self, element):
+ for child in element:
+ if child.tag == ID_TAG:
+ self.id = child.text
+ elif child.tag == TEXT_TAG:
+ self.text = child.text
+ elif child.tag == CONTRIBUTOR_TAG:
+ self.contributor = Contributor(child)
+ elif child.tag == TIMESTAMP_TAG:
+ self.timestamp = child.text
+ elif child.tag == MODEL_TAG:
+ self.model = child.text
+ elif child.tag == COMMENT_TAG:
+ self.comment = child.text
+
+class Contributor():
+ def __init__ (self, element):
+ for child in element:
+ if child.tag == ID_TAG:
+ self.id = child.text
+ elif child.tag == USERNAME_TAG:
+ self.username = child.text
\ No newline at end of file
diff --git a/setup.py b/setup.py
index 3683ab9..2da093b 100644
--- a/setup.py
+++ b/setup.py
@@ -8,7 +8,7 @@ setup(
description='Tools for exporting and creating archives of Glitch City Labs data',
author='Adrian Kuschelyagi Malacoda',
packages=['epilogue'],
- install_requires=['pysqlite3 >= 0.4.3', 'chevron >= 0.13.1', 'bbcode >= 1.1.0'],
+ install_requires=['pysqlite3 >= 0.4.3', 'chevron >= 0.13.1', 'bbcode >= 1.1.0', 'mwparserfromhell >= 0.5.4'],
entry_points={
'console_scripts': [
'epilogue = epilogue:main'
diff --git a/templates/page.mustache b/templates/page.mustache
new file mode 100644
index 0000000..71b8eae
--- /dev/null
+++ b/templates/page.mustache
@@ -0,0 +1,6 @@
+{{>header}}
+
{{page.title}}
+
+ {{text}}
+
+{{>footer}}
\ No newline at end of file
diff --git a/find_pages b/wiki/find_pages
similarity index 100%
rename from find_pages
rename to wiki/find_pages
diff --git a/wiki/wiki_pages b/wiki/wiki_pages
new file mode 100644
index 0000000..e595608
--- /dev/null
+++ b/wiki/wiki_pages
@@ -0,0 +1,5593 @@
+!
+"Abnormal" Pokémon
+"BGLSG" Glitch
+"BGLSG" glitch
+"Guess Who?" glitch
+$
+$$$ (move)
+$/h
+$ Pゥ. 4(
+& ど◀
+'
+'M
+'M'Ng
+'M 'N g
+'M (00)
+'M (FE)
+'M (FF)
+'M (disambiguation)
+'Ng'Mp
+'Ng ゥ$
+'Ng ゥ₽
+' B' ゥ
+'d m
+'d m (disambiguation)
+'d Ö₽ 'mぅ Ò Ü
+'m 4 $
+'m 4 ₽
+'r 'r 4
+'r ゥ
+'v
+'ゥ.
+(PLAYER)aPOKé₽…… (0x59 control character)QPC'TRAINER q
+( I
+(h4to89
+)
+) R 4.
+) e d POKé tzx
+,KPkMn(PLAYER NAME) x X
+,M
+-
+----
+-----
+----- (Generation IV)
+----- (Generation V)
+----- (disambiguation)
+---- (area)
+-PkMn
+- (Generation II move)
+- (Generation I move)
+- (disambiguation)
+- (glitch Pokémon)
+- (move)
+- -
+-g
+-g (disambiguation)
+-g m
+-g m (disambiguation)
+-gm
+......
+.4
+.8
+.PkMn
+. pゥ
+. ゥ ( .I' .
+.g
+/PkMn ▼PkMn
+/ 9 4 ……
+007: The World Is Not Enough (PlayStation)
+0 ERROR.
+0 Error
+0 error.
+0 maximum HP glitch
+0x0000 glitch Pokémon (Pokémon XD)
+0x1500 control code arbitrary code execution
+0x15 sub-tile
+0x50 sub-tile
+0x50 tile
+0xF9 box-set glitch
+0xF9 box-set trick
+0xFE glitch Pokémon trade glitch
+10F
+10F (disambiguation)
+10 ?
+10 ? marks
+10 question marks
+11F
+11F (disambiguation)
+14S
+152
+1F
+1F (disambiguation)
+1▶ゥ
+1▶ゥ·
+1▶ゥ· (disambiguation)
+255 Pokémon glitch
+255 hours glitch
+255 item stack duplication glitch
+256x item selling price glitch
+256× item selling price glitch
+2EME ETAGE
+2F
+2F (disambiguation)
+2x2 block encounter glitch
+2x2 block encounter glitches
+3D effect glitch
+3F
+3F (disambiguation)
+3TrainerPoké₽
+3lゥ
+3trainerpoke
+3trainerpoké
+4!
+4(h4?
+4(h4?₽
+4(h4hi?$
+4, ゥァ
+4, ゥァ (0xCF)
+4, ゥァ (0xDD)
+4, ゥァ (CF)
+4, ゥァ (DD)
+4, ゥァ (disambiguation)
+4848
+4?
+4B 8 4 8
+4F
+4F (disambiguation)
+4HI?
+4 (glitch item hex:77)
+4 (glitch item hex:77) (disambiguation)
+4 . .
+4 4
+4 4 4 4
+4 4 Hy
+4 89 4
+4 8 )
+4 8 :
+4 8 Q TM 4
+4h
+5
+50 tile
+5F
+5F (disambiguation)
+5 kai
+5kai
+65536 steps and 256 Balls in the Safari Zone via walk through walls glitch
+65536 steps and 256 balls in the Safari Zone via walk through walls
+6F
+6F (disambiguation)
+7F
+7F (disambiguation)
+7PkMn 'v
+8B 4 8
+8F
+8F (disambiguation)
+8F Helper
+8 (0xDE)
+8 (DE)
+8 8
+8 8 (0x7C) grass/rock surfing glitch
+8 8 4 h's
+8 P ァ
+9
+94
+94 (0xF1) item mutation old man glitch method
+94 h
+99 item stack glitch
+9F
+9F (disambiguation)
+9ゥ
+;MP- (disambiguation)
+?
+?/
+???
+?????
+????????
+??????????
+???????? (glitch item)
+????? (0x07 glitch item)
+????? (0x2C glitch item)
+????? (disambiguation)
+????? Glitch City
+????? map corruption
+????? party overloading
+????? party overloading roaming Pokémon manipulation
+??? (disambiguation)
+??? (glitch item)
+??? Arceus form
+? (disambiguation)
+? (glitch Pokémon)
+? (glitch item)
+A
+A-Button held down glitches
+A-Save
+ACE
+AR
+AZ's Floette
+A (0xBF)
+A (0xC0)
+A (0xEA)
+A (EA)
+A (disambiguation)
+Abnormal Pokémon
+Abnormal pokemon
+Abnormal pokémon
+Abuse of the Pseudorandom Number Generator
+Abuse of the pseudorandom number generator
+Ace Trainer battle loop
+Ace trainer battle loop
+Acid Rain Glitch
+Acid Rain glitch
+Acid rain
+Acro Bike instability glitches
+Action Replay
+Activating events while facing the wrong way
+Address
+Advanced Generation Glitched Pokémon Center
+Aerodactyl Fossil MissingNo.
+Aether Paradise crate outline glitch
+Agatha
+Agatha (Generation I glitch Trainers)
+Alpha
+Alt-Retire glitch
+Alternative Route 104 map
+Alternative map locations (Generation I)
+Amazing Man
+Amazing Trainers
+Animal Crossing: New Horizons
+Anti-DMA
+Appearing as a 'glitch character' with SRAM glitch
+Arbitrary Pokédex data
+Arbitrary code execution
+Arbitrary learnset/evolution glitch Pokémon
+Arbitrary learnset glitch Pokémon
+Arbitrary sprite pointer
+Arbitrary sprite pointers
+Arbitrary sprites
+Arceus Plate glitch
+AreaDex
+AreaDex/GS:03508 (0x0E00)
+AreaDex/GS:08703
+AreaDex/GS:08703 (0x21FF)
+AreaDex/GS:13824
+AreaDex/GS:13824 (0x3600)
+AreaDex/GS:39205 (0x9925)
+AreaDex/GS:44032 (0xAC00, Nintendo 3DS Virtual Console)
+AreaDex/GS:48384 (0xBD00)
+AreaDex/GS:55808 (0xDA00)
+AreaDex/RB:105
+AreaDex/RB:231
+AreaDex/RB:248
+AreaDex/RB:249
+AreaDex/RB:250
+AreaDex/RB:251
+AreaDex/RB:252
+AreaDex/RB:253
+AreaDex/RB:254
+AreaDex/RBY:011
+AreaDex/RBY:111
+AreaDex/Y:231
+AreaDex/Y:249
+AreaDex/Y:250
+AreaDex/Y:251
+AreaDex/Y:252
+AreaDex/Y:253
+AreaDex/Y:254
+AreaDexDE/Y:011
+AreaDexES/RB:105
+AreaDexES/Y:011
+AreaDexES/Y:255
+AreaDexFR/RB:105
+AreaDexFR/Y:011
+AreaDexIT/Y:011
+AreaDexJP/C:61729 (0xF121)
+AreaDexJP/GS:61729 (0xF121)
+AreaDexJP/Y:231
+AreaDexJP/Y:254
+Arena Trap/Magnet Pull/Shadow Tag flee glitch
+Arena Trap glitch
+Aroma Lady walks through ledge
+Aroma lady walks through ledge
+Articuno binoculars cry glitch
+Artificial Trainer class
+Artificial glitch Pokémon family
+Artificial shininess glitch
+Ash
+Ash (disambiguation)
+AttackDex
+AttackDex/C:000
+AttackDex/C:252
+AttackDex/C:253
+AttackDex/C:254
+AttackDex/C:255
+AttackDex/GS:000
+AttackDex/GS:252
+AttackDex/GS:253
+AttackDex/GS:254
+AttackDex/GS:255
+AttackDex/RB:000
+AttackDex/RB:166
+AttackDex/RB:167
+AttackDex/RB:168
+AttackDex/RB:168 (Nintendo 3DS Virtual Console)
+AttackDex/RB:169
+AttackDex/RB:170
+AttackDex/RB:171
+AttackDex/RB:172
+AttackDex/RB:173
+AttackDex/RB:174
+AttackDex/RB:175
+AttackDex/RB:176
+AttackDex/RB:177
+AttackDex/RB:177 (Nintendo 3DS Virtual Console)
+AttackDex/RB:178
+AttackDex/RB:179
+AttackDex/RB:180
+AttackDex/RB:181
+AttackDex/RB:182
+AttackDex/RB:183
+AttackDex/RB:184
+AttackDex/RB:185
+AttackDex/RB:186
+AttackDex/RB:187
+AttackDex/RB:188
+AttackDex/RB:189
+AttackDex/RB:190
+AttackDex/RB:191
+AttackDex/RB:192
+AttackDex/RB:193
+AttackDex/RB:194
+AttackDex/RB:195
+AttackDex/RB:196
+AttackDex/RB:197
+AttackDex/RB:198
+AttackDex/RB:199
+AttackDex/RB:200
+AttackDex/RB:201
+AttackDex/RB:202
+AttackDex/RB:203
+AttackDex/RB:204
+AttackDex/RB:205
+AttackDex/RB:206
+AttackDex/RB:207
+AttackDex/RB:208
+AttackDex/RB:209
+AttackDex/RB:210
+AttackDex/RB:211
+AttackDex/RB:212
+AttackDex/RB:213
+AttackDex/RB:214
+AttackDex/RB:215
+AttackDex/RB:216
+AttackDex/RB:217
+AttackDex/RB:218
+AttackDex/RB:219
+AttackDex/RB:220
+AttackDex/RB:221
+AttackDex/RB:222
+AttackDex/RB:223
+AttackDex/RB:224
+AttackDex/RB:225
+AttackDex/RB:226
+AttackDex/RB:227
+AttackDex/RB:228
+AttackDex/RB:229
+AttackDex/RB:230
+AttackDex/RB:231
+AttackDex/RB:232
+AttackDex/RB:233
+AttackDex/RB:234
+AttackDex/RB:235
+AttackDex/RB:236
+AttackDex/RB:237
+AttackDex/RB:238
+AttackDex/RB:239
+AttackDex/RB:240
+AttackDex/RB:241
+AttackDex/RB:242
+AttackDex/RB:243
+AttackDex/RB:244
+AttackDex/RB:245
+AttackDex/RB:246
+AttackDex/RB:247
+AttackDex/RB:248
+AttackDex/RB:248 (Nintendo 3DS Virtual Console)
+AttackDex/RB:249
+AttackDex/RB:250
+AttackDex/RB:251
+AttackDex/RB:252
+AttackDex/RB:253
+AttackDex/RB:254
+AttackDex/RB:255
+AttackDex/RBY:166
+AttackDex/RBY:169
+AttackDex/RBY:170
+AttackDex/RBY:171
+AttackDex/RBY:173
+AttackDex/RBY:174
+AttackDex/RBY:175
+AttackDex/RBY:176
+AttackDex/RBY:178
+AttackDex/RBY:179
+AttackDex/RBY:180
+AttackDex/RBY:183
+AttackDex/RBY:188
+AttackDex/RBY:190
+AttackDex/RBY:192
+AttackDex/RBY:194
+AttackDex/RBY:197
+AttackDex/RBY:198
+AttackDex/RBY:199
+AttackDex/RBY:202
+AttackDex/RBY:203
+AttackDex/RBY:204
+AttackDex/RBY:207
+AttackDex/RBY:208
+AttackDex/RBY:211
+AttackDex/RBY:213
+AttackDex/RBY:216
+AttackDex/RBY:218
+AttackDex/RBY:220
+AttackDex/RBY:222
+AttackDex/RBY:225
+AttackDex/RBY:226
+AttackDex/RBY:227
+AttackDex/RBY:230
+AttackDex/RBY:231
+AttackDex/RBY:232
+AttackDex/RBY:234
+AttackDex/RBY:235
+AttackDex/RBY:236
+AttackDex/RBY:239
+AttackDex/RBY:240
+AttackDex/RBY:241
+AttackDex/RBY:244
+AttackDex/RBY:246
+AttackDex/RBY:249
+AttackDex/RBY:250
+AttackDex/RBY:253
+AttackDex/RBY:254
+AttackDex/RBY:255
+AttackDex/Y:000
+AttackDex/Y:166
+AttackDex/Y:167
+AttackDex/Y:168
+AttackDex/Y:169
+AttackDex/Y:170
+AttackDex/Y:171
+AttackDex/Y:172
+AttackDex/Y:173
+AttackDex/Y:174
+AttackDex/Y:175
+AttackDex/Y:176
+AttackDex/Y:177
+AttackDex/Y:178
+AttackDex/Y:179
+AttackDex/Y:180
+AttackDex/Y:181
+AttackDex/Y:182
+AttackDex/Y:183
+AttackDex/Y:184
+AttackDex/Y:185
+AttackDex/Y:186
+AttackDex/Y:187
+AttackDex/Y:188
+AttackDex/Y:189
+AttackDex/Y:190
+AttackDex/Y:191
+AttackDex/Y:192
+AttackDex/Y:193
+AttackDex/Y:194
+AttackDex/Y:195
+AttackDex/Y:196
+AttackDex/Y:197
+AttackDex/Y:198
+AttackDex/Y:199
+AttackDex/Y:200
+AttackDex/Y:201
+AttackDex/Y:202
+AttackDex/Y:203
+AttackDex/Y:204
+AttackDex/Y:205
+AttackDex/Y:206
+AttackDex/Y:207
+AttackDex/Y:208
+AttackDex/Y:209
+AttackDex/Y:210
+AttackDex/Y:211
+AttackDex/Y:212
+AttackDex/Y:213
+AttackDex/Y:214
+AttackDex/Y:215
+AttackDex/Y:216
+AttackDex/Y:217
+AttackDex/Y:218
+AttackDex/Y:219
+AttackDex/Y:219 (Nintendo 3DS Virtual Console)
+AttackDex/Y:220
+AttackDex/Y:221
+AttackDex/Y:222
+AttackDex/Y:223
+AttackDex/Y:224
+AttackDex/Y:225
+AttackDex/Y:226
+AttackDex/Y:227
+AttackDex/Y:228
+AttackDex/Y:229
+AttackDex/Y:230
+AttackDex/Y:231
+AttackDex/Y:232
+AttackDex/Y:233
+AttackDex/Y:234
+AttackDex/Y:235
+AttackDex/Y:236
+AttackDex/Y:237
+AttackDex/Y:238
+AttackDex/Y:238 (Nintendo 3DS VC)
+AttackDex/Y:238 (Nintendo 3DS Virtual Console)
+AttackDex/Y:239
+AttackDex/Y:240
+AttackDex/Y:241
+AttackDex/Y:242
+AttackDex/Y:243
+AttackDex/Y:244
+AttackDex/Y:245
+AttackDex/Y:246
+AttackDex/Y:247
+AttackDex/Y:248
+AttackDex/Y:249
+AttackDex/Y:250
+AttackDex/Y:251
+AttackDex/Y:252
+AttackDex/Y:253
+AttackDex/Y:254
+AttackDex/Y:255
+Attackdex
+Azurill gender glitch
+Aゥ G
+B
+B1F
+B1F (disambiguation)
+B2F
+B2F (disambiguation)
+B4F
+B4F (disambiguation)
+BGLSG glitch
+BG event
+BIN
+BIRD Type
+BSOD
+BSoD
+B (0xD7)
+B (0xDA)
+B (D7)
+B (DA)
+B (disambiguation)
+B ァ h
+Backward sign-reading glitch
+Backward sign reading glitch
+Backwards sign reading glitch
+Bad EGG
+Bad Egg
+Bad Egg (name)
+Bad clone
+Bad clone glitch
+Bad egg
+Bad sprite
+BadgeDescriptionDex
+Badge describer glitch
+Balloon Fight
+Balloon Fight GB
+Balloon Kid
+Base structure Pokédex marker byte
+Baton Pass Own Tempo curiosity
+Baton Pass Own Tempo glitch
+BattleTypeDex
+Battle Barry every day
+Battle Chateau signpost curiosity
+Battle Park (Platinum)
+Battle Pike poison knockout glitch
+Battle Resort Move Tutor glitch
+Battle Tower Lati@s glitch
+Battle Tower Pokémon cloning glitch (Emerald)
+Battle Tower SRAM glitch
+Battle Tower inverse cloning glitch (Emerald)
+Battle Tower text glitch
+Battle Video exploit
+Battle Your Rival Every Day
+Battle disabling Select glitch
+Battle transition oversight
+Battle your rival every day
+Battling Barry every day
+Battling one's rival every day
+Beauty
+Beauty (Generation I glitch Trainers)
+Beauty (disambiguation)
+Bell Tower and Whirl Islands after tweaking
+Berry
+Berry (Generation II glitch item)
+Berry glitch
+Berry tree glitch
+Berry tree glitch (Generation VIII)
+Berry tree glitch (Sword and Shield)
+Berry tree glitch (disambiguation)
+Berry tree shadow glitch (Generation VII)
+Beta
+Beta Maps (Harry Potter and the Chamber of Secrets for PC)
+Beta Pokemon
+Beta and alpha
+Beta and alpha elements
+Beta battle system
+Beta elements
+Beta information
+Beta music
+Beta pokemon names
+Beta safari zone
+Beta soundtrack
+Bicycle music hole glitch
+Bide fainted Pokémon damage accumulation glitch
+Bide glitch
+Bide non-damaging move/action damage accumulation glitch
+Bide sprite glitch
+Bike Shop instant text glitch
+Biker
+Biker (Generation I glitch Trainers)
+Bill's Secret Garden
+Bill's Secret Garden glitch
+Billʼs Secret Garden
+Binary
+Binary switch
+Binary switches
+Bird Keeper (Generation I glitch Trainers)
+Bird Type
+Bird type
+Bit
+Black Belt speech curiosity
+Black Belt speech error
+Black box cartridge fault
+Black curtains
+Black curtains glitch
+Black screen
+Black screen crash
+Black screen freeze
+Blackbelt
+Blackbelt (Generation I glitch Trainers)
+Blackbelt (disambiguation)
+Blaine
+Blaine (Generation I glitch Trainers)
+Blaine (disambiguation)
+Blaine Super Potion glitch
+Blank name glitch
+Blind Pikachu
+Blind Pikachu glitch
+BlockoobLG
+Blue
+Blue (disambiguation)
+Boarding the Magnet Train early with ????? (00)'s map corruption (Spanish Crystal)
+Bonsly
+Bonsly (Pokémon XD glitch Pokémon)
+Boss HP recruit glitch
+BoulderBadge
+BoulderBadge (glitch item)
+Boulder push glitch
+Boulder switch glitch
+Boulderbadge badge check skip
+Box change glitch
+Box remaining HP glitch
+Breakpoint
+Brock
+Brock (Generation I glitch Trainers)
+Brock (disambiguation)
+Brock Through Walls
+Brock skip glitch
+Broken escalator glitch
+Broken hidden items glitch
+Bruno
+Bruno (Generation I glitch Trainers)
+Buffer overflow
+Bug
+Bug-Catching Contest data copy glitch
+Bug (disambiguation)
+Bug Catcher
+Bug Catcher (Generation I glitch Trainers)
+Bug Catcher (disambiguation)
+Bug technique
+Bulbagarden
+Bulbapedia
+Bump noise error
+Burglar
+Burglar (Generation I glitch Trainers)
+Burglar (disambiguation)
+Burned Tower Silver wrong side effects
+Burned Tower Silver wrong side glitch
+Burned Tower Silver wrong side glitches
+Byte
+C
+CACOPHONY (ability)
+CC57 arbitrary code execution
+CC5C Rival's
+CFC4 freeze
+C (0xE5)
+C (0xE9)
+C (disambiguation)
+C I
+Cable Club Glitch City transition
+Cable Club black out glitch
+Cable Club escape glitch
+Cable Club unlinked maps
+Cacophony
+Cacophony (ability)
+Cameo
+Cameos from Pokémon developers in other games
+Cancel
+Cancel (Generation I 0xFF glitch item)
+Cancel (disambiguation)
+Cart-swap arbitrary code execution
+Cartridge RAM
+Cartswap arbitrary code execution
+CascadeBadge
+CascadeBadge (glitch item)
+Castelia City passerby oversight
+Catch rate glitches (Generation II)
+Catch rate status condition oversight
+Catching the ghost
+Catching the ghost (disambiguation)
+Celadon City's unused building warp
+Celadon City origin glitch
+Celadon Mansion safe spot
+Celadon looping map glitch
+Celadon looping map trick
+Celebi Celebration glitch
+Celebi Egg glitch
+Celebi Egg glitch (party method)
+Celebi Egg trick
+Celebi Egg trick (party method)
+Celebi Trick
+Celebi egg glitch
+Celebi glitch
+Celebi glitch (party method)
+Celebi to Mew conversion
+Celebi trick
+Celebi trick (party method)
+Cerulean Gym water tile encounters oversight
+Champion Blue music glitch
+Champion Blue music muting glitch
+Champion Blue music sticking glitch
+Champion Blue music sticking glitches
+Champion Blue music sticking tricks
+Change Player Color
+Change Player Colour
+Change player color glitch
+Channeler
+Channeler (Generation I glitch Trainers)
+Chaotic name
+Charcoalt
+Charge move replacement glitch
+Charizard 'M
+Charizard 'M Trick
+Charizard M
+Charizard M Trick
+Charm glitch
+Cheat device
+Cheating device
+Chief
+Chief (disambiguation)
+Chief (unused Trainer class)
+Choice item lock glitch
+Clair gift glitch
+Cloning
+Closed flower shop
+Closed menu Select glitch
+Clu Clu Land
+Co-ordinates event
+Coastal Flooding
+Codebreaker
+Coin
+Coin Case
+Coin Case glitch
+Coin Case glitches
+Colosseum master ball glitch
+Communication error
+Communication error!
+Communication errors
+Conditional evolution
+Confusion and Substitute glitch
+Confusion item activation curiosity
+Confusion item activation glitch
+Connection Copier
+Control-stick neutral position glitch
+Control-stick neutral position problem
+Control stick neutral position problem
+Controlstick neutral position problem
+CoolTrainer-less instant victory glitch
+CoolTrainer (meta-disambiguation)
+CoolTrainer move
+CoolTrainer♀
+CoolTrainer♀ (Generation I glitch Trainers)
+CoolTrainer♀ (disambiguation)
+CoolTrainer♀ forced 'instant' victory glitch
+CoolTrainer♀ glitch
+CoolTrainer♀ move
+CoolTrainer♂
+CoolTrainer♂ (Generation I glitch Trainers)
+CoolTrainer♂ (disambiguation)
+Cool Move
+Cooltrainer
+Cooltrainer move
+Cooltrainer♀
+Coordinate warp
+Coordinates event
+Coordinates event.
+Corrupted event!
+Corruption initiator
+Counter glitch
+Counter glitch (disambiguation)
+Counter glitches
+Counter glitches (Generation I)
+Crash
+Cry distortion glitches
+Crystal box name codes
+Cue Ball
+Cue Ball (Generation I glitch Trainers)
+Custom PCM sound effects
+Custom Pokédex entries
+Custom map
+Custom maps
+Custom player sprite
+Custom sprites
+Custom text boxes
+Custom tilesets
+Cute Charm exploit
+Cute Charm glitch
+Cycling Road sign glitch
+Cycling based glitch map
+Cycling based glitch maps
+Cycling based glitch maps (Pokémon Yellow)
+DEC
+DHNhIT4 89 ゥ N
+DHNhIT4 89 ゥ N (disambiguation)
+DLC Pokémon workaround
+DMA
+DP move glitch
+DSum manipulation
+Damaged save data error messages
+Dark Red Selector
+Dark Void glitch
+Dark red selector glitch
+Darkrai and Shaymin glitch
+Darkrai and Shiemi glitch
+Darkrai and shaymin glitch
+Darkrai and shiemi glitch
+DataCrystal
+Data Crystal
+Data mining arbitrary code execution tools
+Date change exploit
+Day-Care Lad glitch
+DayDex
+Day Care Lad glitch
+Day Care signpost curiosity
+Daylight Saving Time Exploit
+Daylight Saving Time date change trap
+Daylight Saving Time exploit
+Death-warp
+Death trainer
+Debug Mode (Harry Potter and the Chamber of Secrets for PC)
+Debug menu
+Debug mode
+Debug mode (Harry Potter and the Chamber of Secrets for PC)
+Debug screen
+Debugging features within Generation I
+Debugging features within Pokémon Gold, Silver, Crystal
+Debugging features within Pokémon Gold/Silver
+Debugging features within Pokémon Gold/Silver/Crystal
+Debugging features within Pokémon Gold and Silver
+Debugging features within Pokémon Red/Blue/Yellow
+Debugging features within Pokémon Red and Green
+Debugging features within pokemon g/s/c
+Debugging features within pokemon gold/silver/crystal
+Debugging features within pokémon g/s/c
+Debugging features within pokémon gold/silver/crystal
+Dec
+DecDex
+DecDex/Data (Ruby/Sapphire)
+Decamark
+Decamark-specific glitches
+Decamark specific glitches
+Decamarks
+Decaswitch
+Decimal
+DefaultNameDex
+Defeat a Pokemon Without its Hitpoints Draining Glitch
+Defeat a Pokémon Without Draining its Hitpoints
+Defeat a Pokémon Without its Hitpoints Draining Glitch
+Defeat a pokemon without its hitpoints draining glitch
+Defeat a pokemon without its hp draining glitch
+Defeat a pokémon without its HP draining glitch
+Defeat a pokémon without its hitpoints draining glitch
+Defog HM Incorrect Sprite
+Delayed Pikachu follow
+Delayed Pikachu follow glitch
+Delayed battle glitch
+Delayed music change quirk (Pokémon Yellow)
+Delivery man out of bounds glitch
+Densetsu no Stafy
+Densetsu no Stafy 2
+Densetsu no Stafy 3
+Densetsu no Stafy 4
+Descent glitch map
+Descent glitch maps
+Designation
+Dewford Gym Footprint Glitch
+Dewford Gym footprint glitch
+DexDex
+DexDex/C:003
+DexDex/C:004
+DexDex/C:005
+DexDex/C:006
+DexDex/C:007
+DexDex/C:008
+DexDex/C:009
+DexDex/C:010
+DexDex/C:011
+DexDex/C:012
+DexDex/C:013
+DexDex/C:014
+DexDex/C:015
+DexDex/C:016
+DexDex/C:017
+DexDex/C:018
+DexDex/C:019
+DexDex/C:020
+DexDex/C:021
+DexDex/C:022
+DexDex/C:023
+DexDex/C:024
+DexDex/C:025
+DexDex/C:026
+DexDex/C:027
+DexDex/C:028
+DexDex/C:029
+DexDex/C:030
+DexDex/C:031
+DexDex/C:032
+DexDex/C:033
+DexDex/C:034
+DexDex/C:035
+DexDex/C:036
+DexDex/C:037
+DexDex/C:038
+DexDex/C:039
+DexDex/C:040
+DexDex/C:041
+DexDex/C:042
+DexDex/C:043
+DexDex/C:044
+DexDex/C:045
+DexDex/C:046
+DexDex/C:047
+DexDex/C:048
+DexDex/C:049
+DexDex/C:050
+DexDex/C:051
+DexDex/C:052
+DexDex/C:053
+DexDex/C:054
+DexDex/C:055
+DexDex/C:056
+DexDex/C:057
+DexDex/C:058
+DexDex/C:059
+DexDex/C:060
+DexDex/C:061
+DexDex/C:062
+DexDex/C:063
+DexDex/C:064
+DexDex/C:065
+DexDex/C:066
+DexDex/C:067
+DexDex/C:068
+DexDex/C:069
+DexDex/C:070
+DexDex/C:071
+DexDex/C:072
+DexDex/C:073
+DexDex/C:074
+DexDex/C:075
+DexDex/C:076
+DexDex/C:077
+DexDex/C:078
+DexDex/C:079
+DexDex/C:080
+DexDex/C:081
+DexDex/C:082
+DexDex/C:083
+DexDex/C:084
+DexDex/C:085
+DexDex/C:086
+DexDex/C:087
+DexDex/C:088
+DexDex/C:089
+DexDex/C:090
+DexDex/C:091
+DexDex/C:092
+DexDex/C:093
+DexDex/C:094
+DexDex/C:095
+DexDex/C:096
+DexDex/C:097
+DexDex/C:098
+DexDex/C:099
+DexDex/C:100
+DexDex/C:101
+DexDex/C:102
+DexDex/C:103
+DexDex/C:104
+DexDex/C:105
+DexDex/C:106
+DexDex/C:107
+DexDex/C:108
+DexDex/C:109
+DexDex/C:110
+DexDex/C:111
+DexDex/C:112
+DexDex/C:113
+DexDex/C:114
+DexDex/C:115
+DexDex/C:116
+DexDex/C:117
+DexDex/C:118
+DexDex/C:119
+DexDex/C:120
+DexDex/C:121
+DexDex/C:122
+DexDex/C:123
+DexDex/C:124
+DexDex/C:125
+DexDex/C:126
+DexDex/C:127
+DexDex/C:128
+DexDex/C:129
+DexDex/C:130
+DexDex/C:131
+DexDex/C:132
+DexDex/C:133
+DexDex/C:134
+DexDex/C:135
+DexDex/C:136
+DexDex/C:137
+DexDex/C:138
+DexDex/C:139
+DexDex/C:140
+DexDex/C:141
+DexDex/C:142
+DexDex/C:143
+DexDex/C:144
+DexDex/C:145
+DexDex/C:146
+DexDex/C:147
+DexDex/C:148
+DexDex/C:149
+DexDex/C:150
+DexDex/C:151
+DexDex/C:152
+DexDex/C:153
+DexDex/C:154
+DexDex/C:155
+DexDex/C:156
+DexDex/C:157
+DexDex/C:158
+DexDex/C:159
+DexDex/C:160
+DexDex/C:161
+DexDex/C:162
+DexDex/C:163
+DexDex/C:164
+DexDex/C:165
+DexDex/C:166
+DexDex/C:167
+DexDex/C:168
+DexDex/C:169
+DexDex/C:170
+DexDex/C:171
+DexDex/C:172
+DexDex/C:173
+DexDex/C:174
+DexDex/C:175
+DexDex/C:176
+DexDex/C:177
+DexDex/C:178
+DexDex/C:179
+DexDex/C:180
+DexDex/C:181
+DexDex/C:182
+DexDex/C:183
+DexDex/C:184
+DexDex/C:185
+DexDex/C:186
+DexDex/C:187
+DexDex/C:188
+DexDex/C:189
+DexDex/C:190
+DexDex/C:191
+DexDex/C:192
+DexDex/C:193
+DexDex/C:194
+DexDex/C:195
+DexDex/C:196
+DexDex/C:197
+DexDex/C:198
+DexDex/C:199
+DexDex/C:200
+DexDex/C:201
+DexDex/C:202
+DexDex/C:203
+DexDex/C:204
+DexDex/C:205
+DexDex/C:206
+DexDex/C:207
+DexDex/C:208
+DexDex/C:209
+DexDex/C:210
+DexDex/C:211
+DexDex/C:212
+DexDex/C:213
+DexDex/C:214
+DexDex/C:215
+DexDex/C:216
+DexDex/C:217
+DexDex/C:218
+DexDex/C:219
+DexDex/C:220
+DexDex/C:221
+DexDex/C:222
+DexDex/C:223
+DexDex/C:224
+DexDex/C:225
+DexDex/C:226
+DexDex/C:227
+DexDex/C:228
+DexDex/C:229
+DexDex/C:230
+DexDex/C:231
+DexDex/C:232
+DexDex/C:233
+DexDex/C:234
+DexDex/C:235
+DexDex/C:236
+DexDex/C:237
+DexDex/C:238
+DexDex/C:239
+DexDex/C:240
+DexDex/C:241
+DexDex/C:242
+DexDex/C:243
+DexDex/C:244
+DexDex/C:245
+DexDex/C:246
+DexDex/C:247
+DexDex/C:248
+DexDex/C:249
+DexDex/C:250
+DexDex/C:251
+DexDex/C:252
+DexDex/C:253
+DexDex/C:254
+DexDex/C:255
+DexDex/GS:003
+DexDex/GS:004
+DexDex/GS:005
+DexDex/GS:006
+DexDex/GS:007
+DexDex/GS:007 (Nintendo 3DS Virtual Console)
+DexDex/GS:008
+DexDex/GS:009
+DexDex/GS:010
+DexDex/GS:011
+DexDex/GS:012
+DexDex/GS:013
+DexDex/GS:014
+DexDex/GS:015
+DexDex/GS:016
+DexDex/GS:017
+DexDex/GS:018
+DexDex/GS:019
+DexDex/GS:020
+DexDex/GS:021
+DexDex/GS:022
+DexDex/GS:023
+DexDex/GS:024
+DexDex/GS:025
+DexDex/GS:026
+DexDex/GS:027
+DexDex/GS:028
+DexDex/GS:029
+DexDex/GS:029 (Nintendo 3DS Virtual Console)
+DexDex/GS:030
+DexDex/GS:031
+DexDex/GS:032
+DexDex/GS:033
+DexDex/GS:034
+DexDex/GS:035
+DexDex/GS:036
+DexDex/GS:037
+DexDex/GS:038
+DexDex/GS:039
+DexDex/GS:040
+DexDex/GS:041
+DexDex/GS:042
+DexDex/GS:043
+DexDex/GS:044
+DexDex/GS:045
+DexDex/GS:046
+DexDex/GS:047
+DexDex/GS:048
+DexDex/GS:049
+DexDex/GS:050
+DexDex/GS:051
+DexDex/GS:052
+DexDex/GS:053
+DexDex/GS:054
+DexDex/GS:055
+DexDex/GS:056
+DexDex/GS:057
+DexDex/GS:058
+DexDex/GS:059
+DexDex/GS:060
+DexDex/GS:061
+DexDex/GS:062
+DexDex/GS:063
+DexDex/GS:064
+DexDex/GS:065
+DexDex/GS:066
+DexDex/GS:067
+DexDex/GS:068
+DexDex/GS:069
+DexDex/GS:070
+DexDex/GS:071
+DexDex/GS:072
+DexDex/GS:073
+DexDex/GS:074
+DexDex/GS:075
+DexDex/GS:076
+DexDex/GS:077
+DexDex/GS:078
+DexDex/GS:079
+DexDex/GS:080
+DexDex/GS:081
+DexDex/GS:082
+DexDex/GS:083
+DexDex/GS:084
+DexDex/GS:085
+DexDex/GS:086
+DexDex/GS:087
+DexDex/GS:088
+DexDex/GS:089
+DexDex/GS:090
+DexDex/GS:091
+DexDex/GS:092
+DexDex/GS:093
+DexDex/GS:094
+DexDex/GS:095
+DexDex/GS:096
+DexDex/GS:097
+DexDex/GS:098
+DexDex/GS:099
+DexDex/GS:100
+DexDex/GS:101
+DexDex/GS:102
+DexDex/GS:103
+DexDex/GS:104
+DexDex/GS:105
+DexDex/GS:106
+DexDex/GS:107
+DexDex/GS:108
+DexDex/GS:109
+DexDex/GS:110
+DexDex/GS:111
+DexDex/GS:112
+DexDex/GS:113
+DexDex/GS:114
+DexDex/GS:115
+DexDex/GS:116
+DexDex/GS:117
+DexDex/GS:118
+DexDex/GS:119
+DexDex/GS:120
+DexDex/GS:121
+DexDex/GS:122
+DexDex/GS:123
+DexDex/GS:124
+DexDex/GS:125
+DexDex/GS:126
+DexDex/GS:127
+DexDex/GS:128
+DexDex/GS:129
+DexDex/GS:130
+DexDex/GS:131
+DexDex/GS:132
+DexDex/GS:133
+DexDex/GS:134
+DexDex/GS:135
+DexDex/GS:136
+DexDex/GS:137
+DexDex/GS:138
+DexDex/GS:139
+DexDex/GS:140
+DexDex/GS:141
+DexDex/GS:142
+DexDex/GS:143
+DexDex/GS:144
+DexDex/GS:145
+DexDex/GS:146
+DexDex/GS:147
+DexDex/GS:148
+DexDex/GS:149
+DexDex/GS:150
+DexDex/GS:151
+DexDex/GS:152
+DexDex/GS:153
+DexDex/GS:154
+DexDex/GS:155
+DexDex/GS:156
+DexDex/GS:157
+DexDex/GS:158
+DexDex/GS:159
+DexDex/GS:160
+DexDex/GS:161
+DexDex/GS:162
+DexDex/GS:163
+DexDex/GS:164
+DexDex/GS:165
+DexDex/GS:166
+DexDex/GS:167
+DexDex/GS:168
+DexDex/GS:169
+DexDex/GS:170
+DexDex/GS:171
+DexDex/GS:172
+DexDex/GS:173
+DexDex/GS:174
+DexDex/GS:175
+DexDex/GS:176
+DexDex/GS:177
+DexDex/GS:178
+DexDex/GS:179
+DexDex/GS:180
+DexDex/GS:181
+DexDex/GS:182
+DexDex/GS:183
+DexDex/GS:184
+DexDex/GS:185
+DexDex/GS:186
+DexDex/GS:187
+DexDex/GS:188
+DexDex/GS:189
+DexDex/GS:190
+DexDex/GS:191
+DexDex/GS:192
+DexDex/GS:193
+DexDex/GS:194
+DexDex/GS:195
+DexDex/GS:196
+DexDex/GS:197
+DexDex/GS:198
+DexDex/GS:199
+DexDex/GS:200
+DexDex/GS:201
+DexDex/GS:202
+DexDex/GS:203
+DexDex/GS:204
+DexDex/GS:205
+DexDex/GS:206
+DexDex/GS:207
+DexDex/GS:208
+DexDex/GS:209
+DexDex/GS:210
+DexDex/GS:211
+DexDex/GS:212
+DexDex/GS:213
+DexDex/GS:214
+DexDex/GS:215
+DexDex/GS:216
+DexDex/GS:217
+DexDex/GS:218
+DexDex/GS:219
+DexDex/GS:220
+DexDex/GS:221
+DexDex/GS:222
+DexDex/GS:223
+DexDex/GS:224
+DexDex/GS:225
+DexDex/GS:226
+DexDex/GS:227
+DexDex/GS:228
+DexDex/GS:229
+DexDex/GS:230
+DexDex/GS:231
+DexDex/GS:232
+DexDex/GS:233
+DexDex/GS:234
+DexDex/GS:235
+DexDex/GS:236
+DexDex/GS:237
+DexDex/GS:238
+DexDex/GS:239
+DexDex/GS:240
+DexDex/GS:241
+DexDex/GS:242
+DexDex/GS:243
+DexDex/GS:244
+DexDex/GS:245
+DexDex/GS:246
+DexDex/GS:247
+DexDex/GS:248
+DexDex/GS:249
+DexDex/GS:250
+DexDex/GS:251
+DexDex/GS:252
+DexDex/GS:253
+DexDex/GS:254
+DexDex/GS:255
+DexNav Taillow curiosity
+Diamond dust
+Differences between GBC and SGB glitch sprites
+Dig Rocket battle skip
+Diploma curiosity
+Disabling NPC animations
+Disabling NPC animations glitch
+Disappearing Bicycle glitch
+Disappearing NPC glitch
+Disappearing bike glitch
+Disassembly
+Disguised chef Ditto glitch
+Displacing a Trainer into the grass without cheats
+Displacing a Trainer into the grass without cheats glitch
+Ditto DV manipulation
+Ditto Glitch
+Ditto Trick
+Ditto glitch
+Ditto move switch glitch
+Ditto trick
+Dokokashira door glitch
+DollDex
+Domo
+Dorado glitch
+Dorado trick
+Double Blue glitch
+Double Distort Cooltrainer
+Double Gary glitch
+Double corruption (Generation III)
+Double distort CoolTrainer♀ corruption
+Dragon Ball Z: Buu's Fury
+Dragon Fang/Dragon Scale effect glitch
+Dragon Fang effect glitch
+Draining hitpoints animation glitch
+Drasna Aura Sphere Glitch
+Drasna Aura Sphere glitch
+Dratini glitch
+Draw audio quirk
+Dress-up glitch
+Dress-up hiker glitch
+Dress up Hiker glitch
+Dress up glitch
+Dress up hiker glitch
+Dry item underflow glitch
+Dry underflow
+Dry underflow glitch
+Dual-type damage misinformation
+Dude color palette curiosity
+Dude full box glitch
+Dude glitch
+Duplicate key items glitch
+Dword
+ERROR!
+Early English promotional Pokémon names
+EarthBadge
+EarthBadge (glitch item)
+Easter egg
+Echo RAM
+Eevee Factory
+Eevee Factory glitch
+Egg
+Egg (disambiguation)
+Egg determination glitch
+Egg held item glitch
+Egg nature glitch
+ElevatorDex
+Elite Four door glitch
+Elite four door glitch
+Empty Pokémon list glitch
+Empty party glitch
+Encounter glitch Pokémon (Generation IV)
+Engineer
+Engineer (Generation I glitch Trainers)
+Engineer (disambiguation)
+English grass/rock Surfing glitch
+Enigma Berry
+Enter Fortree Gym without the Devon Scope glitch
+Equivalent Trade
+Equivalent trade Glitch Pokémon
+Equivalent trade glitch Pokémon
+Equivalent trade glitch pokemon
+Erika
+Erika (Generation I glitch Trainers)
+Error
+Error!
+Error (disambiguation)
+Error code
+Error code (Generations I and II)
+Error codes
+Error codes (Generations I and II)
+Error handler
+Error message
+Error trap
+Error trapper
+Error traps
+Error traps and anti-cheating traps
+Error traps for abnormal Pokémon
+Error traps for corrupted save data
+Error traps for damaged save data
+Escalator glitch
+Escape Rope sprite handling glitch
+Escape sprite handling glitch
+Eternal Flower Floette
+Event data debugging messages
+Evolution animation glitch
+Evolution audio glitch (Gold/Silver Nintendo Space World 1997 demo)
+Evolution item last item glitch
+Evolution move-learning glitch
+Evolution move-learning script bug
+Evolution move-learning script glitch
+Evolution move-learning simultaneous A+B press glitch
+Evolution move learning glitch
+Evolution move learning simultaneous A+B press glitch
+Evolve Trade Evolution Pokémon Without Trading
+Evolve Without an Evolution Stone
+Evolve trade evolution Pokémon without trading
+Evolve trade evolution pokemon without trading
+Evolve without an Evolution Stone
+Evolve without an evolutionary stone
+Evolving Raichu
+Evolving Wailmer Surf glitch
+Excessive HP
+Excessive doll arrangement glitch
+Executing large programs with arbitrary code execution
+Exp. All glitch
+Expanded Pokédex
+Expanded bag item documentation (Generation I)
+Expanded inventory
+Expanded item pack
+Expanded items pack
+Expanded party
+Expanded party Safari Zone warp
+Expanded party encounter table manipulation
+Experience division by 0 glitch
+Experience division by zero glitch
+Experience underflow glitch
+Exploit
+Exploit (disambiguation)
+Exploitation of the game controller's neutral position
+Exploitation of the game controllers neutral position
+Extended glitch Pokémon sprite
+Extended glitch Pokémon sprites
+Extended mew trick
+External device
+F9 box-set trick
+F m
+F m (disambiguation)
+F q ,
+FacingDex
+Facing direction arbitrary code execution
+Fainted lead experience oversight
+Fake Sinnoh
+Fake Tower Tycoon glitch
+Fake overworld red-bar
+Fake overworld red bar
+FalconBadge
+False PP Up adding meta-map script
+False PP Up adding meta-map script glitches
+False PP Up inventory filling map script glitches
+False type
+False types
+Family
+FamilyDex
+FamilyDex/RB:152
+Fast cloning (Generation III)
+Fast inverse cloning (Generation III)
+Female symbol
+FieldMoveDex
+FieldMoveDex/RB:003
+FieldMoveDex/RB:010
+FieldMoveDex/RB:011
+FieldMoveDex/RB:012
+FieldMoveDex/RB:013
+FieldMoveDex/RB:014
+FieldMoveDex/RB:015
+FieldMoveDex/RB:016
+FieldMoveDex/RB:017
+FieldMoveDex/RB:018
+FieldMoveDex/RB:019
+FieldMoveDex/RB:020
+FieldMoveDex/RB:021
+FieldMoveDex/RB:022
+FieldMoveDex/RB:023
+FieldMoveDex/RB:024
+FieldMoveDex/RB:025
+FieldMoveDex/RB:026
+FieldMoveDex/RB:027
+FieldMoveDex/RB:028
+FieldMoveDex/RB:029
+FieldMoveDex/RB:030
+FieldMoveDex/RB:031
+FieldMoveDex/RB:032
+FieldMoveDex/RB:033
+Fight Safari Zone Pokémon glitch
+Fight Safari Zone Pokémon trick
+Fire-type Magneton glitch (Stadium)
+Fire Blast large Pokémon back alley glitch
+Fire Spin glitch
+Fire spin glitch
+Fisherman
+Fisherman (Generation I glitch Trainers)
+Fissure glitch
+Flabebe cry glitch
+Flabébé cry glitch
+Flag
+Flag Glitch
+Flag glitch
+Flags
+Flareth
+Flipped sprites glitch
+Floating Walking Pokémon glitch
+Floating walking Pokémon glitch
+Floating walking Pokémon glitch (disambiguation)
+Floating walking Pokémon glitch (menu variation)
+Floating walking Pokémon glitch (poison variation)
+Floating walking pokemon glitch
+Floating walking pokémon glitch
+Flying walking pokemon glitch
+Flying walking pokémon glitch
+Focus Energy Glitch
+Focus Energy glitch
+Focus Energy oversight
+Focus Punch glitch
+Following Pikachu happiness oversight
+Footing glitch
+Footprint Glitch
+Footprint glitch
+Forced switch phenomena
+Fossil MissingNo.
+Fossil conversion glitch
+Fossil conversion glitch (Japanese)
+Fossil conversion glitch (Red/Green/Blue)
+Fossil conversion glitch (disambiguation)
+Freefall glitch
+Freeze
+Freeze glitch map
+Freeze glitch maps
+Freeze sprite glitch Pokémon
+Freeze tile
+Freeze top move selection glitch
+Freezing
+Freezing Pikachu's sprite glitch
+Friendly Competition pre-registration glitch
+Friendship Evolution glitch
+Friendship overflow
+Friendship underflow
+Fuchsia City Pokémon Center receptionist curiosity
+Fuchsia City misplaced 'sign' text glitch
+G'MP
+G/S/C Beta Olivine House
+G/S/C Beta Safari Zone
+GB Programming
+GBz80 to Items
+GCL
+GCL Version
+GMP
+GS
+GTS filter glitch
+GTS morphing glitch
+GTS morphing glitch (Generation IV)
+GTS palette glitch
+GTS spoofing
+GTS vanishing glitch
+GTS wrong palette glitch
+G g
+Gambler
+Gambler (Generation I glitch Trainers)
+Game-altering device
+GameShark
+Game Boy Advance freeze sound
+Game Boy Camera
+Game Boy cartridge tilting
+Game Freak logo artefacts
+Game Freak logo artifacts
+Game Genie
+Game Save Error (Lumiose City)
+Game altering device
+Game crash
+Game freeze
+Game save
+Game save error
+Game save error (disambiguation)
+Gamer
+Gameshark
+Gameshark code
+Gary
+Gary (disambiguation)
+Gbz80aid
+Generation III bit set glitch
+Generation III glitch Egg
+Generation III item duplication glitch
+Generation II Safari Zone
+Generation II cry distortions
+Generation II glitch Egg
+Generation II glitch Egg (Crystal)
+Generation II glitch Egg (disambiguation)
+Generation IV glitch Egg
+Generation IV hybrid
+Generation I and II international linking
+Generation I item codes
+Generation I max stat glitch
+Generation I max stat trick
+Generation I maximum stat glitch
+Generation I move AI glitch
+Generation VIII master glitch directory
+Generation VII 805+ glitch Pokémon
+Generation VII glitch Egg
+Generation VI 724+ glitch Pokémon
+Generation VI GTS Glitch
+Generation VI glitch Egg
+Generation V glitch Egg
+Gentleman
+Gentleman (Generation I glitch Trainers)
+Gentleman (disambiguation)
+Gentleman walks through fence
+Get All Three Starters
+Get Glitch Items Using Old Man Glitch
+Get Infinite Massages
+Get Master Ball without fighting Giovanni
+Get Past Marowak Ghost Without a Silph Scope
+Get Stuck in a Wall
+Get all three starters (Generation II)
+Get glitch items using Trainer escape glitch
+Get glitch items using Trainer escape glitch (Yellow)
+Get glitch items using left-facing shore tile glitch
+Get glitch items using left-facing shore tile glitch (Red/Blue)
+Get glitch items using old man glitch
+Get stuck in a wall
+Ghost Bicycle glitch
+Ghost Bike glitch
+Ghost MissingNo.
+Giovanni
+Giovanni (Generation I glitch Trainers)
+Giratina Forme change stat glitch
+Giratina Origin Forme glitch
+Glitch
+GlitchDex
+GlitchDex/C:000
+GlitchDex/C:252
+GlitchDex/C:253
+GlitchDex/C:254
+GlitchDex/C:255
+GlitchDex/G:253
+GlitchDex/GS:000
+GlitchDex/GS:252
+GlitchDex/GS:253
+GlitchDex/GS:253 (disambiguation)
+GlitchDex/GS:254
+GlitchDex/GS:255
+GlitchDex/RB:000
+GlitchDex/RB:191
+GlitchDex/RB:192
+GlitchDex/RB:193
+GlitchDex/RB:194
+GlitchDex/RB:195
+GlitchDex/RB:196
+GlitchDex/RB:197
+GlitchDex/RB:198
+GlitchDex/RB:199
+GlitchDex/RB:200
+GlitchDex/RB:201
+GlitchDex/RB:202
+GlitchDex/RB:203
+GlitchDex/RB:204
+GlitchDex/RB:205
+GlitchDex/RB:206
+GlitchDex/RB:207
+GlitchDex/RB:208
+GlitchDex/RB:209
+GlitchDex/RB:210
+GlitchDex/RB:211
+GlitchDex/RB:212
+GlitchDex/RB:213
+GlitchDex/RB:214
+GlitchDex/RB:215
+GlitchDex/RB:216
+GlitchDex/RB:217
+GlitchDex/RB:218
+GlitchDex/RB:219
+GlitchDex/RB:220
+GlitchDex/RB:221
+GlitchDex/RB:222
+GlitchDex/RB:223
+GlitchDex/RB:224
+GlitchDex/RB:225
+GlitchDex/RB:226
+GlitchDex/RB:227
+GlitchDex/RB:228
+GlitchDex/RB:229
+GlitchDex/RB:230
+GlitchDex/RB:231
+GlitchDex/RB:232
+GlitchDex/RB:233
+GlitchDex/RB:234
+GlitchDex/RB:235
+GlitchDex/RB:236
+GlitchDex/RB:237
+GlitchDex/RB:238
+GlitchDex/RB:239
+GlitchDex/RB:240
+GlitchDex/RB:241
+GlitchDex/RB:242
+GlitchDex/RB:243
+GlitchDex/RB:244
+GlitchDex/RB:245
+GlitchDex/RB:246
+GlitchDex/RB:247
+GlitchDex/RB:248
+GlitchDex/RB:249
+GlitchDex/RB:250
+GlitchDex/RB:251
+GlitchDex/RB:252
+GlitchDex/RB:253
+GlitchDex/RB:254
+GlitchDex/RB:255
+GlitchDex/S:253
+GlitchDex/Y:000
+GlitchDex/Y:191
+GlitchDex/Y:192
+GlitchDex/Y:193
+GlitchDex/Y:194
+GlitchDex/Y:195
+GlitchDex/Y:196
+GlitchDex/Y:197
+GlitchDex/Y:198
+GlitchDex/Y:199
+GlitchDex/Y:200
+GlitchDex/Y:201
+GlitchDex/Y:202
+GlitchDex/Y:203
+GlitchDex/Y:204
+GlitchDex/Y:205
+GlitchDex/Y:206
+GlitchDex/Y:207
+GlitchDex/Y:208
+GlitchDex/Y:209
+GlitchDex/Y:210
+GlitchDex/Y:211
+GlitchDex/Y:212
+GlitchDex/Y:213
+GlitchDex/Y:214
+GlitchDex/Y:215
+GlitchDex/Y:216
+GlitchDex/Y:217
+GlitchDex/Y:218
+GlitchDex/Y:219
+GlitchDex/Y:220
+GlitchDex/Y:221
+GlitchDex/Y:222
+GlitchDex/Y:223
+GlitchDex/Y:224
+GlitchDex/Y:225
+GlitchDex/Y:226
+GlitchDex/Y:227
+GlitchDex/Y:228
+GlitchDex/Y:229
+GlitchDex/Y:230
+GlitchDex/Y:231
+GlitchDex/Y:232
+GlitchDex/Y:233
+GlitchDex/Y:234
+GlitchDex/Y:235
+GlitchDex/Y:236
+GlitchDex/Y:237
+GlitchDex/Y:238
+GlitchDex/Y:239
+GlitchDex/Y:240
+GlitchDex/Y:241
+GlitchDex/Y:242
+GlitchDex/Y:243
+GlitchDex/Y:244
+GlitchDex/Y:245
+GlitchDex/Y:246
+GlitchDex/Y:247
+GlitchDex/Y:248
+GlitchDex/Y:249
+GlitchDex/Y:250
+GlitchDex/Y:251
+GlitchDex/Y:252
+GlitchDex/Y:253
+GlitchDex/Y:254
+GlitchDex/Y:255
+GlitchDexDE
+GlitchDexDE/C:253
+GlitchDexDE/GS:253
+GlitchDexDE/RB:000
+GlitchDexDE/RB:191
+GlitchDexDE/RB:192
+GlitchDexDE/RB:193
+GlitchDexDE/RB:194
+GlitchDexDE/RB:195
+GlitchDexDE/RB:196
+GlitchDexDE/RB:197
+GlitchDexDE/RB:198
+GlitchDexDE/RB:199
+GlitchDexDE/RB:200
+GlitchDexDE/RB:201
+GlitchDexDE/RB:202
+GlitchDexDE/RB:203
+GlitchDexDE/RB:204
+GlitchDexDE/RB:205
+GlitchDexDE/RB:206
+GlitchDexDE/RB:207
+GlitchDexDE/RB:208
+GlitchDexDE/RB:209
+GlitchDexDE/RB:210
+GlitchDexDE/RB:211
+GlitchDexDE/RB:212
+GlitchDexDE/RB:213
+GlitchDexDE/RB:214
+GlitchDexDE/RB:215
+GlitchDexDE/RB:216
+GlitchDexDE/RB:217
+GlitchDexDE/RB:218
+GlitchDexDE/RB:219
+GlitchDexDE/RB:220
+GlitchDexDE/RB:221
+GlitchDexDE/RB:222
+GlitchDexDE/RB:223
+GlitchDexDE/RB:224
+GlitchDexDE/RB:225
+GlitchDexDE/RB:226
+GlitchDexDE/RB:227
+GlitchDexDE/RB:228
+GlitchDexDE/RB:229
+GlitchDexDE/RB:230
+GlitchDexDE/RB:231
+GlitchDexDE/RB:232
+GlitchDexDE/RB:233
+GlitchDexDE/RB:234
+GlitchDexDE/RB:235
+GlitchDexDE/RB:236
+GlitchDexDE/RB:237
+GlitchDexDE/RB:238
+GlitchDexDE/RB:239
+GlitchDexDE/RB:240
+GlitchDexDE/RB:241
+GlitchDexDE/RB:242
+GlitchDexDE/RB:243
+GlitchDexDE/RB:244
+GlitchDexDE/RB:245
+GlitchDexDE/RB:246
+GlitchDexDE/RB:247
+GlitchDexDE/RB:248
+GlitchDexDE/RB:249
+GlitchDexDE/RB:250
+GlitchDexDE/RB:251
+GlitchDexDE/RB:252
+GlitchDexDE/RB:253
+GlitchDexDE/RB:254
+GlitchDexDE/RB:255
+GlitchDexDE/Y:000
+GlitchDexDE/Y:191
+GlitchDexDE/Y:192
+GlitchDexDE/Y:193
+GlitchDexDE/Y:194
+GlitchDexDE/Y:195
+GlitchDexDE/Y:196
+GlitchDexDE/Y:197
+GlitchDexDE/Y:198
+GlitchDexDE/Y:199
+GlitchDexDE/Y:200
+GlitchDexDE/Y:201
+GlitchDexDE/Y:202
+GlitchDexDE/Y:203
+GlitchDexDE/Y:204
+GlitchDexDE/Y:205
+GlitchDexDE/Y:206
+GlitchDexDE/Y:207
+GlitchDexDE/Y:208
+GlitchDexDE/Y:209
+GlitchDexDE/Y:210
+GlitchDexDE/Y:211
+GlitchDexDE/Y:212
+GlitchDexDE/Y:213
+GlitchDexDE/Y:214
+GlitchDexDE/Y:215
+GlitchDexDE/Y:216
+GlitchDexDE/Y:217
+GlitchDexDE/Y:218
+GlitchDexDE/Y:219
+GlitchDexDE/Y:220
+GlitchDexDE/Y:221
+GlitchDexDE/Y:222
+GlitchDexDE/Y:223
+GlitchDexDE/Y:224
+GlitchDexDE/Y:225
+GlitchDexDE/Y:226
+GlitchDexDE/Y:227
+GlitchDexDE/Y:228
+GlitchDexDE/Y:229
+GlitchDexDE/Y:230
+GlitchDexDE/Y:231
+GlitchDexDE/Y:232
+GlitchDexDE/Y:233
+GlitchDexDE/Y:234
+GlitchDexDE/Y:235
+GlitchDexDE/Y:236
+GlitchDexDE/Y:237
+GlitchDexDE/Y:238
+GlitchDexDE/Y:239
+GlitchDexDE/Y:240
+GlitchDexDE/Y:241
+GlitchDexDE/Y:242
+GlitchDexDE/Y:243
+GlitchDexDE/Y:244
+GlitchDexDE/Y:245
+GlitchDexDE/Y:246
+GlitchDexDE/Y:247
+GlitchDexDE/Y:248
+GlitchDexDE/Y:249
+GlitchDexDE/Y:250
+GlitchDexDE/Y:251
+GlitchDexDE/Y:252
+GlitchDexDE/Y:253
+GlitchDexDE/Y:254
+GlitchDexDE/Y:255
+GlitchDexES
+GlitchDexES/C:253
+GlitchDexES/GS:253
+GlitchDexES/RB:000
+GlitchDexES/RB:191
+GlitchDexES/RB:192
+GlitchDexES/RB:193
+GlitchDexES/RB:194
+GlitchDexES/RB:195
+GlitchDexES/RB:196
+GlitchDexES/RB:197
+GlitchDexES/RB:198
+GlitchDexES/RB:199
+GlitchDexES/RB:200
+GlitchDexES/RB:201
+GlitchDexES/RB:202
+GlitchDexES/RB:203
+GlitchDexES/RB:204
+GlitchDexES/RB:205
+GlitchDexES/RB:206
+GlitchDexES/RB:207
+GlitchDexES/RB:208
+GlitchDexES/RB:209
+GlitchDexES/RB:210
+GlitchDexES/RB:211
+GlitchDexES/RB:212
+GlitchDexES/RB:213
+GlitchDexES/RB:214
+GlitchDexES/RB:215
+GlitchDexES/RB:216
+GlitchDexES/RB:217
+GlitchDexES/RB:218
+GlitchDexES/RB:219
+GlitchDexES/RB:220
+GlitchDexES/RB:221
+GlitchDexES/RB:222
+GlitchDexES/RB:223
+GlitchDexES/RB:224
+GlitchDexES/RB:225
+GlitchDexES/RB:226
+GlitchDexES/RB:227
+GlitchDexES/RB:228
+GlitchDexES/RB:229
+GlitchDexES/RB:230
+GlitchDexES/RB:231
+GlitchDexES/RB:232
+GlitchDexES/RB:233
+GlitchDexES/RB:234
+GlitchDexES/RB:235
+GlitchDexES/RB:236
+GlitchDexES/RB:237
+GlitchDexES/RB:238
+GlitchDexES/RB:239
+GlitchDexES/RB:240
+GlitchDexES/RB:241
+GlitchDexES/RB:242
+GlitchDexES/RB:243
+GlitchDexES/RB:244
+GlitchDexES/RB:245
+GlitchDexES/RB:246
+GlitchDexES/RB:247
+GlitchDexES/RB:248
+GlitchDexES/RB:249
+GlitchDexES/RB:250
+GlitchDexES/RB:251
+GlitchDexES/RB:252
+GlitchDexES/RB:253
+GlitchDexES/RB:254
+GlitchDexES/RB:255
+GlitchDexES/Y:000
+GlitchDexES/Y:191
+GlitchDexES/Y:192
+GlitchDexES/Y:193
+GlitchDexES/Y:194
+GlitchDexES/Y:195
+GlitchDexES/Y:196
+GlitchDexES/Y:197
+GlitchDexES/Y:198
+GlitchDexES/Y:199
+GlitchDexES/Y:200
+GlitchDexES/Y:201
+GlitchDexES/Y:202
+GlitchDexES/Y:203
+GlitchDexES/Y:204
+GlitchDexES/Y:205
+GlitchDexES/Y:206
+GlitchDexES/Y:207
+GlitchDexES/Y:208
+GlitchDexES/Y:209
+GlitchDexES/Y:210
+GlitchDexES/Y:211
+GlitchDexES/Y:212
+GlitchDexES/Y:213
+GlitchDexES/Y:214
+GlitchDexES/Y:215
+GlitchDexES/Y:216
+GlitchDexES/Y:217
+GlitchDexES/Y:218
+GlitchDexES/Y:219
+GlitchDexES/Y:220
+GlitchDexES/Y:221
+GlitchDexES/Y:222
+GlitchDexES/Y:223
+GlitchDexES/Y:224
+GlitchDexES/Y:225
+GlitchDexES/Y:226
+GlitchDexES/Y:227
+GlitchDexES/Y:228
+GlitchDexES/Y:229
+GlitchDexES/Y:230
+GlitchDexES/Y:231
+GlitchDexES/Y:232
+GlitchDexES/Y:233
+GlitchDexES/Y:234
+GlitchDexES/Y:235
+GlitchDexES/Y:236
+GlitchDexES/Y:237
+GlitchDexES/Y:238
+GlitchDexES/Y:239
+GlitchDexES/Y:240
+GlitchDexES/Y:241
+GlitchDexES/Y:242
+GlitchDexES/Y:243
+GlitchDexES/Y:244
+GlitchDexES/Y:245
+GlitchDexES/Y:246
+GlitchDexES/Y:247
+GlitchDexES/Y:248
+GlitchDexES/Y:249
+GlitchDexES/Y:250
+GlitchDexES/Y:251
+GlitchDexES/Y:252
+GlitchDexES/Y:253
+GlitchDexES/Y:254
+GlitchDexES/Y:255
+GlitchDexFR
+GlitchDexFR/C:253
+GlitchDexFR/GS:000
+GlitchDexFR/GS:253
+GlitchDexFR/GS:255
+GlitchDexFR/RB:000
+GlitchDexFR/RB:191
+GlitchDexFR/RB:192
+GlitchDexFR/RB:193
+GlitchDexFR/RB:194
+GlitchDexFR/RB:195
+GlitchDexFR/RB:196
+GlitchDexFR/RB:197
+GlitchDexFR/RB:198
+GlitchDexFR/RB:199
+GlitchDexFR/RB:200
+GlitchDexFR/RB:201
+GlitchDexFR/RB:202
+GlitchDexFR/RB:203
+GlitchDexFR/RB:204
+GlitchDexFR/RB:205
+GlitchDexFR/RB:206
+GlitchDexFR/RB:207
+GlitchDexFR/RB:208
+GlitchDexFR/RB:209
+GlitchDexFR/RB:210
+GlitchDexFR/RB:211
+GlitchDexFR/RB:212
+GlitchDexFR/RB:213
+GlitchDexFR/RB:214
+GlitchDexFR/RB:215
+GlitchDexFR/RB:216
+GlitchDexFR/RB:217
+GlitchDexFR/RB:218
+GlitchDexFR/RB:219
+GlitchDexFR/RB:220
+GlitchDexFR/RB:221
+GlitchDexFR/RB:222
+GlitchDexFR/RB:223
+GlitchDexFR/RB:224
+GlitchDexFR/RB:225
+GlitchDexFR/RB:226
+GlitchDexFR/RB:227
+GlitchDexFR/RB:228
+GlitchDexFR/RB:229
+GlitchDexFR/RB:230
+GlitchDexFR/RB:231
+GlitchDexFR/RB:232
+GlitchDexFR/RB:233
+GlitchDexFR/RB:234
+GlitchDexFR/RB:235
+GlitchDexFR/RB:236
+GlitchDexFR/RB:237
+GlitchDexFR/RB:238
+GlitchDexFR/RB:239
+GlitchDexFR/RB:240
+GlitchDexFR/RB:241
+GlitchDexFR/RB:242
+GlitchDexFR/RB:243
+GlitchDexFR/RB:244
+GlitchDexFR/RB:245
+GlitchDexFR/RB:246
+GlitchDexFR/RB:247
+GlitchDexFR/RB:248
+GlitchDexFR/RB:249
+GlitchDexFR/RB:250
+GlitchDexFR/RB:251
+GlitchDexFR/RB:252
+GlitchDexFR/RB:253
+GlitchDexFR/RB:254
+GlitchDexFR/RB:255
+GlitchDexFR/Y:000
+GlitchDexFR/Y:191
+GlitchDexFR/Y:192
+GlitchDexFR/Y:193
+GlitchDexFR/Y:194
+GlitchDexFR/Y:195
+GlitchDexFR/Y:196
+GlitchDexFR/Y:197
+GlitchDexFR/Y:198
+GlitchDexFR/Y:199
+GlitchDexFR/Y:200
+GlitchDexFR/Y:201
+GlitchDexFR/Y:202
+GlitchDexFR/Y:203
+GlitchDexFR/Y:204
+GlitchDexFR/Y:205
+GlitchDexFR/Y:206
+GlitchDexFR/Y:207
+GlitchDexFR/Y:208
+GlitchDexFR/Y:209
+GlitchDexFR/Y:210
+GlitchDexFR/Y:211
+GlitchDexFR/Y:212
+GlitchDexFR/Y:213
+GlitchDexFR/Y:214
+GlitchDexFR/Y:215
+GlitchDexFR/Y:216
+GlitchDexFR/Y:217
+GlitchDexFR/Y:218
+GlitchDexFR/Y:219
+GlitchDexFR/Y:220
+GlitchDexFR/Y:221
+GlitchDexFR/Y:222
+GlitchDexFR/Y:223
+GlitchDexFR/Y:224
+GlitchDexFR/Y:225
+GlitchDexFR/Y:226
+GlitchDexFR/Y:227
+GlitchDexFR/Y:228
+GlitchDexFR/Y:229
+GlitchDexFR/Y:230
+GlitchDexFR/Y:231
+GlitchDexFR/Y:232
+GlitchDexFR/Y:233
+GlitchDexFR/Y:234
+GlitchDexFR/Y:235
+GlitchDexFR/Y:236
+GlitchDexFR/Y:237
+GlitchDexFR/Y:238
+GlitchDexFR/Y:239
+GlitchDexFR/Y:240
+GlitchDexFR/Y:241
+GlitchDexFR/Y:242
+GlitchDexFR/Y:243
+GlitchDexFR/Y:244
+GlitchDexFR/Y:245
+GlitchDexFR/Y:246
+GlitchDexFR/Y:247
+GlitchDexFR/Y:248
+GlitchDexFR/Y:249
+GlitchDexFR/Y:250
+GlitchDexFR/Y:251
+GlitchDexFR/Y:252
+GlitchDexFR/Y:253
+GlitchDexFR/Y:254
+GlitchDexFR/Y:255
+GlitchDexIT
+GlitchDexIT/C:253
+GlitchDexIT/GS:253
+GlitchDexIT/RB:000
+GlitchDexIT/RB:191
+GlitchDexIT/RB:192
+GlitchDexIT/RB:193
+GlitchDexIT/RB:194
+GlitchDexIT/RB:195
+GlitchDexIT/RB:196
+GlitchDexIT/RB:197
+GlitchDexIT/RB:198
+GlitchDexIT/RB:199
+GlitchDexIT/RB:200
+GlitchDexIT/RB:201
+GlitchDexIT/RB:202
+GlitchDexIT/RB:203
+GlitchDexIT/RB:204
+GlitchDexIT/RB:205
+GlitchDexIT/RB:206
+GlitchDexIT/RB:207
+GlitchDexIT/RB:208
+GlitchDexIT/RB:209
+GlitchDexIT/RB:210
+GlitchDexIT/RB:211
+GlitchDexIT/RB:212
+GlitchDexIT/RB:213
+GlitchDexIT/RB:214
+GlitchDexIT/RB:215
+GlitchDexIT/RB:216
+GlitchDexIT/RB:217
+GlitchDexIT/RB:218
+GlitchDexIT/RB:219
+GlitchDexIT/RB:220
+GlitchDexIT/RB:221
+GlitchDexIT/RB:222
+GlitchDexIT/RB:223
+GlitchDexIT/RB:224
+GlitchDexIT/RB:225
+GlitchDexIT/RB:226
+GlitchDexIT/RB:227
+GlitchDexIT/RB:228
+GlitchDexIT/RB:229
+GlitchDexIT/RB:230
+GlitchDexIT/RB:231
+GlitchDexIT/RB:232
+GlitchDexIT/RB:233
+GlitchDexIT/RB:234
+GlitchDexIT/RB:235
+GlitchDexIT/RB:236
+GlitchDexIT/RB:237
+GlitchDexIT/RB:238
+GlitchDexIT/RB:239
+GlitchDexIT/RB:240
+GlitchDexIT/RB:241
+GlitchDexIT/RB:242
+GlitchDexIT/RB:243
+GlitchDexIT/RB:244
+GlitchDexIT/RB:245
+GlitchDexIT/RB:246
+GlitchDexIT/RB:247
+GlitchDexIT/RB:248
+GlitchDexIT/RB:249
+GlitchDexIT/RB:250
+GlitchDexIT/RB:251
+GlitchDexIT/RB:252
+GlitchDexIT/RB:253
+GlitchDexIT/RB:254
+GlitchDexIT/RB:255
+GlitchDexIT/Y:000
+GlitchDexIT/Y:191
+GlitchDexIT/Y:192
+GlitchDexIT/Y:193
+GlitchDexIT/Y:194
+GlitchDexIT/Y:195
+GlitchDexIT/Y:196
+GlitchDexIT/Y:197
+GlitchDexIT/Y:198
+GlitchDexIT/Y:199
+GlitchDexIT/Y:200
+GlitchDexIT/Y:201
+GlitchDexIT/Y:202
+GlitchDexIT/Y:203
+GlitchDexIT/Y:204
+GlitchDexIT/Y:205
+GlitchDexIT/Y:206
+GlitchDexIT/Y:207
+GlitchDexIT/Y:208
+GlitchDexIT/Y:209
+GlitchDexIT/Y:210
+GlitchDexIT/Y:211
+GlitchDexIT/Y:212
+GlitchDexIT/Y:213
+GlitchDexIT/Y:214
+GlitchDexIT/Y:215
+GlitchDexIT/Y:216
+GlitchDexIT/Y:217
+GlitchDexIT/Y:218
+GlitchDexIT/Y:219
+GlitchDexIT/Y:220
+GlitchDexIT/Y:221
+GlitchDexIT/Y:222
+GlitchDexIT/Y:223
+GlitchDexIT/Y:224
+GlitchDexIT/Y:225
+GlitchDexIT/Y:226
+GlitchDexIT/Y:227
+GlitchDexIT/Y:228
+GlitchDexIT/Y:229
+GlitchDexIT/Y:230
+GlitchDexIT/Y:231
+GlitchDexIT/Y:232
+GlitchDexIT/Y:233
+GlitchDexIT/Y:234
+GlitchDexIT/Y:235
+GlitchDexIT/Y:236
+GlitchDexIT/Y:237
+GlitchDexIT/Y:238
+GlitchDexIT/Y:239
+GlitchDexIT/Y:240
+GlitchDexIT/Y:241
+GlitchDexIT/Y:242
+GlitchDexIT/Y:243
+GlitchDexIT/Y:244
+GlitchDexIT/Y:245
+GlitchDexIT/Y:246
+GlitchDexIT/Y:247
+GlitchDexIT/Y:248
+GlitchDexIT/Y:249
+GlitchDexIT/Y:250
+GlitchDexIT/Y:251
+GlitchDexIT/Y:252
+GlitchDexIT/Y:253
+GlitchDexIT/Y:254
+GlitchDexIT/Y:255
+GlitchDexJP
+GlitchDexJP/B:000
+GlitchDexJP/B:191
+GlitchDexJP/B:192
+GlitchDexJP/B:193
+GlitchDexJP/B:194
+GlitchDexJP/B:195
+GlitchDexJP/B:196
+GlitchDexJP/B:197
+GlitchDexJP/B:198
+GlitchDexJP/B:199
+GlitchDexJP/B:200
+GlitchDexJP/B:201
+GlitchDexJP/B:202
+GlitchDexJP/B:203
+GlitchDexJP/B:204
+GlitchDexJP/B:205
+GlitchDexJP/B:206
+GlitchDexJP/B:207
+GlitchDexJP/B:208
+GlitchDexJP/B:209
+GlitchDexJP/B:210
+GlitchDexJP/B:211
+GlitchDexJP/B:212
+GlitchDexJP/B:213
+GlitchDexJP/B:214
+GlitchDexJP/B:215
+GlitchDexJP/B:216
+GlitchDexJP/B:217
+GlitchDexJP/B:218
+GlitchDexJP/B:219
+GlitchDexJP/B:220
+GlitchDexJP/B:221
+GlitchDexJP/B:222
+GlitchDexJP/B:223
+GlitchDexJP/B:224
+GlitchDexJP/B:225
+GlitchDexJP/B:226
+GlitchDexJP/B:227
+GlitchDexJP/B:228
+GlitchDexJP/B:229
+GlitchDexJP/B:230
+GlitchDexJP/B:231
+GlitchDexJP/B:232
+GlitchDexJP/B:233
+GlitchDexJP/B:234
+GlitchDexJP/B:235
+GlitchDexJP/B:236
+GlitchDexJP/B:237
+GlitchDexJP/B:238
+GlitchDexJP/B:239
+GlitchDexJP/B:240
+GlitchDexJP/B:241
+GlitchDexJP/B:242
+GlitchDexJP/B:243
+GlitchDexJP/B:244
+GlitchDexJP/B:245
+GlitchDexJP/B:246
+GlitchDexJP/B:247
+GlitchDexJP/B:248
+GlitchDexJP/B:249
+GlitchDexJP/B:250
+GlitchDexJP/B:251
+GlitchDexJP/B:252
+GlitchDexJP/B:253
+GlitchDexJP/B:254
+GlitchDexJP/B:255
+GlitchDexJP/C:253
+GlitchDexJP/G:000 (Nintendo Space World 1997 demo)
+GlitchDexJP/GS:000 (Nintendo Space World 1997 demo)
+GlitchDexJP/GS:252 (Nintendo Space World 1997 demo)
+GlitchDexJP/GS:253
+GlitchDexJP/GS:253 (Nintendo Space World 1997 demo)
+GlitchDexJP/GS:254 (Nintendo Space World 1997 demo)
+GlitchDexJP/GS:255 (Nintendo Space World 1997 demo)
+GlitchDexJP/RG:000
+GlitchDexJP/RG:191
+GlitchDexJP/RG:192
+GlitchDexJP/RG:193
+GlitchDexJP/RG:194
+GlitchDexJP/RG:195
+GlitchDexJP/RG:196
+GlitchDexJP/RG:197
+GlitchDexJP/RG:198
+GlitchDexJP/RG:199
+GlitchDexJP/RG:200
+GlitchDexJP/RG:201
+GlitchDexJP/RG:202
+GlitchDexJP/RG:203
+GlitchDexJP/RG:204
+GlitchDexJP/RG:205
+GlitchDexJP/RG:206
+GlitchDexJP/RG:207
+GlitchDexJP/RG:208
+GlitchDexJP/RG:209
+GlitchDexJP/RG:210
+GlitchDexJP/RG:211
+GlitchDexJP/RG:212
+GlitchDexJP/RG:213
+GlitchDexJP/RG:214
+GlitchDexJP/RG:215
+GlitchDexJP/RG:216
+GlitchDexJP/RG:217
+GlitchDexJP/RG:218
+GlitchDexJP/RG:219
+GlitchDexJP/RG:220
+GlitchDexJP/RG:221
+GlitchDexJP/RG:222
+GlitchDexJP/RG:223
+GlitchDexJP/RG:224
+GlitchDexJP/RG:225
+GlitchDexJP/RG:226
+GlitchDexJP/RG:227
+GlitchDexJP/RG:228
+GlitchDexJP/RG:229
+GlitchDexJP/RG:230
+GlitchDexJP/RG:231
+GlitchDexJP/RG:232
+GlitchDexJP/RG:233
+GlitchDexJP/RG:234
+GlitchDexJP/RG:235
+GlitchDexJP/RG:236
+GlitchDexJP/RG:237
+GlitchDexJP/RG:238
+GlitchDexJP/RG:239
+GlitchDexJP/RG:240
+GlitchDexJP/RG:241
+GlitchDexJP/RG:242
+GlitchDexJP/RG:243
+GlitchDexJP/RG:244
+GlitchDexJP/RG:245
+GlitchDexJP/RG:246
+GlitchDexJP/RG:247
+GlitchDexJP/RG:248
+GlitchDexJP/RG:249
+GlitchDexJP/RG:250
+GlitchDexJP/RG:251
+GlitchDexJP/RG:252
+GlitchDexJP/RG:253
+GlitchDexJP/RG:254
+GlitchDexJP/RG:255
+GlitchDexJP/S:000 (Nintendo Space World 1997 demo)
+GlitchDexJP/Y:000
+GlitchDexJP/Y:191
+GlitchDexJP/Y:192
+GlitchDexJP/Y:193
+GlitchDexJP/Y:194
+GlitchDexJP/Y:195
+GlitchDexJP/Y:196
+GlitchDexJP/Y:197
+GlitchDexJP/Y:198
+GlitchDexJP/Y:199
+GlitchDexJP/Y:200
+GlitchDexJP/Y:201
+GlitchDexJP/Y:202
+GlitchDexJP/Y:203
+GlitchDexJP/Y:204
+GlitchDexJP/Y:205
+GlitchDexJP/Y:206
+GlitchDexJP/Y:207
+GlitchDexJP/Y:208
+GlitchDexJP/Y:209
+GlitchDexJP/Y:210
+GlitchDexJP/Y:211
+GlitchDexJP/Y:212
+GlitchDexJP/Y:213
+GlitchDexJP/Y:214
+GlitchDexJP/Y:215
+GlitchDexJP/Y:216
+GlitchDexJP/Y:217
+GlitchDexJP/Y:217 (disambiguation)
+GlitchDexJP/Y:217 (v1.0)
+GlitchDexJP/Y:217 (v1.1+)
+GlitchDexJP/Y:218
+GlitchDexJP/Y:219
+GlitchDexJP/Y:220
+GlitchDexJP/Y:221
+GlitchDexJP/Y:222
+GlitchDexJP/Y:223
+GlitchDexJP/Y:224
+GlitchDexJP/Y:225
+GlitchDexJP/Y:226
+GlitchDexJP/Y:227
+GlitchDexJP/Y:228
+GlitchDexJP/Y:229
+GlitchDexJP/Y:230
+GlitchDexJP/Y:231
+GlitchDexJP/Y:232
+GlitchDexJP/Y:233
+GlitchDexJP/Y:234
+GlitchDexJP/Y:235
+GlitchDexJP/Y:236
+GlitchDexJP/Y:237
+GlitchDexJP/Y:238
+GlitchDexJP/Y:239
+GlitchDexJP/Y:240
+GlitchDexJP/Y:241
+GlitchDexJP/Y:242
+GlitchDexJP/Y:243
+GlitchDexJP/Y:244
+GlitchDexJP/Y:245
+GlitchDexJP/Y:246
+GlitchDexJP/Y:247
+GlitchDexJP/Y:248
+GlitchDexJP/Y:249
+GlitchDexJP/Y:250
+GlitchDexJP/Y:251
+GlitchDexJP/Y:252
+GlitchDexJP/Y:253
+GlitchDexJP/Y:254
+GlitchDexJP/Y:255
+GlitchDexKO/GS:000
+GlitchDexKO/GS:252
+GlitchDexKO/GS:253
+GlitchDexKO/GS:254
+GlitchDexKO/GS:255
+Glitch (CA)
+Glitch (D7)
+Glitch (DB)
+Glitch (DC)
+Glitch (E4)
+Glitch (EB)
+Glitch (EC)
+Glitch (FA)
+Glitch 0xC109 ID
+Glitch 0xC109 IDs
+Glitch City
+Glitch City (Generation I)
+Glitch City (Red, Blue, Yellow)
+Glitch City (Red/Blue/Yellow)
+Glitch City Laboratories
+Glitch City RAM Manipulation
+Glitch City RAM manipulation
+Glitch City RAM manipulation (Cut abuse)
+Glitch City RAM manipulation (disambiguation)
+Glitch City glitch
+Glitch Dimension
+Glitch Dimension (G/S/C)
+Glitch Dolls
+Glitch Egg backsprite Trainer (Pokémon Gold)
+Glitch Egg backsprite Trainer (Pokémon Gold and Silver)
+Glitch Hell
+Glitch Hell (disambiguation)
+Glitch Myths
+Glitch Nidorino
+Glitch Pikachu cries
+Glitch Pikachu cry
+Glitch Pokemon (0xCA)
+Glitch Pokédex categories
+Glitch Pokédex category
+Glitch Pokédex flag
+Glitch Pokédex flags
+Glitch Pokédex marker flags
+Glitch Pokédex sorting
+Glitch Pokédex sortings
+Glitch Pokémon
+Glitch Pokémon (0xD7)
+Glitch Pokémon (0xDB)
+Glitch Pokémon (0xDC)
+Glitch Pokémon (0xE4)
+Glitch Pokémon (0xEB)
+Glitch Pokémon (0xEC)
+Glitch Pokémon (0xFA)
+Glitch Pokémon 0xFE corruption glitch
+Glitch Pokémon League Maps (Pokémon Yellow)
+Glitch Pokémon League Rooms
+Glitch Pokémon League Rooms (Yellow)
+Glitch Pokémon League maps 0x6D-0x70, 0x72-0x75 (Red/Blue)
+Glitch Pokémon League maps 0x6D-0x70, 0x72-0x75 (Yellow)
+Glitch Pokémon cries
+Glitch Pokémon family
+Glitch Ribbon
+Glitch Rocket HQ maps
+Glitch Rocket HQ maps (0xCC-0xCE)
+Glitch Rocket HQ maps (0xCC-0xCE) (Red/Blue)
+Glitch Rocket HQ maps (0xCC-0xCE) (Yellow)
+Glitch Rocket HQ maps (0xCC-0xCE) (disambiguation)
+Glitch Trainer
+Glitch Trainers
+Glitch Unown
+Glitch Unown 0x73 Trainer (Pokémon Gold and Silver)
+Glitch Unown 0x84 Trainer (Pokémon Gold and Silver)
+Glitch Unown 0xF3 Trainer (Pokémon Gold and Silver)
+Glitch Unown 0xF9 Trainer (Pokémon Gold and Silver)
+Glitch Unowns
+Glitch Victory Road map
+Glitch Victory Road map (0x69-0x6B)
+Glitch Victory Road map (0x69-0x6B) (disambiguation)
+Glitch Victory Road maps (0x69-0x6B) (Red/Blue)
+Glitch Victory Road maps (0x69-0x6B) (Yellow)
+Glitch animation
+Glitch attack
+Glitch audio
+Glitch battle
+Glitch battle systems
+Glitch battle types
+Glitch box-set
+Glitch box set
+Glitch boxset
+Glitch caller
+Glitch character glitch
+Glitch color layer
+Glitch contact
+Glitch decoration
+Glitch derivative
+Glitch derivatives
+Glitch dialog
+Glitch doll
+Glitch dolls
+Glitch egg
+Glitch emote bubble
+Glitch encounter system
+Glitch encounter system (0xD057/0xD056)
+Glitch encounter system (0xD05A/0xD059)
+Glitch encounter system (disambiguation)
+Glitch encounter systems
+Glitch encounter systems (0xD057/0xD056)
+Glitch encounter systems (0xD05A/0xD059)
+Glitch experience group
+Glitch experience groups
+Glitch exploit
+Glitch field move
+Glitch friend
+Glitch gender
+Glitch gender 0x02 (HeartGold/SoulSilver)
+Glitch item
+Glitch item (hex:6B)
+Glitch item (hex:6B) (disambiguation)
+Glitch item (hex:76)
+Glitch item (hex:76) (disambiguation)
+Glitch item name map distortion
+Glitch items
+Glitch league
+Glitch location
+Glitch mail
+Glitch meta-map script
+Glitch meta-map script activation
+Glitch mountain
+Glitch move
+Glitch move 0xB4
+Glitch move map corruption (Generation II)
+Glitch music
+Glitch myths
+Glitch option
+Glitch option (disambiguation)
+Glitch pokemon
+Glitch preset name
+Glitch ribbon
+Glitch ribbons
+Glitch screen
+Glitch script activation
+Glitch song
+Glitch sound bank
+Glitch start menu option
+Glitch start menu options
+Glitch stat
+Glitch status ailments
+Glitch technique
+Glitch text
+Glitch time period
+Glitch title screen option
+Glitch trader
+Glitch trainer
+Glitch type
+Glitch unown
+Glitchdex
+Glitched
+Glitched Pokédex
+Glitched Pokémon Center (Generation III)
+Glitcherino
+Glitches
+Glitchy
+Glitchy Nidorino
+Glitchy egg
+Glitzer Popping
+Global Trade System glitches
+Global Trading System glitches
+Global trading system glitches
+Glossary
+GnSI
+GnSI (disambiguation)
+Go Past the Marowak Ghost Without a Silph Scope
+Go Through the Pokémon League Without the Boulderbadge
+Go back to Agatha from Lance
+Go on Cycling Road Without a Bicycle
+Go on Cycling Road Without a Bike
+Go on Cycling Road without a Bicycle
+Go past the Marowak ghost without a Silph Scope
+Go through the Pokémon League without the Boulderbadge
+Go to Agatha from Lance
+Go to Agatha from Lance glitch
+God Egg glitch
+God Mode glitch
+Going out of bounds
+Going up and down the stairs infinitely glitch
+Gold
+Gold/silver/crystal beta safari zone
+GoldBadge
+GoldBadge (disambiguation)
+Gold (disambiguation)
+Gold Badge
+Grand Theft Auto V
+Graphics Cache Glitch
+Graphics cache flushing oversight
+Graphics cache glitch
+Grass/rock Surfing glitch
+Grass glitch
+Gts glitches
+Gts palette glitch
+Guide music in a building
+Gym statue text manipulation
+HEX
+HM01
+HM01 (disambiguation)
+HM02
+HM02 (disambiguation)
+HM03
+HM03 (disambiguation)
+HM04
+HM04 (disambiguation)
+HM05
+HM05 (disambiguation)
+HM05 Defog glitch
+HM08
+HM08 (Generation II glitch item)
+HM08 (disambiguation)
+HM09
+HM09 (Generation II glitch item)
+HM10
+HM10 (Generation II glitch item)
+HM11
+HM11 (Generation II glitch item)
+HM12
+HM12 (Generation II glitch item)
+HM13
+HM13 (Generation II glitch item)
+HOF Master! glitch
+HP bar oversight
+HP drain glitch
+HRAM
+H 4Pゥ ゥ...
+H 4Pゥ ゥ…
+H POKé
+Hall of Fame SRAM glitch
+Hall of Fame corruption
+Hall of Fame freeze
+Hall of Fame freeze (Generation VI)
+Hall of Fame glitch
+Hall of Fame glitch (disambiguation)
+Hall of Fame induction glitch script
+Hall of Fame induction glitch scripts
+Hall of Origin
+Hall of Origin (community)
+Harry Potter and the Chamber of Secrets (PC)
+Harry Potter and the Chamber of Secrets (Windows)
+Harry Potter and the Sorcerer's Stone (Game Boy Color)
+Haunted House
+Have pikachu instantly like you
+Have pikachu like you
+Haze glitch
+Heal with Eruption or Water Spout
+Heal with Eruption or Water Spout glitch
+Hex
+Hex:50 tile
+Hex:FF map corruption glitch
+Hexadecimal
+Hidden Safari Zone entrance Nugget
+Hidden Safari Zone entrance Nugget glitch
+Hidden characters glitch
+Hidden player and rival name Easter eggs
+Hifishi
+Hiker
+Hiker (Generation I glitch Trainers)
+Hiker TM70 Flash glitch
+Hill glitch
+HitFlagDex
+Honey/Sweet Scent shop glitch
+Honey Shop glitch
+Honey and Sweet Scent glitch
+Honey shop glitch
+Hooked Dragonite
+Hooked Dragonite glitch
+Hooked Metapod
+Hooked Metapod glitch
+Horn Drill Glitch
+Horn Drill and Fissure glitch
+Hurry, get away!
+Hurry get away!
+Hybrid
+Hybrid Glitch Pokémon
+Hybrid glitch
+Hybrid glitch Pokémon
+Hybrid glitch pokemon
+Hybrid pokemon
+Hybrid pokémon
+Hyper Beam automatic selection glitch
+Hyper Beam sleep move glitch
+Hゥ
+ID number
+ID numbers
+II
+IIMarck.us
+IIMarckus.org
+Icirrus Gym glitch
+Id number
+Id numbers
+Identifier
+Identifiers
+Il
+Il (disambiguation)
+Ilsty and ?
+Imported Eevee Glitch
+Imported Eevee glitch
+In-game trade shore encounter glitch
+In-game trade shore encounter trick
+Inaccessible coins
+Inaccessible map sections
+Incomplete Route 104 map
+Incorrect sprite for the Defog HM
+Index number
+Index numbers
+Infinite Blaine Door
+Infinite Master Balls
+Infinite Master Balls (Colosseum)
+Infinite Nugget glitch
+Infinite Rare Candies
+Infinite ball glitch (Colosseum)
+Infinite balls glitch (Colosseum)
+Infinite continues
+Infinite continues glitch
+Infinite continues glitch (Stadium 2)
+Infinite item glitches
+Infinite item glitches (disambiguation)
+Infinite items
+Infinite massages
+Infinite massages trick
+Infinite master balls (colosseum)
+Infinite masterballs
+Infinite masterballs (colosseum)
+Infinite rematch exploit
+Infinitely long enemy Pokémon name
+Instant CoolTrainer
+Instant CoolTrainer♀-type move corruption
+Instant Glitch City
+Instant LOL glitch
+Instant encounter infinite chain glitch
+Instant text glitch
+Instant victory
+Instant victory (Generation I)
+Instant victory (Generation II)
+Instant victory (Generation III)
+Instant victory effect
+Instant victory glitch
+Instant victory glitch (Generation I)
+Instant victory glitch (Generation II)
+Instant victory glitch (disambiguation)
+International 'dokokashira door glitch'
+International Fossil conversion glitch
+International Select glitch walk through walls
+International badge describer glitch
+International dokokashira door glitch
+International fossil conversion glitch
+International trades involving Japanese games
+International trades involving a Japanese game
+Intro Nidorino Glitch
+Introduction Nidorino glitch
+Invalid input glitch
+Invalid money division discrepancy
+Invalid opcode
+Inverse cloning glitch
+Inverse sprites glitch
+Inverted sprites
+Invincible glitch
+Invisible/misaligned character glitch
+Invisible PC
+Invisible PCs
+Invisible Poké Ball glitch
+Invisible Rocket glitch
+Invisible Tree
+Invisible tree glitch
+Invulnerability glitch
+Ion Deluge glitch
+Isle of Armor Pokédex glitch
+ItemDex
+ItemDex/RB:000
+ItemDex/RB:007
+ItemDex/RB:009
+ItemDex/RB:021
+ItemDex/RB:022
+ItemDex/RB:023
+ItemDex/RB:024
+ItemDex/RB:025
+ItemDex/RB:026
+ItemDex/RB:027
+ItemDex/RB:028
+ItemDex/RB:044
+ItemDex/RB:084
+ItemDex/RB:085
+ItemDex/RB:086
+ItemDex/RB:087
+ItemDex/RB:088
+ItemDex/RB:089
+ItemDex/RB:090
+ItemDex/RB:091
+ItemDex/RB:092
+ItemDex/RB:093
+ItemDex/RB:094
+ItemDex/RB:095
+ItemDex/RB:096
+ItemDex/RB:097
+ItemDex/RB:098
+ItemDex/RB:099
+ItemDex/RB:100
+ItemDex/RB:101
+ItemDex/RB:102
+ItemDex/RB:103
+ItemDex/RB:104
+ItemDex/RB:105
+ItemDex/RB:106
+ItemDex/RB:107
+ItemDex/RB:108
+ItemDex/RB:109
+ItemDex/RB:110
+ItemDex/RB:111
+ItemDex/RB:112
+ItemDex/RB:113
+ItemDex/RB:114
+ItemDex/RB:115
+ItemDex/RB:116
+ItemDex/RB:117
+ItemDex/RB:118
+ItemDex/RB:119
+ItemDex/RB:120
+ItemDex/RB:121
+ItemDex/RB:122
+ItemDex/RB:123
+ItemDex/RB:124
+ItemDex/RB:125
+ItemDex/RB:126
+ItemDex/RB:127
+ItemDex/RB:128
+ItemDex/RB:129
+ItemDex/RB:130
+ItemDex/RB:131
+ItemDex/RB:132
+ItemDex/RB:133
+ItemDex/RB:134
+ItemDex/RB:135
+ItemDex/RB:136
+ItemDex/RB:137
+ItemDex/RB:138
+ItemDex/RB:139
+ItemDex/RB:140
+ItemDex/RB:141
+ItemDex/RB:142
+ItemDex/RB:143
+ItemDex/RB:144
+ItemDex/RB:145
+ItemDex/RB:146
+ItemDex/RB:147
+ItemDex/RB:148
+ItemDex/RB:149
+ItemDex/RB:150
+ItemDex/RB:151
+ItemDex/RB:152
+ItemDex/RB:153
+ItemDex/RB:154
+ItemDex/RB:155
+ItemDex/RB:156
+ItemDex/RB:157
+ItemDex/RB:158
+ItemDex/RB:159
+ItemDex/RB:160
+ItemDex/RB:161
+ItemDex/RB:162
+ItemDex/RB:163
+ItemDex/RB:164
+ItemDex/RB:165
+ItemDex/RB:166
+ItemDex/RB:167
+ItemDex/RB:168
+ItemDex/RB:169
+ItemDex/RB:170
+ItemDex/RB:171
+ItemDex/RB:172
+ItemDex/RB:173
+ItemDex/RB:174
+ItemDex/RB:175
+ItemDex/RB:176
+ItemDex/RB:177
+ItemDex/RB:178
+ItemDex/RB:179
+ItemDex/RB:180
+ItemDex/RB:181
+ItemDex/RB:182
+ItemDex/RB:183
+ItemDex/RB:184
+ItemDex/RB:185
+ItemDex/RB:186
+ItemDex/RB:187
+ItemDex/RB:188
+ItemDex/RB:189
+ItemDex/RB:190
+ItemDex/RB:191
+ItemDex/RB:192
+ItemDex/RB:193
+ItemDex/RB:194
+ItemDex/RB:195
+ItemDex/RB:251
+ItemDex/RB:255
+ItemDex/Y:000
+ItemDex/Y:084
+ItemDex/Y:085
+ItemDex/Y:086
+ItemDex/Y:087
+ItemDex/Y:088
+ItemDex/Y:089
+ItemDex/Y:090
+ItemDex/Y:091
+ItemDex/Y:092
+ItemDex/Y:093
+ItemDex/Y:094
+ItemDex/Y:095
+ItemDex/Y:096
+ItemDex/Y:097
+ItemDex/Y:098
+ItemDex/Y:099
+ItemDex/Y:100
+ItemDex/Y:101
+ItemDex/Y:102
+ItemDex/Y:103
+ItemDex/Y:104
+ItemDex/Y:105
+ItemDex/Y:106
+ItemDex/Y:107
+ItemDex/Y:108
+ItemDex/Y:109
+ItemDex/Y:110
+ItemDex/Y:111
+ItemDex/Y:112
+ItemDex/Y:113
+ItemDex/Y:114
+ItemDex/Y:115
+ItemDex/Y:116
+ItemDex/Y:117
+ItemDex/Y:118
+ItemDex/Y:119
+ItemDex/Y:120
+ItemDex/Y:121
+ItemDex/Y:122
+ItemDex/Y:123
+ItemDex/Y:124
+ItemDex/Y:125
+ItemDex/Y:126
+ItemDex/Y:127
+ItemDex/Y:128
+ItemDex/Y:129
+ItemDex/Y:130
+ItemDex/Y:131
+ItemDex/Y:132
+ItemDex/Y:133
+ItemDex/Y:134
+ItemDex/Y:135
+ItemDex/Y:136
+ItemDex/Y:137
+ItemDex/Y:138
+ItemDex/Y:139
+ItemDex/Y:140
+ItemDex/Y:141
+ItemDex/Y:142
+ItemDex/Y:143
+ItemDex/Y:144
+ItemDex/Y:145
+ItemDex/Y:146
+ItemDex/Y:147
+ItemDex/Y:148
+ItemDex/Y:149
+ItemDex/Y:150
+ItemDex/Y:151
+ItemDex/Y:152
+ItemDex/Y:153
+ItemDex/Y:154
+ItemDex/Y:155
+ItemDex/Y:156
+ItemDex/Y:157
+ItemDex/Y:158
+ItemDex/Y:159
+ItemDex/Y:160
+ItemDex/Y:161
+ItemDex/Y:162
+ItemDex/Y:163
+ItemDex/Y:164
+ItemDex/Y:165
+ItemDex/Y:166
+ItemDex/Y:167
+ItemDex/Y:168
+ItemDex/Y:169
+ItemDex/Y:170
+ItemDex/Y:171
+ItemDex/Y:172
+ItemDex/Y:173
+ItemDex/Y:174
+ItemDex/Y:175
+ItemDex/Y:176
+ItemDex/Y:177
+ItemDex/Y:178
+ItemDex/Y:179
+ItemDex/Y:180
+ItemDex/Y:181
+ItemDex/Y:182
+ItemDex/Y:183
+ItemDex/Y:184
+ItemDex/Y:185
+ItemDex/Y:186
+ItemDex/Y:187
+ItemDex/Y:188
+ItemDex/Y:189
+ItemDex/Y:190
+ItemDex/Y:191
+ItemDex/Y:192
+ItemDex/Y:193
+ItemDex/Y:194
+ItemDex/Y:195
+ItemDexES/RB:093
+ItemDexES/RB:094
+ItemDexFR
+ItemDexFR/RB:088
+ItemDexIT
+ItemDexIT/Y:124
+ItemDexJP
+ItemDexJP/B:000
+ItemDexJP/B:090
+ItemDexJP/B:103
+ItemDexJP/B:106
+ItemDexJP/B:123
+ItemDexJP/RG:000
+ItemDexJP/RG:090
+ItemDexJP/RG:101
+ItemDexJP/RG:103
+ItemDexJP/RG:106
+ItemDexJP/RG:106 (disambiguation)
+ItemDexJP/RG:106 (v1.0)
+ItemDexJP/RG:106 (v1.1)
+ItemDexJP/RG:123
+ItemDexJP/RGB:090
+ItemDexJP/RGB:103
+ItemDexJP/Y:000
+ItemDexJP/Y:000 (disambiguation)
+ItemDexJP/Y:000 (v1.0)
+ItemDexJP/Y:000 (v1.1+)
+ItemDexJP/Y:090
+ItemDexJP/Y:099
+ItemDexJP/Y:101
+ItemDexJP/Y:101 (disambiguation)
+ItemDexJP/Y:101 (v1.0)
+ItemDexJP/Y:101 (v1.1)
+ItemDexJP/Y:101 (v1.1+)
+ItemDexJP/Y:101 (v1.2)
+ItemDexJP/Y:101 (v1.3)
+ItemDexJP/Y:106
+ItemDexJP/Y:106 (disambiguation)
+ItemDexJP/Y:106 (v1.0)
+ItemDexJP/Y:106 (v1.1)
+ItemDexJP/Y:106 (v1.1+)
+ItemDexJP/Y:106 (v1.2)
+ItemDexJP/Y:106 (v1.3)
+ItemDexJP/Y:111
+ItemDexJP/Y:111 (disambiguation)
+ItemDexJP/Y:111 (v1.0)
+ItemDexJP/Y:111 (v1.1+)
+ItemDexJP/Y:124
+ItemDexJP/Y:124 (disambiguation)
+ItemDexJP/Y:124 (v1.0)
+ItemDexJP/Y:124 (v1.1)
+ItemDexJP/Y:124 (v1.1+)
+ItemDexJP/Y:124 (v1.2)
+ItemDexJP/Y:124 (v1.3)
+Item Slot Duplication
+Item addition glitch
+Item addition glitch (disambiguation)
+Item conversion
+Item creation Select glitches
+Item creation glitch
+Item duplication
+Item duplication glitch
+Item duplication glitch (disambiguation)
+Item growth
+Item jingle skip
+Item jingle skip glitch
+Item morphing glitches
+Item morphing glitches (disambiguation)
+Item mutation
+Item slot duplication glitch
+Item stack duplication glitch
+Item underflow
+Item underflow glitch
+Item underflow glitch (disambiguation)
+Item underflow glitch (event method)
+Itemdex
+J
+J.
+J. (0x00) inventory filling map script glitch
+Jack
+Jack (disambiguation)
+Jack effect
+Jacred
+Jacred (disambiguation)
+Jacred inventory corruption
+Jailbreaking the Gameboy with 8F (no TASing)
+Japanese font leftovers
+Japanese font leftovers and related errors
+Japanese unterminated name glitch item instant encounter glitch
+John
+John (disambiguation)
+Johto guard glitch
+Jr. Trainer♀
+Jr. Trainer♀ (Generation I glitch Trainers)
+Jr. Trainer♀ (disambiguation)
+Jr. Trainer♂
+Jr. Trainer♂ (Generation I glitch Trainers)
+Jr. Trainer♂ (disambiguation)
+Jubilife Condominiums floors 3 and 4
+Jubilife Condoniums floors 3 and 4
+Jubilife condominium 3rd floor
+Jubilife condominium 4th floor
+Jubilife condominium floor 4
+Jubilife condominium floor four
+Jubilife condominium floor three
+Jubilife condominium floors 3 and 4
+Jubilife condominium floors 4 and 3
+Jubilife condominiums 3rd floor
+Jubilife condominiums 4th floor
+Jubilife condominiums floor 3
+Jubilife condominiums floor 4
+Jubilife condominiums floors 3 and 4
+Jubilife condominiums floors 4 and 3
+Jubilife condominiums fourth floor
+Jubilife condominiums third floor
+Jubilife condominum floor 3
+Juggler
+Juggler (disambiguation)
+Juggler (unused Trainer class)
+Juggler (used copy Generation I glitch Trainers)
+K(ry's memory editor
+Kabutops Fossil MissingNo.
+Kaeru no Tame ni Kane wa Naru
+Keitai Denjuu Telefang series
+Kernal trap
+Ketsuban
+Kill without removing HP
+Killzone
+Kirby's Adventure
+Kiri
+Koga
+Koga (Generation I glitch Trainers)
+LG
+LGFly
+LM4
+LOL glitch
+Lance
+Lance (Generation I glitch Trainers)
+Land on rock in Sky Pillar
+Landing on an NPC
+Landsurfing glitch
+Language icon glitch
+Large storage box byte shift glitch
+Lass
+Lass (Generation I glitch Trainers)
+Lass (disambiguation)
+Late night
+Lati@s glitch
+Latias glitch
+Latios glitch
+Lavender Town Ghost MissingNo.
+Lavender Town ghost Pokémon Pokédex glitch
+Lavender town ghost pokémon pokédex glitch
+Leech Seed and Toxic stacking
+Left-facing shore tile glitch
+Legendary Beasts incomplete OT check
+Legendary Star Blob
+Legendary Star Blob 2
+Level 100 pokemon before the first gym
+Level 100 pokémon before the first gym
+Level 256 split screen (Pac-Man)
+Level 68 Zapdos glitch
+Level display glitch
+Level display glitch (Generation VI)
+Level display glitch (Platinum)
+Level display glitch (disambiguation)
+Level up Transform glitch
+Levitating Walking Pokémon glitch
+Levitating walking pokemon glitch
+Levitating walking pokémon glitch
+Lg-
+Lg- (disambiguation)
+Liberty Garden Fly glitch
+Life Orb glitch
+Life orb glitch
+Lift Key above ball glitch
+Lift glitch
+Lift goes to the same floor
+Lift goes to the same floor curiosity
+Link-up coast exploit using another player' name
+List of 8F bootstrap setups
+List of Pokémon GO glitches
+List of Pokémon disassembly projects
+List of arbitrary code execution programs
+List of exploits to obtain Mew
+List of glitch Pokémon
+List of glitch Trainers
+List of glitch pokemon
+List of grammar errors and translation errors in the Pokémon franchise
+List of grammar errors and translation errors in the Pokémon games
+List of grammar errors in the Pokémon franchise
+List of grammatical errors
+List of natural glitches in Generation I
+List of natural glitches in Generation II
+List of revision differences
+List of revision differences in the core Pokémon games
+List of spelling mistakes
+List of spelling mistakes in the Pokémon franchise
+List of sprite errors in the Pokémon games
+List of text errors in the Pokémon games
+List of unconfirmed glitches
+Litten freeze glitch
+Live Competition Curse/Forest's Curse/Power Trick/String Shot glitch
+Lm4
+Lock-up
+Lock-up Trainer battle
+Lock Capsule
+Lock up
+Lockup
+Looping map glitch
+Looping map glitches
+Looping map glitches (disambiguation)
+Lorelei
+Lorelei (Generation I glitch Trainers)
+Lost town
+Lt. Surge
+Lt. Surge (Generation I glitch Trainers)
+Luck manipulation
+Luck manipulation (Generation I)
+Luck manipulation (Generation III)
+Lucky Wins Again
+Lumiose City Glitch
+Lumiose City Save Bug
+Lumiose City fence glitch
+Lumiose City glitch (disambiguation)
+Lumiose City save glitch
+M
+MD1GlitchDex
+MD1GlitchDex/00000
+MD1GlitchDex/00420
+MD1GlitchDex/00421
+MD1GlitchDex/00422
+MD1GlitchDex/00423
+MISSINGNO.
+MNg
+MP-
+MP- (disambiguation)
+M (glitch item hex:66)
+M (glitch item hex:66) (disambiguation)
+M (glitch item hex:69)
+M (glitch item hex:69) (disambiguation)
+M p'u ゥ
+Magikarp salesman glitch
+Mail Trick glitch
+Mail and Trick glitch
+Mail and Trick glitches
+Mail trick glitch
+Mailbox glitches
+Main Page
+Make people call you
+Make pikachu like you
+Make your own items glitch
+Mantine Beach Move Tutor glitch
+Map 0B
+Map 0x0B
+Map 0x0B (French Yellow)
+Map 0x0B (German Yellow)
+Map 0x0B (Italian Yellow)
+Map 0x0B (Spanish Yellow)
+Map 0x0B (summary)
+Map 0x21FF (English Gold/Silver)
+Map 0x69 (English Red/Blue)
+Map 0x69 (French Red/Blue)
+Map 0x69 (Spanish Red/Blue)
+Map 0x6F
+Map 0x6F (summary)
+Map 0x9925 (English Gold/Silver)
+Map 0xE7 (English Red/Blue)
+Map 0xE7 Glitch Hell (Japanese Yellow)
+Map 0xF121 (Japanese Crystal)
+Map 0xF121 (Japanese Gold/Silver)
+Map 0xFA (English Red/Blue)
+Map 0xFE
+Map 0xFE (English Yellow)
+Map 0xFE (Japanese Yellow)
+Map 0xFE (disambiguation)
+Map 0xFF
+Map 0xFF (Spanish Yellow)
+Map 0xFF (summary)
+Map 21FF (English Gold/Silver)
+Map 21FF (Gold/Silver)
+Map 254
+Map 254 (English Yellow)
+Map 254 (Yellow)
+Map 69 (English Red/Blue)
+Map 69 (French Red/Blue)
+Map E7 Fiery Glitch Hell
+Map E7 Glitch Hell
+Map E7 Glitch Hell (Japanese Yellow)
+Map F121 (Japanese Crystal)
+Map F121 (Japanese Gold/Silver)
+Map FE
+Map FE (English Yellow)
+Map FE (Japanese Yellow)
+Map FE (Yellow)
+Map FF
+Map change ghost capture glitch
+Map distortion glitch
+Map distortion glitch (disambiguation)
+Map distortion glitch item
+Map hex:99 house door glitch
+Map script arbitrary code execution
+Map script pointer item ball manipulation
+Map script pointer manipulation
+Map size walk through walls
+Marowak encounter (Trainer escape glitch)
+Marowak ghost instant encounter glitch
+Marowak placeholder glitch Pokémon
+MarshBadge
+MarshBadge (glitch item)
+Mart Pwner
+Mart worker glitch
+Marvelous Bridge glitch
+Master glitch directory
+Master glitch directory (Generation I)
+Master glitch directory (Generation VI)
+Master glitch directory (Generation VII)
+Master glitch directory (Generation VIII)
+Master glitch directory (disambiguation)
+Max Raid Battle item glitch
+MediaWiki AttackDex
+MediaWiki GlitchDex
+MediaWiki ItemDex
+Mega HP bar
+Mega Man X
+Memento/Parting Shot Z-Move freeze glitch
+Memory address
+Mendel Palace sumo
+Menu glitches (Generation VIII)
+Menu scrolling oversight
+Meta-map script
+Meta-map script activation
+Meta-map scripts
+MetascriptDex
+MetascriptDex/D5FD (Cerulean Gym)
+MetascriptDex/RB:D5F0 (Professor Oak's Laboratory)
+MetascriptDex/RB:D5F1 (Pallet Town)
+MetascriptDex/RB:D5F3 (Blue's House 1F)
+MetascriptDex/RB:D5F4 (Viridian City)
+MetascriptDex/RB:D5F7 (Pewter City)
+MetascriptDex/RB:D5F8 (Route 3)
+MetascriptDex/RB:D5F9 (Route 4)
+MetascriptDex/RB:D5FB (Viridian City Gym)
+MetascriptDex/RB:D5FC (Pewter Gym)
+MetascriptDex/RB:D5FE (Vermilion Gym)
+MetascriptDex/RB:D5FF (Celadon Gym)
+MetascriptDex/RB:D600 (Route 6)
+MetascriptDex/RB:D601 (Route 8)
+MetascriptDex/RB:D602 (Route 24)
+MetascriptDex/RB:D603 (Route 25)
+MetascriptDex/RB:D604 (Route 9)
+MetascriptDex/RB:D605 (Route 10)
+MetascriptDex/RB:D606 (Mt. Moon 1)
+MetascriptDex/RB:D607 (Mt. Moon B2F)
+MetascriptDex/RB:D608 (S.S. Anne cabin 1)
+MetascriptDex/RB:D609 (S.S. Anne cabin 2)
+MetascriptDex/RB:D60A (Route 22)
+MetascriptDex/RB:D60C (Red's house 2F)
+MetascriptDex/RB:D60D (Virdian City Poké Mart)
+MetascriptDex/RB:D60E (Route 22 gate)
+MetascriptDex/RB:D60F (Cerulean City)
+MetascriptDex/RB:D617 (S.S. Anne promenade deck)
+MetascriptDex/RB:D618 (Viridian Forest)
+MetascriptDex/RB:D619 (Pewter Museum of Science main 1F)
+MetascriptDex/RB:D61A (Route 13)
+MetascriptDex/RB:D61B (Route 14)
+MetascriptDex/RB:D61C (Route 17)
+MetascriptDex/RB:D61D (Sea Route 19)
+MetascriptDex/RB:D61E (Sea Route 21)
+MetascriptDex/RB:D61F (Safari Zone entrance)
+MetascriptDex/RB:D620 (Rock Tunnel B1F)
+MetascriptDex/RB:D621 (Rock Tunnel 1F)
+MetascriptDex/RB:D623 (Route 11)
+MetascriptDex/RB:D624 (Route 12)
+MetascriptDex/RB:D625 (Route 15)
+MetascriptDex/RB:D626 (Route 16)
+MetascriptDex/RB:D627 (Route 18)
+MetascriptDex/RB:D628 (Sea Route 20)
+MetascriptDex/RB:D629 (S.S. Anne cabin 3)
+MetascriptDex/RB:D62A (Vermilion City)
+MetascriptDex/RB:D62B (Pokémon Tower 2F)
+MetascriptDex/RB:D62C (Pokémon Tower 3F)
+MetascriptDex/RB:D62D (Pokémon Tower 4F)
+MetascriptDex/RB:D62E (Pokémon Tower 5F)
+MetascriptDex/RB:D62F (Pokémon Tower 6F)
+MetascriptDex/RB:D630 (Pokémon Tower 7F)
+MetascriptDex/RB:D631 (Rocket Hideout B1F)
+MetascriptDex/RB:D632 (Rocket Hideout B2F)
+MetascriptDex/RB:D633 (Rocket Hideout B3F)
+MetascriptDex/RB:D634 (Rocket Hideout B4F)
+MetascriptDex/RB:D636 (Route 6 gate)
+MetascriptDex/RB:D637 (Route 8 gate)
+MetascriptDex/RB:D639 (Cinnabar Island)
+MetascriptDex/RB:D63A (Pokémon Mansion 1F)
+MetascriptDex/RB:D63C (Pokémon Mansion 2F)
+MetascriptDex/RB:D63D (Pokémon Mansion 3F)
+MetascriptDex/RB:D63E (Pokémon Mansion B1F)
+MetascriptDex/RB:D63F (Victory Road 2F)
+MetascriptDex/RB:D640 (Victory Road 3F)
+MetascriptDex/RB:D642 (Fighting Dojo)
+MetascriptDex/RB:D643 (Silph Co. 2F)
+MetascriptDex/RB:D644 (Silph Co. 3F)
+MetascriptDex/RB:D645 (Silph Co. 4F)
+MetascriptDex/RB:D646 (Silph Co. 5F)
+MetascriptDex/RB:D647 (Silph Co. 6F)
+MetascriptDex/RB:D648 (Silph Co. 7F)
+MetascriptDex/RB:D649 (Silph Co. 8F)
+MetascriptDex/RB:D64A (Silph Co. 9F)
+MetascriptDex/RB:D64B (Hall of Fame)
+MetascriptDex/RB:D64C (Blue's Pokémon League room)
+MetascriptDex/RB:D64D (Lorelei's Pokémon League room)
+MetascriptDex/RB:D64E (Bruno's Pokémon League room)
+MetascriptDex/RB:D64F (Agatha's Pokémon League room)
+MetascriptDex/RB:D650 (Unknown Dungeon B1F)
+MetascriptDex/RB:D651 (Victory Road 1F)
+MetascriptDex/RB:D653 (Lance's Pokémon League room)
+MetascriptDex/RB:D658 (Silph Co. 10F)
+MetascriptDex/RB:D659 (Silph Co. 11F)
+MetascriptDex/RB:D65B (Fuchsia City Gym)
+MetascriptDex/RB:D65C (Saffron City Gym)
+MetascriptDex/RB:D65E (Cinnabar Island Gym)
+MetascriptDex/RB:D65F (Celadon Game Corner)
+MetascriptDex/RB:D660 (Route 16 gate)
+MetascriptDex/RB:D661 (Bill's house)
+MetascriptDex/RB:D662 (Route 5 gate)
+MetascriptDex/RB:D663 (Power Plant/Route 7 gate)
+MetascriptDex/RB:D665 (S.S. Anne 2F)
+MetascriptDex/RB:D666 (Seafoam Islands 4)
+MetascriptDex/RB:D667 (Route 23)
+MetascriptDex/RB:D668 (Seafoam Islands 5)
+MetascriptDex/RB:D669 (Route 18 gate)
+MetascriptDex/RB:Hall of Fame (0xD64B)
+MetascriptDex/RB:Pallet Town (D5F1)
+MetascriptDex/RB:Professor Oak's Laboratory (D5F0)
+MetascriptDex/RB:W AGATHACURSCRIPT
+MetascriptDex/RB:W BILLSHOUSECURSCRIPT
+MetascriptDex/RB:W BLUESHOUSECURSCRIPT
+MetascriptDex/RB:W BRUNOCURSCRIPT
+MetascriptDex/RB:W CELADONGAMECORNERCURSCRIPT
+MetascriptDex/RB:W CELADONGYMCURSCRIPT
+MetascriptDex/RB:W CERULEANCITYCURSCRIPT
+MetascriptDex/RB:W CERULEANGYMCURSCRIPT
+MetascriptDex/RB:W CINNABARGYMCURSCRIPT
+MetascriptDex/RB:W CINNABARISLANDCURSCRIPT
+MetascriptDex/RB:W FIGHTINGDOJOCURSCRIPT
+MetascriptDex/RB:W FUCHSIAGYMCURSCRIPT
+MetascriptDex/RB:W GARYCURSCRIPT
+MetascriptDex/RB:W HALLOFFAMEROOMCURSCRIPT
+MetascriptDex/RB:W LANCECURSCRIPT
+MetascriptDex/RB:W LORELEICURSCRIPT
+MetascriptDex/RB:W MANSION1CURSCRIPT
+MetascriptDex/RB:W MANSION2CURSCRIPT
+MetascriptDex/RB:W MANSION3CURSCRIPT
+MetascriptDex/RB:W MANSION4CURSCRIPT
+MetascriptDex/RB:W MTMOON1CURSCRIPT
+MetascriptDex/RB:W MTMOON3CURSCRIPT
+MetascriptDex/RB:W MUSEUM1FCURSCRIPT
+MetascriptDex/RB:W OAKSLABCURSCRIPT
+MetascriptDex/RB:W PALLETTOWNCURSCRIPT
+MetascriptDex/RB:W PEWTERCITYCURSCRIPT
+MetascriptDex/RB:W PEWTERGYMCURSCRIPT
+MetascriptDex/RB:W POKEMONTOWER2CURSCRIPT
+MetascriptDex/RB:W POKEMONTOWER3CURSCRIPT
+MetascriptDex/RB:W POKEMONTOWER4CURSCRIPT
+MetascriptDex/RB:W POKEMONTOWER5CURSCRIPT
+MetascriptDex/RB:W POKEMONTOWER6CURSCRIPT
+MetascriptDex/RB:W POKEMONTOWER7CURSCRIPT
+MetascriptDex/RB:W POWERPLANTCURSCRIPT
+MetascriptDex/RB:W REDSHOUSE2CURSCRIPT
+MetascriptDex/RB:W ROCKETHIDEOUT1CURSCRIPT
+MetascriptDex/RB:W ROCKETHIDEOUT2CURSCRIPT
+MetascriptDex/RB:W ROCKETHIDEOUT3CURSCRIPT
+MetascriptDex/RB:W ROCKETHIDEOUT4CURSCRIPT
+MetascriptDex/RB:W ROCKTUNNEL1CURSCRIPT
+MetascriptDex/RB:W ROCKTUNNEL2CURSCRIPT
+MetascriptDex/RB:W ROUTE10CURSCRIPT
+MetascriptDex/RB:W ROUTE11CURSCRIPT
+MetascriptDex/RB:W ROUTE12CURSCRIPT
+MetascriptDex/RB:W ROUTE13CURSCRIPT
+MetascriptDex/RB:W ROUTE14CURSCRIPT
+MetascriptDex/RB:W ROUTE15CURSCRIPT
+MetascriptDex/RB:W ROUTE16CURSCRIPT
+MetascriptDex/RB:W ROUTE16GATECURSCRIPT
+MetascriptDex/RB:W ROUTE17CURSCRIPT
+MetascriptDex/RB:W ROUTE18CURSCRIPT
+MetascriptDex/RB:W ROUTE18GATECURSCRIPT
+MetascriptDex/RB:W ROUTE19CURSCRIPT
+MetascriptDex/RB:W ROUTE20CURSCRIPT
+MetascriptDex/RB:W ROUTE21CURSCRIPT
+MetascriptDex/RB:W ROUTE22CURSCRIPT
+MetascriptDex/RB:W ROUTE22GATECURSCRIPT
+MetascriptDex/RB:W ROUTE23CURSCRIPT
+MetascriptDex/RB:W ROUTE24CURSCRIPT
+MetascriptDex/RB:W ROUTE25CURSCRIPT
+MetascriptDex/RB:W ROUTE3CURSCRIPT
+MetascriptDex/RB:W ROUTE4CURSCRIPT
+MetascriptDex/RB:W ROUTE5GATECURSCRIPT
+MetascriptDex/RB:W ROUTE6CURSCRIPT
+MetascriptDex/RB:W ROUTE6GATECURSCRIPT
+MetascriptDex/RB:W ROUTE7GATECURSCRIPT
+MetascriptDex/RB:W ROUTE8CURSCRIPT
+MetascriptDex/RB:W ROUTE8GATECURSCRIPT
+MetascriptDex/RB:W ROUTE9CURSCRIPT
+MetascriptDex/RB:W SAFARIZONEENTRANCECURSCRIPT
+MetascriptDex/RB:W SAFFRONGYMCURSCRIPT
+MetascriptDex/RB:W SEAFOAMISLANDS4CURSCRIPT
+MetascriptDex/RB:W SEAFOAMISLANDS5CURSCRIPT
+MetascriptDex/RB:W SILPHCO10CURSCRIPT
+MetascriptDex/RB:W SILPHCO11CURSCRIPT
+MetascriptDex/RB:W SILPHCO2CURSCRIPT
+MetascriptDex/RB:W SILPHCO3CURSCRIPT
+MetascriptDex/RB:W SILPHCO4CURSCRIPT
+MetascriptDex/RB:W SILPHCO5CURSCRIPT
+MetascriptDex/RB:W SILPHCO6CURSCRIPT
+MetascriptDex/RB:W SILPHCO7CURSCRIPT
+MetascriptDex/RB:W SILPHCO8CURSCRIPT
+MetascriptDex/RB:W SILPHCO9CURSCRIPT
+MetascriptDex/RB:W SSANNE10CURSCRIPT
+MetascriptDex/RB:W SSANNE2CURSCRIPT
+MetascriptDex/RB:W SSANNE5CURSCRIPT
+MetascriptDex/RB:W SSANNE8CURSCRIPT
+MetascriptDex/RB:W SSANNE9CURSCRIPT
+MetascriptDex/RB:W UNKNOWNDUNGEON3CURSCRIPT
+MetascriptDex/RB:W VERMILIONCITYCURSCRIPT
+MetascriptDex/RB:W VERMILIONGYMCURSCRIPT
+MetascriptDex/RB:W VICTORYROAD1CURSCRIPT
+MetascriptDex/RB:W VICTORYROAD2CURSCRIPT
+MetascriptDex/RB:W VICTORYROAD3CURSCRIPT
+MetascriptDex/RB:W VIRIDIANCITYCURSCRIPT
+MetascriptDex/RB:W VIRIDIANFORESTCURSCRIPT
+MetascriptDex/RB:W VIRIDIANGYMCURSCRIPT
+MetascriptDex/RB:W VIRIDIANMARKETCURSCRIPT
+MetascriptDex/Y:Celadon Game Corner (0x87)
+MetascriptDex/Y:D5EF (Professor Oak's Laboratory)
+MetascriptDex/Y:D5F0 (Pallet Town)
+MetascriptDex/Y:D5F2 (Blue's house)
+MetascriptDex/Y:D5F3 (Viridian City)
+MetascriptDex/Y:D5F6 (Pewter City)
+MetascriptDex/Y:D5F7 (Route 3)
+MetascriptDex/Y:D5F8 (Route 4)
+MetascriptDex/Y:D5FA (Viridian Gym)
+MetascriptDex/Y:D5FB (Pewter Gym)
+MetascriptDex/Y:D5FC (Cerulean Gym)
+MetascriptDex/Y:D5FD (Vermilion Gym)
+MetascriptDex/Y:D5FE (Celadon Gym)
+MetascriptDex/Y:D64A (Hall of Fame)
+MetascriptDex/Y:D65E (Celadon Game Corner)
+MetascriptDex/Y:Hall of Fame (0xD64A)
+MetascriptDex/Y:Pallet Town (D5F0)
+MetascriptDex/Y:Professor Oak's Laboratory (D5EF)
+MetascriptDex/Y:W BLUESHOUSECURSCRIPT
+MetascriptDex/Y:W CELADONGAMECORNERCURSCRIPT
+MetascriptDex/Y:W CELADONGYMCURSCRIPT
+MetascriptDex/Y:W CERULEANGYMCURSCRIPT
+MetascriptDex/Y:W HALLOFFAMEROOMCURSCRIPT
+MetascriptDex/Y:W OAKSLABCURSCRIPT
+MetascriptDex/Y:W PALLETTOWNCURSCRIPT
+MetascriptDex/Y:W PEWTERCITYCURSCRIPT
+MetascriptDex/Y:W PEWTERGYMCURSCRIPT
+MetascriptDex/Y:W ROUTE3CURSCRIPT
+MetascriptDex/Y:W ROUTE4CURSCRIPT
+MetascriptDex/Y:W VERMILIONGYMCURSCRIPT
+MetascriptDex/Y:W VIRIDIANCITYCURSCRIPT
+MetascriptDex/Y:W VIRIDIANGYMCURSCRIPT
+Metroid
+Metroid: Other M
+Metroid 2
+Metroid Fusion
+Metroid II
+Metroid II: Return of Samus
+Metroid Other M
+Metroid Prime
+Metronome glitch
+Mew Glitch
+Mew Trick
+Mew glitch
+Mew in the expanded party glitch
+Mew trick
+Midnight exploit
+Mimic Transform Rage glitch
+Mimic glitch (Japanese Diamond/Pearl)
+Mimic transform rage glitch
+Minimize and Substitute glitch
+Minor Glitches
+Minus World
+Minus World (Super Mario Bros.)
+Miscellaneous glitches
+MissingNo
+MissingNo.
+MissingNo. Glitch City
+MissingNo. glitch
+MissingNo glitch
+Missingning
+Missingno
+Missingno.
+Missingno. glitch
+Missingno glitch
+Misty
+Misty (Generation I glitch Trainers)
+Mobile System GB error traps
+Mojibake
+Morphing glitch
+Morphing glitch (disambiguation)
+Mossdeep City Delcatty glitch
+Mossdeep City Skitty glitch
+Move 00
+Move 0x00
+Move 0x00 (disambiguation)
+Move 0x00 arbitrary code execution
+Move 0x00 corruption
+Move 0x00 corruption (Generation I)
+Move 0x00 corruption instant victory glitch
+Move AI Glitch
+Move Relearner glitch
+Move ai glitch
+Move zero
+Mover Vigoroth cry glitch
+Moves Glitch
+Moving Strength boulder curiosity
+Mr. Chrono
+Mr. Fuji's house door glitch
+Mr Chrono
+Multi-hit Pay Day earnings glitch
+Munchlax
+Munchlax (Pokémon XD glitch Pokémon)
+Munchlax (disambiguation)
+Museum guide walk through walls glitch
+Mute Fuchsia City or Cerulean City
+Mute Route 214 glitch
+Mute Sendoff Spring glitch
+Mute the Music in Route 214
+Mute the Music in Route 214 Glitch
+Mute the music in Route 214
+Mute the music in pokemon diamond
+Mute the music in pokemon pearl
+Mute the music in pokémon diamond
+Mute the music in pokémon pearl
+Mute the music in the Pokémon League
+Mute the music in the pokemon league
+Mute the music in the pokémon league
+Mystery Egg
+Mystery Egg glitch
+Mystery Gift Pokédex registration glitch
+Mystery Gift delivery man glitch
+Mystery Gift item corruption
+Mystery Gift shop glitch
+Mystery Gift shop oversight
+Mystery Zone
+N/A
+NINTEN
+NPC and Cable Club lady glitch
+NPC binoculars glitch
+NPC collision bypassing glitches
+NPC moonwalk glitch
+NPC over the grass in Viridian Forest
+NPC walking behavior glitches
+Nacrene Gym bookcase glitch
+Name Generator
+Name Generator 2
+Natural glitch
+Neutral position bug
+Neutral position glitch
+Neutral position problem
+New Name
+New Name (disambiguation)
+News Reporter trick
+Ng'Mp
+NgMp
+Nickname any Pokémon (Generation III)
+Nickname shifting glitch
+Nidorino intro glitch
+Nightmare glitch
+Nimbasa Gym glitch
+Ninten
+Nintendo
+Nintendo 3DS Virtual Console
+Nintendo 3DS firmware exploits and homebrew
+Nintendo 64 crooked cartridge
+Nintendo DS Sleep Mode exploit
+Nintendo DS crooked cartridge
+Nintendo Wi-Fi Connection spoofing
+No clip
+No clipping
+No effect glitch move
+No effect glitch moves
+No expanded party international Select glitching
+No received Egg gift jingle
+No windows avail-able for popping
+No windows avail-able for popping.
+No windows available for popping
+Non-glitch exploit
+None
+None (glitch item)
+Now on debug
+Now on debug.
+O
+OAM DMA hijacking
+OPkMn4X
+OWRB
+O PkMn4 X
+Oak's Parcel prevented progress glitch
+Object Event
+Object event
+Object event.
+Octomark
+Offgao's memory editor
+Offgao memory editor
+Old Man Glitch
+Old Man Name Generator
+Old Man Name Generator 2
+Old Man Trick
+Old man full box glitch
+Old man glitch
+Old man trick
+Old man trick name generator
+Olivine House
+OobLG
+Opponent Full Heal and Full Restore oversight
+Opposing Trainer You healing glitch
+Opposing roster corruption
+Out of bounds
+Out of bounds Glitch City (Generation I)
+Out of bounds Glitch City (Generation II)
+Out of bounds Glitch Hell
+Over 9999 prize money potential
+Over 9999 prize money potential curiosity
+Overloaded party map corruption
+Overworld sprite trick
+P
+P8
+PATH
+PC4SH
+PC 4S H
+PC Pokémon 9 hybridization glitch
+PC numbers glitch
+PKMn pゥ ゥ (0xDC)
+POKéTRAINER (disambiguation)
+POKéWTRAINER
+POKé BB
+POKé BB(PKMN)dé
+POKé BB (disambiguation)
+PP Reset Glitch
+PP Up (useless)
+PP restore glitch
+PP underflow glitch
+PP underflow glitch (disambiguation)
+PPkMnp
+PRAMA Initiative
+PRINT error!
+PRNG glitch
+PR Video NPC Glitch
+PSRNG
+PSRNG abuse
+PSS Save Glitch
+PSS save glitch
+P (disambiguation)
+P ID
+P PkMn p' '
+Pac-Man
+Pac-Man World (Game Boy Advance)
+Pal Park Arceus glitch
+Pal Park Retire glitch
+Pal Park name encoding glitch
+Pal Park nickname glitch
+Pallet Town into Twinleaf Town conversion
+Park Ball battle mode graphics corruption glitch
+Park Ball glitch
+Partial battle escape
+Partial escape ghost capture glitch
+Partial escape glitch item
+Partial escape glitch move
+Partial escape instant victory glitch
+Partial switch glitch
+Partial trapping move Link Battle glitch
+Partial trapping move Mirror Move link battle glitch
+Partial trapping move link battle glitch
+Partial trapping move wrong side fainting glitch
+Party-based map distortion glitch
+Party Pokémon 214/212 encounter glitch
+Party item offset glitch
+Party remaining HP glitch
+Pay Day money glitch
+Pay Day money glitch (Generation III)
+Perpetual spinning effect
+Perpetual spinning glitch
+Pewter Gym skip glitch
+Phantom City
+Phantom Town
+PikaSav
+Pikablu
+Pikabud
+Pikachu's Beach arbitrary code execution
+Pikachu's ghost glitch
+Pikachu's glitch
+Pikachu brightening up Rock Tunnel curiosity
+Pikachu desync glitch
+Pikachu happiness oversight
+Pikachu off-screen glitch
+Pikachu off-screen glitch Trainer corruption glitch
+Pikachu off-screen glitch arbitrary code execution
+Pikachu placeholder glitch Pokémon
+Pikasav
+Pikawalk
+Pk
+PkMnRPkMn "
+PkMn (0xC5)
+PkMn (0xD8)
+PkMn (0xF7)
+PkMn (C5)
+PkMn (D8)
+PkMn (F7)
+PkMn ? A
+PkMn PkMn T
+PkMn pゥ ゥ
+PkMn pゥ ゥ (0xCE)
+PkMn pゥ ゥ (0xD6)
+PkMn pゥ ゥ (disambiguation)
+PkMn pゥぁ ゥぇ (CE)
+PkMn pゥぁ ゥぇ (D6)
+PkMn ◣ n
+PkMnaPkMnゥ ♂ fPkMnk
+Pk (disambiguation)
+Placeholder
+Play the Safari Zone in the dark
+Play the Safari Zone in the dark glitch
+Player Search System save glitch
+Player coordinates RAM writer
+Pocket Computer
+Pocket Doctor
+Poison/Burn animation with 0 HP
+Poison/Burn animation with 0 HP glitch
+Poison step avoidance glitch
+Poke bb
+Pokedex species glitch
+Pokegod
+Pokegods
+Pokemaniac
+Pokemart worker glitch
+Pokemon 152
+Pokemon Crystal (JP) GameShark codes
+Pokemon Crystal Gameshark Codes
+Pokemon Game Genie codes
+Pokemon Gold and Silver (JP) GameShark codes
+Pokemon Gold and Silver (KO) GameShark codes
+Pokemon Gold and Silver Gameshark Codes
+Pokemon Prof.
+Pokemon Prof. (Trainer class)
+Pokemon Red, Blue and Yellow Gameshark Codes
+Pokemon Red, Green, Blue and Yellow (JP) GameShark codes
+Pokemon Stadium 2 Error Handlers
+Pokemon Tower Ghost MissingNo.
+Pokemon Tower Pokedex glitch
+Pokemon Yellow predefined functions list
+Pokemon gameshark codes
+Pokemon gold debug
+Pokemon gold debug menu
+Pokemon gold debug mode
+Pokemon mart worker glitch
+Pokesav
+Poketrainer
+Pokewtrainer
+Pokkén Tournament glitches
+PokéCommunity
+PokéMart worker glitch
+PokéPC
+PokéPC effect
+Poké Ball amount bug
+Poké Ball amount glitch
+Poké Ball animation glitch
+Poké Mart marquee glitch
+Poké Mart no items sell map corruption glitch
+Poké Mart worker glitch
+Poké Radar music glitch
+Pokédex
+Pokédex (glitch item)
+Pokédex Species Glitch
+Pokédex category glitch
+Pokédex flag
+Pokédex flags
+Pokédex marker byte
+Pokédex move 0x00 manipulation
+Pokédex species glitch
+Pokégear instruction booklet trap
+Pokégear map out of bounds glitch
+Pokégod
+Pokégods
+Pokémaniac
+Pokémaniac (Generation I glitch Trainers)
+Pokémaniac (disambiguation)
+Pokémart glitch
+Pokémart worker glitch
+Pokémon-Amie gift glitch
+Pokémon-Amie reaction glitch
+Pokémon-Amie sprite glitch
+Pokémon 152
+Pokémon Bank hex:FF glitch Pokémon glitch
+Pokémon Blue any% No Save Corruption speedrun route
+Pokémon Brown Mode
+Pokémon Brown Mode (Pokémon Yellow)
+Pokémon Cloning
+Pokémon Cloning (Emerald)
+Pokémon Cloning (Generation I)
+Pokémon Cloning (Generation II)
+Pokémon Cloning (Generation IV)
+Pokémon Cloning (Generation VI)
+Pokémon Communication Center SRAM glitch
+Pokémon Communication Center SRAM glitches
+Pokémon Crystal (JP) GameShark codes
+Pokémon Crystal GameShark codes
+Pokémon Crystal Game Genie codes
+Pokémon Crystal Gameshark Codes
+Pokémon Crystal any% speedrun route
+Pokémon Day Care sign glitch
+Pokémon FireRed/LeafGreen predefined functions list
+Pokémon Fun Fest Celebi Celebration glitch
+Pokémon GCL Version
+Pokémon GameShark codes
+Pokémon Game Genie codes
+Pokémon Gameshark Codes
+Pokémon Gold and Silver (JP) GameShark codes
+Pokémon Gold and Silver (KO) GameShark codes
+Pokémon Gold and Silver GameShark codes
+Pokémon Gold and Silver Gameshark Codes
+Pokémon League descent glitch maps
+Pokémon League descent glitch maps 0xED-0xEE, 0xF1-0xF4
+Pokémon League descent glitch maps 0xED-0xEE, 0xF1-0xF4 (Yellow)
+Pokémon League descent maps
+Pokémon League glitch map
+Pokémon League glitch map (disambiguation)
+Pokémon League glitch maps 0xED-0xEE, 0xF1-0xF4 (Red/Blue)
+Pokémon Mart glitch
+Pokémon News Reporter corruption
+Pokémon No. 152
+Pokémon Prof.
+Pokémon Prof. (Trainer class)
+Pokémon Red, Blue and Yellow GameShark codes
+Pokémon Red, Blue and Yellow Gameshark Codes
+Pokémon Red, Green, Blue, Yellow (JP) Gameshark Codes
+Pokémon Red, Green, Blue and Yellow (JP) GameShark codes
+Pokémon Red, Green, Blue and Yellow (JP) Gameshark Codes
+Pokémon Red and Blue Game Genie codes
+Pokémon Red and Blue randomizer code
+Pokémon Red and Green (J) Gameshark Codes
+Pokémon Refresh form cry glitch
+Pokémon Ruby/Sapphire/Emerald Co-op Mode
+Pokémon Speedruns (website)
+Pokémon Stadium 2 error handlers
+Pokémon Tower Ghost MissingNo.
+Pokémon Tower Pokédex glitch
+Pokémon Yellow (JP) Game Genie codes
+Pokémon Yellow C109 ID 0x0F arbitrary code execution
+Pokémon Yellow Game Genie codes
+Pokémon Yellow Pijack Version
+Pokémon Yellow predefined functions list
+Pokémon Yellow reverse badge acquisition no underflow route
+Pokémon and Trainer color test menu and TM/HM compatibility checker
+Pokémon cloning
+Pokémon cloning (GTS method, Generation IV)
+Pokémon cloning (Generation I)
+Pokémon cloning (Generation II)
+Pokémon cloning (Generation IV)
+Pokémon cloning (Generation VI)
+Pokémon cloning (disambiguation)
+Pokémon cloning (regular save method, Generation IV)
+Pokémon gold debug
+Pokémon gold debug menu
+Pokémon gold debug mode
+Pokémon mart glitch
+Pokémon mart worker glitch
+Pokémon merge glitch
+Pokémon sprite corruption
+Pokémon sprite corruptions
+Pokémon sprite corruptions (Generation I)
+Pokémon switch message glitch
+Pokémon with illegal moves
+Pokémon with similar cries to other Pokémon on low HP
+Pokésav
+Pokéstar Studios opponent
+Pokéstar Studios opponents
+Pokéstar Studios opponents (glitch Pokémon)
+Pokétrainer
+Pokéwtrainer
+Pomeg Berry Glitch
+Pomeg corruption glitch
+Pomeg data corruption glitch
+Pomeg glitch
+Pomeg glitch sprite glitch
+Port tileset carpet oversight
+PosterDex
+Potion glitch
+Potion glitch (disambiguation)
+Prama's Advanced Tweaking Heaven
+Pre-release information
+Prerelease information
+Present glitch
+Present text overflow
+Prevented progress
+Prevented progress glitch
+Primal Reversion Zoroark glitch
+Print error
+Print error!
+Printer error
+Printer errors
+Prism Tower fence glitch
+Private beta
+Prof. Oak
+Prof. Oak (disambiguation)
+Prof. Oak (unused Trainer class)
+Professor Oak
+Professor Oak's Lab tilemap corruption
+Professor Oak's Lab tilemap corruption glitch
+Professor Oak's lab leaving glitch
+Professor Oak's lab music glitch
+Professor Oak's lab tilemap corruption glitch
+Program counter
+Programming logic error
+Protect rate table bypassing
+Pseudo-LG
+Pseudo-random number generator
+PseudoLG
+Pseudo LG
+Pseudorandom number generator
+Pseudorandom number generator abuse
+Psychic
+Psychic/Psywave/Night Shade animation glitch
+Psychic (Generation I glitch Trainers)
+Psychonauts
+Psywave desync glitch
+Public beta
+Pursuit-Revival glitch
+Pゥ 4$
+Pゥ 4₽
+Pゥ ゥ ゥ
+Q
+Q;MP-
+Q;MP- (disambiguation)
+QGnS I
+QGnS I (disambiguation)
+Q Glitch
+Q Trick
+Quantity only arbitrary code execution
+R/B Name Generator
+R/B Name Generator 2
+R/B Stat Changer
+R/S Beta Flower Shop
+R/S Empty Blue Room
+R/S Flower Shop (Festa 2002 demo)
+R/S Large Blue Room
+RAM
+RAM LOL glitch
+RETIRE glitch
+RNG abuse
+RNG correlation (Generation I)
+RNG oddities (Generation III)
+ROM
+ROM image
+ROMhacking.net
+Rage glitch
+Ragon Pokédex entry
+Raimon Gym glitch
+RainbowBadge
+RainbowBadge (glitch item)
+Rainer
+Random-access memory
+Read-Only Memory
+Real Dasshutsu Game x Nintendo 3DS: Chou Hakai Keikaku Kara no Dasshutsu
+Reboard S.S. Anne
+Reboard St. Anne
+Reboard the S.S. Anne
+Reboard the S.S. Anne glitch
+Record Corner (FireRed/LeafGreen)
+Record mixer (firered)
+Record mixer (firered/leafgreen)
+Record mixer (leafgreen)
+Record mixer firered
+Record mixer leafgreen
+Record room (firered)
+Record room (firered/leafgreen)
+Record room (leafgreen)
+Record room firered
+Record room leafgreen
+Records room (firered)
+Records room (firered/leafgreen)
+Records room (leafgreen)
+Records room firered
+Records room leafgreen
+Recover/Softboiled/Rest glitch
+Recover/Softboiled glitch
+Recover glitch
+Recovery move glitch
+Red
+Red-bar sound effect manipulation
+Red (disambiguation)
+Red bar manipulation
+Redirection glitch map
+Redirection glitch maps
+Reflect/Light Screen overflow glitch
+Reflect/Light Screen stat overflow glitch
+Remaining HP glitch
+Remaining HP glitch (disambiguation)
+Remaining PP into species Select glitch
+Remote code execution
+Remote control Pikachu
+Remove Snorlax
+Remove Snorlax glitch
+Remove snorlax
+Removing Snorlax
+Removing Snorlax glitch
+Removing overworld pokemon
+Reset
+Reset delay
+Reset fadeout delay
+Rest glitch
+Retire glitch
+Reusable RAM writer
+Rhydon glitch
+Rhydon trap
+Rival
+Rival's
+Rival's (disambiguation)
+Rival's effect
+Rival (disambiguation)
+Rival LG
+Rival LOL glitch
+Rival champion (Generation I glitch Trainers)
+Rival class 1
+Rival class 1 (Generation I glitch Trainers)
+Rival class 2 (Generation I glitch Trainers)
+Rng abuse
+Roaming Pokémon IV glitch
+Roaming Pokémon Roar glitch
+Roaming Pokémon encounter glitch
+Roaming Pokémon glitch
+Roaming Pokémon glitch (disambiguation)
+Roaming Pokémon individual values issue
+Roaming Pokémon individual values oversight
+Roaming items
+Roaming pokemon individual values glitch
+Roaming pokemon individual values issue
+Roaming pokemon ivs glitch
+Roaming pokemon ivs issue
+Roaming pokémon individual values glitch
+Roaming pokémon ivs glitch
+Roaming pokémon ivs issue
+Rocker
+Rocker (Generation I glitch Trainers)
+Rocker (disambiguation)
+Rocket
+Rocket (Generation I glitch Trainers)
+Rocket (disambiguation)
+Rocky Helmet glitch
+Rollout storage glitch
+Roster modification (Red/Green)
+Route 0
+Route 112 Hiker moving glitch
+Route 119 Trainer rematch curiosity
+Route 119 Trainer rematch glitch
+Route 124 half rock
+Route 224 tile oversight
+Ruby/Sapphire/Emerald Co-op
+S.S. Anne Ship Truck
+S.S. Anne Truck
+SONY
+SPECIAL
+SPECIAL (Gold/Silver/Crystal)
+SRAM
+SRAM clear oversight (Generation I)
+SRAM glitch
+SRAM glitches (Generation II)
+Sabrina
+Sabrina (Generation I glitch Trainers)
+Sabrina (disambiguation)
+Sabrina instant victory
+Safari Ball
+Safari Ball (glitch item)
+Safari Zone exit glitch
+Saffron Gym glitch
+Sailor
+Sailor (Generation I glitch Trainers)
+Sand Ornament collapse glitch
+Sand Ornament glitch
+Sandstorm Spikes glitch
+Sanrio Timenet: Kako-Hen and Mirai-Hen
+Santalune Gym tent glitch
+Save A button held glitch
+Save abuse glitch
+Save corruption glitch
+Save data
+Save file
+Save state
+Savestate
+Savestates
+Scatterbug Egg Moves glitch
+Scientist
+Scientist (Generation I glitch Trainers)
+Scientist (disambiguation)
+Scrambled Bulbasaur
+Scrambled Bulbasaur (glitch Pokémon)
+Screen fade to white effect
+Screwed-up sounds
+Screwed up sounds
+Scrolling beige box
+Sea Route 19 item 3 morphing
+Sea Route 19 item 3 morphing glitch
+Sea Route 21 0x44 text box glitch
+Sea Route 21 0x44 text box glitch (English Yellow)
+Sea Route 21 hex:44 glitch text box
+Seafoam Islands glitch text boxes
+Seafoam Islands walk on spot glitch
+Second Pallet Town
+Second type glitch
+Secret Power volcano animation glitch
+See a Ghost without a Silph Scope
+Select bug
+Select bugs
+Select glitch
+Select glitch red-bar
+Select glitch redbar
+Select glitch unfinished conversion
+Select glitches
+Select glitches (Gold/Silver Nintendo Space World 1997 demo)
+Select glitches (Gold/Silver Nintendo Space World 1997 trial demo)
+Selfdestruct and Substitute glitch
+Send party Pokémon to a new game
+Send party Pokémon to a new game glitch
+Sendoff Spring music glitch
+Sendoff Spring music glitch (disambiguation)
+Sendoff spring to silent spring
+Sendoff spring to silent spring glitch
+Sennen Kazoku
+Sevii Islands 8 and 9
+Shiny Celebi trick
+Shiny Celebi trick (party method)
+Shiny Shadow Pokémon glitch
+Shiny Shadow Pokémon oversight
+Shiny Transform switch glitch
+Shiny variation glitch
+Shop fishing glitch
+Sign glitch
+Sign glitch (disambiguation)
+Signed
+Signed and unsigned integers
+Signed integer
+Silent Indigo Plateau
+Silent Indigo Plateau glitch
+Silent route 214 glitch
+Silent spring
+Silent spring glitch
+Silph Co. 11F above lift door glitch
+Silph Co. 11F exit curiosity
+Silph Co. 11F lift blocked exit glitch
+Silph Co. PC Glitch
+Silph Co. PC glitch
+Silph Co. trapped glitch
+Simultaneous Weather Glitch
+Simultaneous weather glitch
+Skeetendo
+Sketch glitch
+Sketch glitch (Gold/Silver Nintendo Space World 1997 demo)
+Sketch glitch (Nintendo Space World 1997 demo)
+Sketch glitch (disambiguation)
+Sketch glitch (final Gold/Silver/Crystal)
+Skip Pewter Gym
+Skip the First Gym
+Skip to Level 100 Select glitch
+Skip to Level 100 glitch
+Skip to the Hall of Fame
+Sky Drop Red Card glitch
+Sky Drop Spiky Shield glitch
+Sky Drop glitch
+Sky Drop glitch (Black/White)
+Sky Drop glitch (Generation V)
+Sky Drop glitch (disambiguation)
+Sky Drop invisible Pokémon glitch
+Sky Drop invisible Pokémon glitch (disambiguation)
+Sky Drop invisible foe glitch
+Sky Drop invisible user glitch
+Sky Pillar glitch
+Sky Trainer glitch
+Sky Trainer interaction curiosity
+Sky Trainer interaction glitch
+Slide Pokémon
+Slide and doll glitch
+Slot machine behaviors (Generation I)
+Slot machine glitch
+Slot machine glitch (Generation I)
+Slowpoke Well out of bounds corruption
+Snapshot
+Soft reset curiosity
+Softboiled glitch
+Sonic the Hedgehog (Genesis)
+Sonic the Hedgehog 2 (Genesis)
+Sony
+Sootopolis rock wall glitch
+Sootopolis tile permission glitch
+SoulBadge
+SoulBadge (glitch item)
+Sound bank
+Special (location)
+Special Area
+Special Defense badge boost glitch
+Special MissingNo.
+Special menu Select glitch
+Special stat/Pokémon converter
+Special stat encounter checker
+Spider-Man 2
+Spinning glitch
+Sprite Chaos
+Stable unstable MissingNo.
+Stable unstable Missingno.
+Stack
+Stack corruption
+Stack pointer
+Staff List
+Stand On A Tree
+Stand on a Tree
+Stand on a Tree (Emerald)
+Stand on a tree
+Starter pikachu happiness oversight
+StatDex
+StatDex/RB:093
+StatDex/RBY:093
+StatDex/Y:079
+StatDex/Y:092
+StatDex/Y:093
+Stat modification glitches
+Statue behavior glitch
+Statue behaviour glitch
+Status screen glitch
+Stealing other Trainer's Pokémon
+Stealing other Trainer's Pokémon (Generation III)
+Stealing other Trainer's Pokémon (Red/Green)
+Stealing other Trainer's Pokémon (disambiguation)
+Stereo Sound Glitch
+Stereo sound glitch
+Sticky Hold glitch
+Sticky hold glitch
+Stolen Pokeball Glitch
+Stolen Poké Ball glitch
+Storage box remaining HP glitch
+Strange Mart
+Struggle
+Stuck in a wall
+Stuck in wall
+Sub-glitch
+Sub-glitches
+Submerge glitch
+Substitute 1/4 HP glitch
+Substitute drain move not missing glitch
+Substitute drain restore glitch
+Substitute glitch
+Substitute glitch (disambiguation)
+Substitute ¼ HP glitch
+Sucker Punch glitch
+Sudowoodo sprite glitches
+Summary screen messages
+Super Effective move AI flaw
+Super Glitch
+Super Glitch (Generation I)
+Super Glitch (Generation III)
+Super Glitch (disambiguation)
+Super Glitch item
+Super Mario 64
+Super Mario 64 DS
+Super Mario Bros.
+Super Mario Bros. 3
+Super Mario Odyssey
+Super Mario World
+Super Metroid
+Super Nerd
+Super Nerd (Generation I glitch Trainers)
+Super Nerd (disambiguation)
+Super Smash Bros. Melee
+Super Smash Bros. for Nintendo 3DS
+Super Training menu triggering glitch
+Super Training void effect
+Super effective move AI flaw
+Surf down glitch
+Surf from a cliff
+Surf glitch
+Surf glitch (disambiguation)
+Surf landing glitch
+Surf on land
+Surf on land (Generation I)
+Surf on land (Generation III)
+Surf on land (disambiguation)
+Surf through Elite Four door glitch
+Surf through elite four door glitch
+Surfing/Walking on Cycling Road
+Surfing glitch
+Surfing on land
+Surfing on statues
+Swapping Transform moves glitch
+Sweet Scent shop glitch
+Sweet honey glitch
+Sweet scent glitch
+Sweet scent shop glitch
+Swift miss glitch
+Swimmer
+Swimmer (Generation I glitch Trainers)
+Swimmer (disambiguation)
+Switch
+Switch PP underflow glitch
+Switch cloning (Generation III)
+Switch glitch
+Switch glitch (Generation III)
+Switch glitch (disambiguation)
+Switches
+Sylveon Pokédex entry glitch
+Symbiosis Eject Button glitch
+TAS
+TCRF
+TM/HMs outside of the TM/HM pocket
+TM04 (useless)
+TM28 (useless)
+TM49 localisation oversight
+TM49 localization oversight
+TM50 sprite oversight
+TM51
+TM51 (disambiguation)
+TM51 (glitch item)
+TM52
+TM52 (disambiguation)
+TM52 (glitch item)
+TM53
+TM53 (disambiguation)
+TM53 (glitch item)
+TM54
+TM54 (disambiguation)
+TM54 (glitch item)
+TM55
+TM55 (disambiguation)
+TMHMDex
+TMHMDex/C:191
+TMHMDex/C:192
+TMHMDex/C:193
+TMHMDex/C:194
+TMHMDex/C:196
+TMHMDex/C:197
+TMHMDex/C:198
+TMHMDex/C:199
+TMHMDex/C:200
+TMHMDex/C:201
+TMHMDex/C:202
+TMHMDex/C:203
+TMHMDex/C:204
+TMHMDex/C:205
+TMHMDex/C:206
+TMHMDex/C:207
+TMHMDex/C:208
+TMHMDex/C:209
+TMHMDex/C:210
+TMHMDex/C:211
+TMHMDex/C:212
+TMHMDex/C:213
+TMHMDex/C:214
+TMHMDex/C:215
+TMHMDex/C:216
+TMHMDex/C:217
+TMHMDex/C:218
+TMHMDex/C:219
+TMHMDex/C:219 (Nintendo 3DS Virtual Console)
+TMHMDex/C:221
+TMHMDex/C:222
+TMHMDex/C:223
+TMHMDex/C:224
+TMHMDex/C:225
+TMHMDex/C:226
+TMHMDex/C:227
+TMHMDex/C:228
+TMHMDex/C:229
+TMHMDex/C:230
+TMHMDex/C:231
+TMHMDex/C:232
+TMHMDex/C:233
+TMHMDex/C:234
+TMHMDex/C:235
+TMHMDex/C:236
+TMHMDex/C:237
+TMHMDex/C:238
+TMHMDex/C:239
+TMHMDex/C:240
+TMHMDex/C:241
+TMHMDex/C:242
+TMHMDex/C:243
+TMHMDex/C:244
+TMHMDex/C:245
+TMHMDex/C:246
+TMHMDex/C:247
+TMHMDex/C:248
+TMHMDex/C:249
+TMHMDex/G:223
+TMHMDex/G:226
+TMHMDex/G:239
+TMHMDex/G:243
+TMHMDex/G:245
+TMHMDex/G:248
+TMHMDex/GS:191
+TMHMDex/GS:192
+TMHMDex/GS:193
+TMHMDex/GS:194
+TMHMDex/GS:196
+TMHMDex/GS:197
+TMHMDex/GS:198
+TMHMDex/GS:199
+TMHMDex/GS:200
+TMHMDex/GS:201
+TMHMDex/GS:202
+TMHMDex/GS:203
+TMHMDex/GS:204
+TMHMDex/GS:205
+TMHMDex/GS:206
+TMHMDex/GS:207
+TMHMDex/GS:208
+TMHMDex/GS:209
+TMHMDex/GS:210
+TMHMDex/GS:211
+TMHMDex/GS:212
+TMHMDex/GS:213
+TMHMDex/GS:214
+TMHMDex/GS:214 (Nintendo 3DS Virtual Console)
+TMHMDex/GS:215
+TMHMDex/GS:216
+TMHMDex/GS:217
+TMHMDex/GS:218
+TMHMDex/GS:219
+TMHMDex/GS:221
+TMHMDex/GS:222
+TMHMDex/GS:223
+TMHMDex/GS:223 (disambiguation)
+TMHMDex/GS:224
+TMHMDex/GS:225
+TMHMDex/GS:226
+TMHMDex/GS:226 (disambiguation)
+TMHMDex/GS:227
+TMHMDex/GS:228
+TMHMDex/GS:229
+TMHMDex/GS:230
+TMHMDex/GS:231
+TMHMDex/GS:232
+TMHMDex/GS:233
+TMHMDex/GS:234
+TMHMDex/GS:235
+TMHMDex/GS:236
+TMHMDex/GS:237
+TMHMDex/GS:238
+TMHMDex/GS:239
+TMHMDex/GS:239 (disambiguation)
+TMHMDex/GS:240
+TMHMDex/GS:241
+TMHMDex/GS:242
+TMHMDex/GS:243
+TMHMDex/GS:243 (disambiguation)
+TMHMDex/GS:244
+TMHMDex/GS:245
+TMHMDex/GS:245 (disambiguation)
+TMHMDex/GS:246
+TMHMDex/GS:247
+TMHMDex/GS:248
+TMHMDex/GS:248 (disambiguation)
+TMHMDex/GS:249
+TMHMDex/GSC:194
+TMHMDex/GSC:238
+TMHMDex/S:223
+TMHMDex/S:226
+TMHMDex/S:239
+TMHMDex/S:243
+TMHMDex/S:245
+TMHMDex/S:248
+TMHMDexKO/GS:241
+TMHMDexKO/GS:245
+TMTRAINER
+TMTRAINER effect
+TM TRAINER
+TM and HM moves
+TM sprite oversight
+TM text glitch
+TPM mart buffer overflow glitch
+TP Item
+TRsRockin
+Tamer
+Tamer (Generation I glitch Trainers)
+Tasks
+Team Aqua Hideout Dive glitch
+Team Rocket glitch
+Team Rocket glitch (disambiguation)
+Tehe
+Ten ?
+Ten ? marks
+Ten question marks
+Terrain and weather graphical glitch
+Teru-Sama
+Teru Sama
+Terusama
+Test event
+Test event?
+Tetris DX
+Text box ID matching
+Text pointer item ball manipulation
+Text pointer manipulation
+Text pointer manipulation mart buffer overflow glitch
+TheZZAZZGlitch's memory editor
+The Big HEX List
+The Big List
+The Cutting Room Floor
+The Hooked Dragonite
+The Hooked Metapod
+The Legend of Zelda: Majora's Mask (Nintendo 64)
+The Legend of Zelda: Ocarina of Time (Nintendo 64)
+The Legend of Zelda: Twilight Princess
+The Legendary Starfy
+The file data is destroyed!
+The save file is corrupted!
+The save file is corrupted. The previous save file will be loaded.
+The void
+The window save area was exceeded.
+This Game Pak is designed only for use on the Game Boy Color
+This Game Pak is designed only for use on the Game Boy Color.
+This Pokémon cannot be traded.
+This game pak is designed only for use on the game boy color
+This game pak is designed only for use on the game boy color.
+Threefold PP Up removal glitch
+ThunderBadge
+ThunderBadge (glitch item)
+Thunder Glitch
+Thunderbolt Glitch
+Thunderbolt glitch
+Tile Chaos
+Time Capsule exploit
+Time glitch
+Tin Tower and Whirl Islands after skipping
+Tiny Pokémon
+Tiny pokemon
+Title screen VRAM oversight
+Too bad! The trade w
+Too bad! The trade was canceled!
+Too bad! The trade was canceled! (disambiguation)
+Too bad! The trade was canceled! (effect)
+Too bad! The trade was canceled! effect
+Tool assisted speedrun
+Tool assisted super play
+Total items changing glitch Pokémon
+Totem Alolan Raticate cry glitch
+Tower Tycoon event skip
+Tower tycoon event skip
+Tower tycoon skip
+Trade completed!
+Trade completed! (disambiguation)
+Trade evolution GTS glitch
+Trade evolution Time Capsule glitch
+Trade evolution glitch
+Trade evolution glitch (disambiguation)
+Trade link up shore encounter glitch
+Trade link up shore encounter trick
+Trade palette glitch
+Trainer
+Trainer-Fly
+Trainer-Fly glitch
+TrainerDex
+TrainerDex/Data (Green)
+TrainerDex/Data (Red/Blue)
+TrainerDex/Data (Ruby)
+TrainerDex/Data (Yellow)
+TrainerDex/GS:18945
+TrainerDex/GS:28929
+TrainerDex/RB:000
+TrainerDex/RB:048
+TrainerDex/RB:049
+TrainerDex/RB:050
+TrainerDex/RB:051
+TrainerDex/RB:052
+TrainerDex/RB:053
+TrainerDex/RB:054
+TrainerDex/RB:055
+TrainerDex/RB:056
+TrainerDex/RB:057
+TrainerDex/RB:058
+TrainerDex/RB:059
+TrainerDex/RB:060
+TrainerDex/RB:061
+TrainerDex/RB:062
+TrainerDex/RB:063
+TrainerDex/RB:064
+TrainerDex/RB:065
+TrainerDex/RB:066
+TrainerDex/RB:067
+TrainerDex/RB:068
+TrainerDex/RB:069
+TrainerDex/RB:070
+TrainerDex/RB:071
+TrainerDex/RB:072
+TrainerDex/RB:073
+TrainerDex/RB:074
+TrainerDex/RB:075
+TrainerDex/RB:076
+TrainerDex/RB:077
+TrainerDex/RB:078
+TrainerDex/RB:079
+TrainerDex/RB:080
+TrainerDex/RB:081
+TrainerDex/RB:082
+TrainerDex/RB:083
+TrainerDex/RB:084
+TrainerDex/RB:085
+TrainerDex/RB:086
+TrainerDex/RB:087
+TrainerDex/RB:088
+TrainerDex/RB:089
+TrainerDex/RB:090
+TrainerDex/RB:091
+TrainerDex/RB:092
+TrainerDex/RB:093
+TrainerDex/RB:094
+TrainerDex/RB:095
+TrainerDex/RB:096
+TrainerDex/RB:097
+TrainerDex/RB:098
+TrainerDex/RB:099
+TrainerDex/RB:100
+TrainerDex/RB:101
+TrainerDex/RB:102
+TrainerDex/RB:103
+TrainerDex/RB:104
+TrainerDex/RB:105
+TrainerDex/RB:106
+TrainerDex/RB:107
+TrainerDex/RB:108
+TrainerDex/RB:109
+TrainerDex/RB:110
+TrainerDex/RB:111
+TrainerDex/RB:112
+TrainerDex/RB:113
+TrainerDex/RB:114
+TrainerDex/RB:115
+TrainerDex/RB:116
+TrainerDex/RB:117
+TrainerDex/RB:118
+TrainerDex/RB:119
+TrainerDex/RB:120
+TrainerDex/RB:121
+TrainerDex/RB:122
+TrainerDex/RB:123
+TrainerDex/RB:124
+TrainerDex/RB:125
+TrainerDex/RB:126
+TrainerDex/RB:127
+TrainerDex/RB:128
+TrainerDex/RB:129
+TrainerDex/RB:130
+TrainerDex/RB:131
+TrainerDex/RB:132
+TrainerDex/RB:133
+TrainerDex/RB:134
+TrainerDex/RB:135
+TrainerDex/RB:136
+TrainerDex/RB:137
+TrainerDex/RB:138
+TrainerDex/RB:139
+TrainerDex/RB:140
+TrainerDex/RB:141
+TrainerDex/RB:142
+TrainerDex/RB:143
+TrainerDex/RB:144
+TrainerDex/RB:145
+TrainerDex/RB:146
+TrainerDex/RB:147
+TrainerDex/RB:148
+TrainerDex/RB:149
+TrainerDex/RB:150
+TrainerDex/RB:151
+TrainerDex/RB:152
+TrainerDex/RB:153
+TrainerDex/RB:154
+TrainerDex/RB:155
+TrainerDex/RB:156
+TrainerDex/RB:157
+TrainerDex/RB:158
+TrainerDex/RB:159
+TrainerDex/RB:160
+TrainerDex/RB:161
+TrainerDex/RB:162
+TrainerDex/RB:163
+TrainerDex/RB:164
+TrainerDex/RB:165
+TrainerDex/RB:166
+TrainerDex/RB:167
+TrainerDex/RB:168
+TrainerDex/RB:169
+TrainerDex/RB:170
+TrainerDex/RB:171
+TrainerDex/RB:172
+TrainerDex/RB:173
+TrainerDex/RB:174
+TrainerDex/RB:175
+TrainerDex/RB:176
+TrainerDex/RB:177
+TrainerDex/RB:178
+TrainerDex/RB:179
+TrainerDex/RB:180
+TrainerDex/RB:181
+TrainerDex/RB:182
+TrainerDex/RB:183
+TrainerDex/RB:184
+TrainerDex/RB:185
+TrainerDex/RB:186
+TrainerDex/RB:187
+TrainerDex/RB:188
+TrainerDex/RB:189
+TrainerDex/RB:190
+TrainerDex/RB:191
+TrainerDex/RB:192
+TrainerDex/RB:193
+TrainerDex/RB:194
+TrainerDex/RB:195
+TrainerDex/RB:196
+TrainerDex/RB:197
+TrainerDex/RB:198
+TrainerDex/RB:199
+TrainerDex/RB:200
+TrainerDex/RB:201
+TrainerDex/RB:202
+TrainerDex/RB:203
+TrainerDex/RB:204
+TrainerDex/RB:205
+TrainerDex/RB:206
+TrainerDex/RB:207
+TrainerDex/RB:208
+TrainerDex/RB:209
+TrainerDex/RB:210
+TrainerDex/RB:211
+TrainerDex/RB:212
+TrainerDex/RB:213
+TrainerDex/RB:214
+TrainerDex/RB:215
+TrainerDex/RB:216
+TrainerDex/RB:217
+TrainerDex/RB:218
+TrainerDex/RB:219
+TrainerDex/RB:220
+TrainerDex/RB:221
+TrainerDex/RB:222
+TrainerDex/RB:223
+TrainerDex/RB:224
+TrainerDex/RB:225
+TrainerDex/RB:226
+TrainerDex/RB:227
+TrainerDex/RB:228
+TrainerDex/RB:229
+TrainerDex/RB:230
+TrainerDex/RB:231
+TrainerDex/RB:232
+TrainerDex/RB:233
+TrainerDex/RB:234
+TrainerDex/RB:235
+TrainerDex/RB:236
+TrainerDex/RB:237
+TrainerDex/RB:238
+TrainerDex/RB:239
+TrainerDex/RB:240
+TrainerDex/RB:241
+TrainerDex/RB:242
+TrainerDex/RB:243
+TrainerDex/RB:244
+TrainerDex/RB:245
+TrainerDex/RB:246
+TrainerDex/RB:247
+TrainerDex/RB:248
+TrainerDex/RB:249
+TrainerDex/RB:250
+TrainerDex/RB:251
+TrainerDex/RB:252
+TrainerDex/RB:253
+TrainerDex/RB:254
+TrainerDex/RB:255
+TrainerDex/Y:000
+TrainerDex/Y:048
+TrainerDex/Y:049
+TrainerDex/Y:050
+TrainerDex/Y:051
+TrainerDex/Y:052
+TrainerDex/Y:053
+TrainerDex/Y:054
+TrainerDex/Y:055
+TrainerDex/Y:056
+TrainerDex/Y:057
+TrainerDex/Y:058
+Trainer (disambiguation)
+Trainer (glitch Pokémon)
+Trainer 4
+Trainer AI data
+Trainer AI data (Pokémon Red and Blue)
+Trainer Card transition screen
+Trainer Card transition screens
+Trainer Collision Glitch
+Trainer Counter/Mirror Coat damage glitch
+Trainer Fly
+Trainer Fly glitch
+Trainer House glitches
+Trainer Ledge/Fence Collision Glitch
+Trainer Ledge Collision Glitch
+Trainer PR Videos NPC glitch
+Trainer PR Videos glitch
+Trainer escape Trainer Pokémon finder
+Trainer escape glitch
+Trainer fence collision glitch
+Trainer grass displacement glitch
+Trainer mutation glitch
+Trainer script corruption (Generation III)
+Trainerdex
+Transform Empty Move Glitch
+Transform PP restore glitch
+Transform Rage glitch
+Transform a Water-type Pokémon into Mew glitch
+Transform assumption glitch
+Transform empty move glitch
+Transform glitch
+Transform glitch (disambiguation)
+Transform held item glitch
+Transform into a Ditto
+Transform rage glitch
+Transformed Ash-Greninja Water Shuriken glitch
+Transformed Ash-Greninja Water Shurikin glitch
+Translation error
+Translation problem
+Translation problems
+Transmission error
+Transmission errors
+Trap
+Trapped at Burgled house oversight
+Trapped at burgled house oversight
+Trapped in Pokémon Mansion
+Trapped in Pokémon Mansion oversight
+Trapping Ability flee glitch
+Trapping move Link Battle glitch
+Trapping move and sleep glitch
+Trick Room glitch
+Trick Zone
+Truck
+Truck glitch
+TryObjectEvent arbitrary code execution
+Tweaking
+Type-changing Curse glitch
+Type-changing Curse glitches
+TypeDex
+TypeDex/RB:028
+TypeDex/RB:030
+TypeDex/RB:033
+TypeDex/RB:035
+TypeDex/RB:039
+TypeDex/RB:040
+TypeDex/RB:043
+TypeDex/RB:047
+TypeDex/RB:049
+TypeDex/RB:050
+TypeDex/RB:052
+TypeDex/RB:053
+TypeDex/RB:055
+TypeDex/RB:057
+TypeDex/RB:058
+TypeDex/RB:059
+TypeDex/RB:060
+TypeDex/RB:063
+TypeDex/RB:064
+TypeDex/RB:065
+TypeDex/RB:066
+TypeDex/RB:073
+TypeDex/RB:078
+TypeDex/RB:079
+TypeDex/RB:080
+TypeDex/RB:081
+TypeDex/RB:083
+TypeDex/RB:097
+TypeDex/RB:112
+TypeDex/RB:119
+TypeDex/RB:121
+TypeDex/RB:122
+TypeDex/RB:123
+TypeDex/RB:157
+TypeDex/RB:165
+TypeDex/RB:169
+TypeDex/RB:177
+TypeDex/RB:192
+TypeDex/RB:200
+TypeDex/RB:232
+TypeDex/RBY:030
+TypeDex/RBY:033
+TypeDex/RBY:035
+TypeDex/RBY:040
+TypeDex/RBY:043
+TypeDex/RBY:047
+TypeDex/RBY:049
+TypeDex/RBY:050
+TypeDex/RBY:052
+TypeDex/RBY:053
+TypeDex/RBY:055
+TypeDex/RBY:057
+TypeDex/RBY:063
+TypeDex/RBY:064
+TypeDex/RBY:065
+TypeDex/RBY:073
+TypeDex/RBY:079
+TypeDex/RBY:080
+TypeDex/RBY:165
+TypeDex/RBY:192
+TypeDex/RBY:200
+TypeDex/Y:030
+TypeDex/Y:033
+TypeDex/Y:035
+TypeDex/Y:036
+TypeDex/Y:037
+TypeDex/Y:040
+TypeDex/Y:042
+TypeDex/Y:043
+TypeDex/Y:047
+TypeDex/Y:049
+TypeDex/Y:050
+TypeDex/Y:052
+TypeDex/Y:053
+TypeDex/Y:055
+TypeDex/Y:057
+TypeDex/Y:060
+TypeDex/Y:063
+TypeDex/Y:064
+TypeDex/Y:065
+TypeDex/Y:066
+TypeDex/Y:073
+TypeDex/Y:078
+TypeDex/Y:079
+TypeDex/Y:080
+TypeDex/Y:083
+TypeDex/Y:089
+TypeDex/Y:115
+TypeDex/Y:125
+TypeDex/Y:165
+TypeDex/Y:192
+TypeDex/Y:198
+TypeDex/Y:200
+TypeDex/Y:207
+TypeDex/Y:209
+TypeDex/Y:233
+Type 0x20 corruption glitch
+Type 0xD0 move glitch
+Typedex
+U
+Ultimate Spider-Man
+Underground Path's inaccessible section
+Unexpected reset
+Unexpected resets
+Unidentified Pokémon silhouette
+Unintended ROM code execution
+Union Room wrong-warping glitch
+Union room glitch
+Units of computing data
+Unknown opcode
+Unlicensed Pokémon
+Unlicensed Pokémon content
+Unlimited continues glitch
+Unlimited continues glitch (Stadium 2)
+Unlimited massages
+Unlimited master balls
+Unlimited master balls (colosseum)
+Unlimited masterballs
+Unlimited masterballs (colosseum)
+Unnamed Trading Card Game creature
+Unobtainable Max Elixer
+UnownDex
+UnownDex/GS:000
+UnownDex/GS:027
+UnownDex/GS:028
+UnownDex/GS:029
+UnownDex/GS:030
+UnownDex/GS:031
+UnownDex/GS:032
+UnownDex/GS:033
+UnownDex/GS:034
+UnownDex/GS:035
+Unowndex
+Unreleased Pokémon
+Unsigned
+Unsigned integer
+Unstable hybrid
+Unstable hybrid Pokémon
+Unstable hybrid glitch Pokémon
+Unterminated name Pokémon
+Unterminated name Pokémon (Generation I)
+Unterminated name Pokémon (Generation II)
+Unterminated name Pokémon (disambiguation)
+Unterminated name Pokémon arbitrary code execution
+Unterminated name glitch Pokémon
+Unterminated name glitch item
+Unterminated name glitch item instant encounter
+Unterminated name glitch item instant encounter glitch
+Unused Bulbasaur slot machine symbol
+Unused Celadon City house
+Unused Egg moves
+Unused Japanese list strings (Generation I)
+Unused Olivine City house
+Unused Pikachu's Beach data
+Unused Pokémon
+Unused Pokémon data
+Unused Shadow Pokémon
+Unused Soundtrack
+Unused Sunyshore City house
+Unused and redundant Egg moves
+Unused battle system
+Unused battle systems
+Unused content
+Unused encounter system (Yellow)
+Unused experience group
+Unused experience groups
+Unused field move 0xB4
+Unused items
+Unused map
+Unused maps (Harry Potter and the Chamber of Secrets for PC)
+Unused music
+Unused soundtrack
+Unused soundtracks
+Unused town
+V
+VRAM
+VRAM inaccessibility
+VS Recorder audio glitch
+V (disambiguation)
+V t m
+V t m (disambiguation)
+Valid source map Glitch City
+Value
+Variable PP glitch
+Vending machine purchase glitch
+Venustoise
+Viridian City Poké Mart glitch messages
+Viridian Forest 0x37 text box glitch
+Viridian Forest 0x37 text box glitch (Japanese Yellow)
+Viridian Forest 0xF8FF glitch
+Viridian Forest F8FF glitch
+Viridian Forest no encounter grass tiles glitch
+Viridian Forest text box arbitrary code execution
+Vivillon Friend Safari glitch
+Void
+Void (Generation V)
+Void glitch
+VolcanoBadge
+VolcanoBadge (glitch item)
+Vs. Recorder audio glitch
+W?zzRä Z.
+WRAM
+WRAM clear oversight
+WRAM clear oversight (Generation I)
+WRAM clear oversight (Generation II)
+W 'l m
+W 'l m (disambiguation)
+W m
+W m (disambiguation)
+Walk Through Walls
+Walk around with a fainted Pokémon
+Walk around with no Pokémon
+Walk around with only fainted Pokémon
+Walk on Water
+Walk on water
+Walk on water through Surf
+Walk through walls
+Walk through walls (disambiguation)
+Walk through walls glitch (Select glitch method)
+Walk through walls glitch (international Select glitch method)
+Walk through walls glitch (ledge method)
+Walk through walls glitch (museum guy method)
+Walk through walls trick (Select glitch method)
+Walk through walls trick (Youngster method)
+Walk through walls trick (international Select glitch method)
+Walk through walls trick (ledge method)
+Walk through walls trick (museum guy method)
+Walking Pikachu happiness glitch
+Walking Pikachu orange box curiosity
+Walking Pokemon stats glitch
+Walking Pokémon stats glitch
+Walking characters effect
+Walking lag glitch
+Walking through walls
+Wally defeating Ralts during the capture demonstration glitch
+Wally defeating Ralts oversight
+Warp by Nidoran♂ glitch
+Water stream glitch
+Water stream sound glitch
+Web
+White Herb Contrary O-Power glitch
+White screen
+White screen crash
+White screen freeze
+Whiteout effect
+Wide Guard glitch
+Wild
+Wild appeared
+Wild appeared!
+Wonder Card form glitch
+Wonder Trade Move Glitch
+Wonder Trade evolution learnset glitch
+Wonder Trade evolution move glitch
+Wonder Trade move glitch
+Word
+Wrong pocket TMs and HMs
+Wrong warp (Generation IV)
+Wrong warp Glitch City
+Ws m
+Ws m (disambiguation)
+Wtw
+X 'rゥ. 4-
+X - x
+X C
+X item glitch (Colosseum)
+X ゥ- xゥ,
+Xenoblade Chronicles
+Xploder GB
+YOP
+YOP glitch
+Yami Shop
+Yami Shop glitch
+Yellow
+Yellow MissingNo.
+Yellow Scarf glitch
+Yoshi's Woolly World
+Yoshi's Woolly World (Wii U)
+Youngster
+Youngster (Generation I glitch Trainers)
+Youngster (disambiguation)
+Your opponent's Pokémon
+Ys: The Vanished Omens (Sega Master System)
+ZZAZZ Glitch
+ZZAZZ effect
+ZZAZZ glitch
+Z ゥ
+Zapdos LV68 glitch
+Zelda Chaos
+Zero Error
+Zero maximum HP glitch
+Zorch
+Zzazz glitch
+`M
+É
+É (disambiguation)
+É (glitch item)
+É▶'lé▼ 'lé♂,
+ÖpÖpÖpÖpÖ
+× 'rゥ. 4-
+’
+……
+₽
+₽/h
+₽9? ゥ
+₽ (disambiguation)
+₽ Pゥ. 4(
+₽ ぅ (hex:79 glitch item)
+₽ ぅ (hex:79 glitch item) (disambiguation)
+▶ A
+▼ W G d
+▼ pゥ
+◣ゥ 8
+♀Pゥ ゥゥT
+♀ .
+♂ p ゥ
+」 -
+ぅ
+ぅ (glitch item hex:75)
+ぅ (glitch item hex:75) (disambiguation)
+けつばん
+ど ◄öSど◄:E 30
+ァ7g
+ァ / g J 1
+アネ゙デパミ゙ (0xFF) map corruption glitch
+ィ゙5ノ ゙0ぱも゚ゅゆ
+ゥ$
+ゥ$'M
+ゥ$ (F0)
+ゥ$ (F4)
+ゥ$ 4MN ゥ
+ゥ$ 6ゥ
+ゥ'
+ゥ' B
+ゥ, A
+ゥ. B
+ゥ/ 4ァ 4,
+ゥHIゥ.
+ゥL ゥM 4
+ゥU?
+ゥ $ A (0xF3)
+ゥ $ A (0xF6)
+ゥ $ A (F3)
+ゥ $ A (F6)
+ゥ '
+ゥ (0xC1)
+ゥ (0xD4)
+ゥ (0xD9)
+ゥ (0xE3)
+ゥ (0xF5)
+ゥ (C1)
+ゥ (D4)
+ゥ (D9)
+ゥ (E3)
+ゥ (F5)
+ゥ ( Z4
+ゥ .4
+ゥ 4- 4
+ゥ l (0xF2)
+ゥ l (0xF3)
+ゥ l (F2)
+ゥ l (F3)
+ゥ pゥ,
+ゥ ₽ A
+ゥ ₽ A (0xF3)
+ゥ ₽ A (0xF6)
+ゥ ゥェ ゥ ▷
+ゥ₽
+ゥ₽'M
+ゥ₽ (0xF0)
+ゥ₽ (0xF4)
+ゥ₽ (F4)
+ゥ₽ (disambiguation)
+ゥ₽ 4MN ゥ
+ゥ₽ 6ゥ
+ゥ► ゥ▼
+ゥ▾ ゥ♂
+ゥゥ)
+ゥゥ.
+ゴールドバッヂ
+ゴールドバッヂ (disambiguation)
+欠番
+5かい