From dd26aafc428ccf16b4b0ae5d0ba6b7e57a631443 Mon Sep 17 00:00:00 2001 From: ginnoir Date: Mon, 8 Jun 2026 20:10:37 -0500 Subject: [PATCH] feat(vault): synthesize Discord scrape + web research into the ROM-hack catalog Enrich the Obsidian ROM-hack vault from the valhalla Discord scrape (/storage1/labdata/romhacks/metadata) plus web research, growing the catalog from 285 to 368 notes and preparing a data export for a wiki site. Tooling (all dry-run by default, --apply to write; .scrape/ is gitignored): - scrape_match.py reconcile scrape entries vs notes (43 overlap / 211 match / 83 new) - enrich_vault.py backfill frontmatter, merge scrape into curated notes, create 83 new notes, rebuild import bodies to one layout - enrich_web.py apply hand/web-verified facts from .scrape/web_facts*.json - build-wiki-data.py export wiki/catalog.json (the site data source) Results: 368 notes, 327 with served banner art, 332 rich summaries, 200 with feature lists; new frontmatter developer/release_date/banner/homepage/scrape_dir; 12 flagship hacks web-verified. wiki/SPEC.md describes the site build. build-vault-mocs.py Index callout updated for the new counts. --- .gitignore | 6 + README.md | 40 +- scripts/build-vault-mocs.py | 11 +- scripts/build-wiki-data.py | 109 + scripts/enrich_vault.py | 751 ++ scripts/enrich_web.py | 106 + scripts/scrape_match.py | 159 + wiki/SPEC.md | 112 + wiki/catalog.json | 16904 ++++++++++++++++++++++++++++++++++ 9 files changed, 18192 insertions(+), 6 deletions(-) create mode 100644 scripts/build-wiki-data.py create mode 100644 scripts/enrich_vault.py create mode 100644 scripts/enrich_web.py create mode 100644 scripts/scrape_match.py create mode 100644 wiki/SPEC.md create mode 100644 wiki/catalog.json diff --git a/.gitignore b/.gitignore index 029234e..4c7053d 100644 --- a/.gitignore +++ b/.gitignore @@ -16,3 +16,9 @@ Thumbs.db # Local scratch *.tmp *.log + +# Discord-scrape metadata pulled from valhalla for enrichment runs (per-machine +# scratch; the canonical synthesis lands in the Obsidian vault notes). +.scrape/ +.scrape_lib/ +scripts/__pycache__/ diff --git a/README.md b/README.md index 5b4a8cd..627042b 100644 --- a/README.md +++ b/README.md @@ -21,8 +21,46 @@ served by the RomM stack (`roms.ginnoir.com`) — deployed from `homelabstack` | `scripts/romhack-import.py` | Import a drop folder of mixed ROMs/patches/docs into the valhalla library (validate, clean-name, apply patches, archive). Runs on valhalla. | | `scripts/romhack-fetch.py` | Acquire + patch + place worthwhile hacks from direct (non-gated) sources. Manifest-driven. Runs on valhalla. | | `scripts/romhack-apply.py` | Apply a single IPS/BPS/UPS patch to a base ROM with checksum verification. | -| `scripts/build-romhack-vault.py` | **Archived.** Original generator that bootstrapped the vault notes from an in-script dataset. The vault has since been enriched and is now hand-maintained via the Obsidian MCP — do **not** re-run it against the live vault (its output is poorer: no `play_status`/`rating`/`Bases`/`Play Queue`). Kept only for the structured `HACKS` dataset; its output dir is gitignored. | +| `scripts/build-vault-mocs.py` | Regenerate the vault's static MOC tables + header counts (Index/Platforms/Bases) from the notes. Read-only on `Hacks/*.md`. Re-run after any note change. | +| `scripts/scrape_match.py` | Match the Discord-scrape `metadata.json` entries to vault notes → `.scrape/_match_report.json` (curated-overlap / discord-match / unmatched). | +| `scripts/enrich_vault.py` | Synthesize the scrape into notes: `backfill` (frontmatter for imports), `merge` (scrape into curated), `create` (new notes), `rebuild` (normalize import bodies). `--apply` writes; default dry-runs to `.scrape/_preview/`. | +| `scripts/enrich_web.py` | Apply hand/web-researched facts from `.scrape/web_facts*.json` onto notes (summary, features, dev, version, notability), idempotently. | +| `scripts/build-wiki-data.py` | Export all notes → `wiki/catalog.json`, the data source for the wiki site (see `wiki/SPEC.md`). | +| `scripts/build-romhack-vault.py` | **Archived.** Original 75-hack bootstrap generator — do **not** re-run against the live vault. Kept only for its structured `HACKS` dataset. | +| `wiki/` | `catalog.json` (exported 368-hack dataset) + `SPEC.md` (build spec for the future static wiki site). | | `drop/` | **gitignored** staging area (~1.3 GB) of ROM/patch binaries pending import. | +| `.scrape/` | **gitignored** per-machine scratch: Discord-scrape `metadata.json` pulled from valhalla + match report + `web_facts*.json` + note backups. | + +## Enrichment pipeline + +The vault catalog (368 notes) was enriched from the Discord scrape on valhalla +(`/storage1/labdata/romhacks/metadata/*/metadata.json`) plus web research. To +re-run or extend: + +```bash +# 1. pull the scrape metadata locally (one-time / refresh) +ssh valhalla "cd /storage1/labdata/romhacks/metadata && tar cf - */metadata.json" | tar xf - -C .scrape + +# 2. match scrape -> notes +python scripts/scrape_match.py --report .scrape/_match_report.json + +# 3. synthesize (drop --apply first to preview into .scrape/_preview/) +python scripts/enrich_vault.py backfill --apply +python scripts/enrich_vault.py rebuild --apply +python scripts/enrich_vault.py merge --apply +python scripts/enrich_vault.py create --apply + +# 4. web-enrich more hacks: add a .scrape/web_factsN.json batch, then +python scripts/enrich_web.py --apply + +# 5. refresh static surfaces + the site data +python scripts/build-vault-mocs.py +python scripts/build-wiki-data.py +``` + +Art for every scraped hack is web-served at +`https://romhacks-files.ginnoir.com/_meta//` (copied into the +Caddy-served `library/_meta/` tree on valhalla). ## Acquisition policy diff --git a/scripts/build-vault-mocs.py b/scripts/build-vault-mocs.py index ed6ba72..38d51a2 100644 --- a/scripts/build-vault-mocs.py +++ b/scripts/build-vault-mocs.py @@ -263,13 +263,14 @@ def build_index(recs): for p in PLATFORM_ORDER if pc[p] ) callout = ( - f"> [!note] {total} hacks total — the original hand-curated 75 plus " - f"~210 auto-imported from the Discord catalog on 2026-06-08 (tag " - f"`source/discord`).\n" + f"> [!note] {total} hacks total — 75 hand-curated, ~210 imported from the " + f"Discord catalog, and 83 added from the scrape (tag `source/discord`), " + f"enriched 2026-06-08 with developer / release / banner art and uniform " + f"Summary·Features·Story bodies.\n" "> The **Dataview** blocks are the live source of truth; the **static** " "tables below are regenerated from the notes by " - "`scripts/build-vault-mocs.py`. Imports have `play_status: Unplayed`, " - "empty `type`, and no `rating` yet — curate as you play." + "`scripts/build-vault-mocs.py`. Most carry `play_status: Unplayed` and no " + "`rating` yet — curate as you play." ) return f"""# Pokémon ROM-Hack Library — Index diff --git a/scripts/build-wiki-data.py b/scripts/build-wiki-data.py new file mode 100644 index 0000000..ee5c317 --- /dev/null +++ b/scripts/build-wiki-data.py @@ -0,0 +1,109 @@ +#!/usr/bin/env python3 +"""Export the Pokémon ROM-hack vault to a single JSON catalog for the website. + +Reads every /Pokémon ROM Hacks/Hacks/*.md note (frontmatter + the +Summary / Features / Story / Why-it-stands-out / Links body sections) and emits + wiki/catalog.json — the data source a static wiki site can render directly. + +This is READ-ONLY against the vault. Re-run after any enrichment pass. +Run: python scripts/build-wiki-data.py +""" +from __future__ import annotations +import json, os, re, glob, sys +from collections import Counter +from datetime import date + +sys.path.insert(0, os.path.dirname(os.path.abspath(__file__))) +import enrich_vault as E + +OUT_DIR = os.path.join(os.path.dirname(os.path.dirname(os.path.abspath(__file__))), "wiki") +OUT = os.path.join(OUT_DIR, "catalog.json") + +SCALARS = ["title", "platform", "base", "version", "status", "generation", + "developer", "release_date", "banner", "homepage", "source", + "library_path", "play_status", "scrape_dir"] + + +def section(body, heading): + m = re.search(rf"(?ms)^## {re.escape(heading)}\s*\n+(.+?)(?=^## |\n\[\[Index|\Z)", body) + return m.group(1).strip() if m else "" + + +def bullets(text): + return [re.sub(r"^[-*]\s*", "", ln).strip() + for ln in text.splitlines() if ln.strip().startswith(("-", "*"))] + + +def links(text): + out = [] + for ln in text.splitlines(): + m = re.search(r"\[?([\w /]+?)\]?:?\s*(https?://\S+)", ln) + if m: + out.append({"label": m.group(1).strip(" -:"), "url": m.group(2).rstrip(").")}) + else: + m2 = re.search(r"(https?://\S+)", ln) + if m2: + out.append({"label": "Link", "url": m2.group(1).rstrip(").")}) + return out + + +def main(): + hacks = [] + for f in sorted(glob.glob(os.path.join(E.HACKS, "*.md"))): + fm_text, body, _ = E.read_note(f) + fm = E.parse_fm(fm_text) + stem = os.path.splitext(os.path.basename(f))[0] + rec = {"stem": stem} + for k in SCALARS: + if fm.get(k) not in (None, ""): + rec[k] = fm[k] + rec["type"] = fm.get("type") or [] + rec["tags"] = fm.get("tags") or [] + if fm.get("rating") not in (None, ""): + try: + rec["rating"] = int(str(fm["rating"])) + except ValueError: + pass + rec["summary"] = section(body, "Summary") + rec["notability"] = section(body, "Why it stands out") + rec["story"] = section(body, "Story") + rec["features"] = bullets(section(body, "Features")) + rec["links"] = links(section(body, "Links")) + for k in ("base", "version", "status", "platform", "generation"): + if rec.get(k) == "—": + rec[k] = None + hacks.append(rec) + + def facet(key): + c = Counter(h.get(key) or "Unknown" for h in hacks) + return dict(sorted(c.items(), key=lambda kv: (-kv[1], kv[0]))) + + type_counts = Counter(t for h in hacks for t in h["type"]) + out = { + "generated": date.today().isoformat(), + "count": len(hacks), + "facets": { + "platform": facet("platform"), + "base": facet("base"), + "status": facet("status"), + "type": dict(sorted(type_counts.items(), key=lambda kv: (-kv[1], kv[0]))), + "play_status": facet("play_status"), + }, + "image_base": "https://romhacks-files.ginnoir.com", + "hacks": hacks, + } + os.makedirs(OUT_DIR, exist_ok=True) + json.dump(out, open(OUT, "w", encoding="utf-8"), indent=2, ensure_ascii=False) + + enriched = sum(1 for h in hacks if len(h["summary"]) > 60) + withimg = sum(1 for h in hacks if h.get("banner")) + withfeat = sum(1 for h in hacks if h["features"]) + print(f"wrote {OUT}") + print(f" hacks={len(hacks)} with-image={withimg} with-features={withfeat} " + f"rich-summary={enriched}") + print(f" platforms: {out['facets']['platform']}") + print(f" types: {out['facets']['type']}") + + +if __name__ == "__main__": + main() diff --git a/scripts/enrich_vault.py b/scripts/enrich_vault.py new file mode 100644 index 0000000..5b1d7ef --- /dev/null +++ b/scripts/enrich_vault.py @@ -0,0 +1,751 @@ +#!/usr/bin/env python3 +"""Enrich the Pokémon ROM-hack vault from the Discord scrape (.scrape/*/metadata.json). + +Three subcommands, each --dry-run by default (writes previews to .scrape/_preview/) +and only touches the live vault with --apply: + + backfill 211 Discord-import notes: fill missing frontmatter (base, version, + status, type, developer, release_date, banner, scrape_dir) parsed + from the scrape. Body is preserved verbatim. + merge 43 curated-overlap notes: keep the hand-written note, add a banner, + append Story/Features/community Links parsed from the scrape, and + add developer/release_date/banner/scrape_dir frontmatter. The curated + Summary and existing frontmatter are preserved. + create 83 unmatched scraped hacks: write brand-new wiki-schema notes. + +Source of truth for matching = .scrape/_match_report.json (scrape_match.py). +Art is served at https://romhacks-files.ginnoir.com/_meta//. +""" +from __future__ import annotations +import json, os, re, sys, glob, unicodedata +from datetime import date +from urllib.parse import quote + +ROOT = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) +VAULT = r"C:\Users\MattC\Documents\Obsidian Vault" +HACKS = os.path.join(VAULT, "Pokémon ROM Hacks", "Hacks") +SCRAPE = os.path.join(ROOT, ".scrape") +PREVIEW = os.path.join(SCRAPE, "_preview") +ART_BASE = "https://romhacks-files.ginnoir.com/_meta" +TODAY = date.today().isoformat() + +# ---------------------------------------------------------------- text cleaning + +def clean(s: str) -> str: + if not s: + return "" + s = s.replace("​", "").replace("", "") + s = s.replace("\xa0", " ").replace("’", "'").replace("‘", "'") + s = s.replace("“", '"').replace("”", '"').replace("–", "-") + s = re.sub(r"[ \t]+", " ", s) + s = re.sub(r"\n{3,}", "\n\n", s) + return s.strip() + + +# ---------------------------------------------------------------- parsing + +MONTHS = {m: i for i, m in enumerate( + ["january", "february", "march", "april", "may", "june", "july", + "august", "september", "october", "november", "december"], 1)} + +PLATFORM_HINTS = [ + (r"\bGBA\b|game boy advance", ("GBA", "console")), + (r"\bGBC\b|game boy color", ("GBC", "console")), + (r"\bNDS\b|nintendo ds\b|\bDS ROM", ("NDS", "console")), + (r"\b3DS\b", ("3DS", "console")), + (r"\bGB\b|game boy(?! advance| color)", ("GB", "console")), + (r"RPGXP|RPG ?Maker|Essentials|FanGame|fan game|GameMaker", ("PC", "fangame")), +] + +BASE_CANON = { + "fire red": "FireRed", "firered": "FireRed", "fire-red": "FireRed", + "leaf green": "LeafGreen", "leafgreen": "LeafGreen", + "fire red/leaf green": "FireRed", "firered/leafgreen": "FireRed", + "emerald": "Emerald", "ruby": "Ruby", "sapphire": "Sapphire", + "ruby/sapphire": "Ruby", + "crystal": "Crystal", "gold": "Gold", "silver": "Silver", + "gold/silver": "Gold", "red": "Red", "blue": "Blue", "yellow": "Yellow", + "diamond": "Diamond", "pearl": "Pearl", "platinum": "Platinum", + "heart gold": "HeartGold", "heartgold": "HeartGold", + "soul silver": "SoulSilver", "soulsilver": "SoulSilver", + "black": "Black", "white": "White", "black 2": "Black 2", + "white 2": "White 2", "black2": "Black 2", "white2": "White 2", +} + +SECTION_ALIASES = { + "description": "Description", "about": "Description", "overview": "Description", + "plot": "Story", "story": "Story", "synopsis": "Story", + "features": "Features", "feature": "Features", "key features": "Features", + "download": "Download", "downloads": "Download", "rom link": "Download", + "changelog": "Changelog", "credits": "Credits", +} + + +def norm_key(name: str) -> str: + name = unicodedata.normalize("NFKD", name) + name = "".join(c for c in name if not unicodedata.combining(c)).lower() + name = re.sub(r"\bpok[e]?mon\b", " ", name) + return re.sub(r"[^a-z0-9]+", "", name) + + +def parse_release(text: str): + m = re.search(r"(?:last updated on|released on|updated on|released)\s+" + r"([A-Za-z]+)\s+(\d{1,2}),?\s*(\d{4})", text, re.I) + if m: + mo = MONTHS.get(m.group(1).lower()) + if mo: + return f"{m.group(3)}-{mo:02d}-{int(m.group(2)):02d}" + m = re.search(r"\b(20\d{2})\b", text) + return m.group(1) if m else None + + +def parse_intro(text: str) -> dict: + out: dict = {} + head = text[:400] + m = re.search(r"\bby\s+(.+?)(?:\s+based on|\s+made using|\s+using|\s+in English|" + r"\.\s|\,\s|\s+and it| \(|\n)", head) + if m: + dev = m.group(1).strip(" .,-") + if 1 < len(dev) < 60 and not dev.lower().startswith(("the ", "a ")): + out["developer"] = dev + m = re.search(r"based on\s+(?:Pok[eé]mon\s+)?([A-Za-z0-9][A-Za-z0-9 /&]+?)" + r"(?:\.|,|\n| in | with |!)", head, re.I) + if m: + raw = m.group(1).strip().lower() + raw = re.sub(r"\bversions?\b", "", raw).strip() + out["base"] = BASE_CANON.get(raw, m.group(1).strip()) + for pat, (plat, kind) in PLATFORM_HINTS: + if re.search(pat, head, re.I): + out["platform"], out["kind"] = plat, kind + break + return out + + +# inline / line key-value metadata blocks, e.g. "**Creator:** X **Type:** GBA +# **Hack of:** FireRed **Version:** Final **Last Updated:** May 26, 2020". +KV_KEYS = (r"Creator|Developer|Dev|Author|Made by|Type of ROM|Type|Platform|" + r"System|Hack of|Base ROM|Base game|Base|Based on|Version|Status|" + r"Last Updated|Updated|Release Date|Released|Date|Language|Genre") +KV_RE = re.compile(rf"(?i)\b(?P{KV_KEYS})\s*[:\-]\s*(?P.+?)" + rf"(?=\s{{2,}}|\s*\b(?:{KV_KEYS})\b\s*[:\-]|$)", re.M) +KV_LINE = re.compile(rf"(?i)^\s*(?:{KV_KEYS})\s*[:\-]") + + +def parse_kv(text: str) -> dict: + """Extract dev/platform/base/version/status/release from key-value blocks + (bold or plain). De-bold first so '**Creator:** X' -> 'Creator: X'.""" + flat = text.replace("*", "") + got: dict[str, str] = {} + for m in KV_RE.finditer(flat): + k = m.group("key").lower().strip() + v = m.group("val").strip(" .,-") + if not v or len(v) > 80: + continue + got.setdefault(k, v) + out = {} + def first(*keys): + for k in keys: + if k in got: + return got[k] + return None + dev = first("creator", "developer", "dev", "author", "made by") + if dev: + out["developer"] = dev + typ = first("type of rom", "type", "platform", "system") + if typ: + for pat, (plat, kind) in PLATFORM_HINTS: + if re.search(pat, typ, re.I): + out["platform"], out["kind"] = plat, kind + break + base = first("hack of", "base rom", "base game", "base", "based on") + if base: + bl = re.sub(r"\bversions?\b", "", base.lower()).strip() + out["base"] = BASE_CANON.get(bl, base.strip()) + if first("version"): + out["version"] = first("version") + if first("status"): + out["status"] = first("status") + if first("language"): + out["language"] = first("language") + rel = first("last updated", "updated", "release date", "released", "date") + if rel: + pr = parse_release(rel) or parse_release("released " + rel) + if pr: + out["release_date"] = pr + return out + + +def split_sections(text: str, name: str = ""): + lines = text.split("\n") + sections: dict[str, list[str]] = {} + lead: list[str] = [] + cur = None + name_key = norm_key(name) + for raw in lines: + line = re.sub(r"^>\s?", "", raw.strip()) + hkey = re.sub(r"[*#:_~`]", "", line).strip().lower() + if hkey in SECTION_ALIASES and len(line) < 40: + cur = SECTION_ALIASES[hkey] + sections.setdefault(cur, []) + continue + flat = line.replace("*", "") + low = flat.lower() + is_meta = (re.match(r"^pok[e]?mon", low) and (" is a" in low or " is an" in low)) \ + or bool(KV_LINE.match(flat)) \ + or low.startswith(("rom link", "- rom link", "it was last updated", + "made using", "by ")) \ + or (name_key and norm_key(line) == name_key) # bare title repeat + if cur: + sections[cur].append(line) + elif not is_meta and line: + lead.append(line) + feats = [] + for ln in sections.get("Features", []): + s = ln.strip().lstrip("-*•").strip() + if s and not s.lower().startswith("download"): + feats.append(s) + lead_text = " ".join(lead).strip() + return lead_text, {k: clean("\n".join(v)) for k, v in sections.items()}, feats + + +def collect_links(meta: dict, text: str): + urls = list(meta.get("links") or []) + for m in re.finditer(r"https?://[^\s)\]>'\"]+", text): + u = m.group(0).rstrip(".,)") + if u not in urls: + urls.append(u) + seen, out = set(), [] + for u in urls: + if u not in seen: + seen.add(u); out.append(u) + return out + + +TYPE_RULES = [ + ("Difficulty", r"kaizo|difficulty hack|harder|increased difficulty|" + r"competitive|nuzlocke|challenging|boosted ai|smart ai"), + ("Expansion", r"mega evolution|national dex|gen 8|gen 9|generation 8|" + r"generation 9|physical/special split|fairy type|decomp|" + r"expansion|all 8\d\d"), + ("New Experience", r"new region|new story|original story|fakemon|" + r"new pok[e]?mon|custom region|brand new"), + ("Roguelite", r"roguelite|roguelike|run-based|permadeath|randomized run"), + ("Demake", r"demake|de-make|in gen ?[12] style|on gbc|1-bit"), + ("Cosmetic", r"moemon|sprite pack|tileset|cosmetic|visual overhaul|reskin"), + ("QoL", r"quality of life|quality-of-life|\bqol\b|reusable tms|exp share"), +] + + +def infer_types(text: str) -> list[str]: + low = text.lower() + hits = [name for name, pat in TYPE_RULES if re.search(pat, low)] + return hits[:2] + + +# base game -> (platform, canonical base) for name/desc heuristic fallback +GAME_PLATFORM = { + "emerald": ("GBA", "Emerald"), "fire red": ("GBA", "FireRed"), + "firered": ("GBA", "FireRed"), "leaf green": ("GBA", "LeafGreen"), + "leafgreen": ("GBA", "LeafGreen"), "ruby": ("GBA", "Ruby"), + "sapphire": ("GBA", "Sapphire"), + "crystal": ("GBC", "Crystal"), "gold": ("GBC", "Gold"), + "silver": ("GBC", "Silver"), + "diamond": ("NDS", "Diamond"), "pearl": ("NDS", "Pearl"), + "platinum": ("NDS", "Platinum"), "heartgold": ("NDS", "HeartGold"), + "soulsilver": ("NDS", "SoulSilver"), "heart gold": ("NDS", "HeartGold"), + "soul silver": ("NDS", "SoulSilver"), "black": ("NDS", "Black"), + "white": ("NDS", "White"), "black 2": ("NDS", "Black 2"), + "white 2": ("NDS", "White 2"), +} + + +def infer_platform_base(name, desc, platform, base): + """Fallback: if platform unknown, infer GBA/GBC/GB/NDS from a base game word + in the name or first part of the description. Never overrides a known value.""" + if platform and base: + return platform, base + hay = (name + " " + desc[:300]).lower() + # if we already know base, set platform from it + if base and base != "—" and not platform: + bp = GAME_PLATFORM.get(base.lower()) + if bp: + return bp[0], base + if not platform: + for word, (plat, canon) in GAME_PLATFORM.items(): + if re.search(rf"\b{re.escape(word)}\b", hay): + return plat, (base if base and base != "—" else canon) + return platform, base + + +LEAD_PREFIX = re.compile( + r"^\s*(?:version|status|update[d]?)\b\s*[:\-]?\s*" + r"(?:completed|complete|beta|ongoing|final|released?)?\s*" + r"(?:v?\d[\d.\w]*)?\s*[:\-]?\s*", re.I) + + +def clean_lead(lead: str): + """Strip a leading 'Version '/'Completed' label off a lead line and + return (cleaned_lead, version, status) harvested from it.""" + ver = status = None + mv = re.match(r"^\s*(?:version|ver)\b\s*[:\-]?\s*(?:completed|complete|" + r"beta|ongoing|final)?\s*(v?\d[\d.\w]*)", lead, re.I) + if mv: + ver = mv.group(1) + ms = re.match(r"^\s*(?:status\b\s*[:\-]?\s*)?(completed|complete|beta|ongoing)", + lead, re.I) + if ms: + status = ms.group(1) + new = LEAD_PREFIX.sub("", lead) + # a second pass for 'Version completed 1.3.1' style double-prefix + new = LEAD_PREFIX.sub("", new).strip(" :-") + if len(new) < 25: + new = "" + return new, ver, status + + +def build_record(meta: dict, libidx: dict) -> dict: + name = clean(meta.get("name", "")) + desc = clean(meta.get("description", "")) + scrape_dir = meta["_dir"] + li = libidx.get(scrape_dir, {}) + intro = parse_intro(desc) + kv = parse_kv(desc) + lead, sections, feats = split_sections(desc, name) + rec = { + "name": name, + "scrape_dir": scrape_dir, + "platform": (li.get("platform") or intro.get("platform") + or kv.get("platform") or "").upper() or None, + "kind": li.get("kind") or intro.get("kind") or kv.get("kind"), + "base": intro.get("base") or kv.get("base"), + "developer": intro.get("developer") or kv.get("developer"), + "release_date": kv.get("release_date") or parse_release(desc), + "version": kv.get("version"), + "status": kv.get("status"), + "lead": lead, + "story": sections.get("Story", ""), + "description_body": sections.get("Description", ""), + "features": feats, + "links": [u for u in collect_links(meta, desc) if not u.startswith(ART_BASE)], + "art": (meta.get("art") or [None])[0], + "types": infer_types(desc), + } + # tidy the lead: strip leading 'Version x'/'Completed' labels, fall back to + # the Description section, harvest version/status if still unknown. + cl, lv, ls = clean_lead(rec["lead"]) + rec["lead"] = cl or sections.get("Description", "")[:600] + if not rec["version"] and lv: + rec["version"] = lv + if not rec["status"] and ls: + rec["status"] = ls + if rec["platform"] == "PC" and not rec["base"]: + rec["base"] = "—" + if rec["platform"] != "PC": + p, b = infer_platform_base(name, desc, rec["platform"], rec["base"]) + rec["platform"], rec["base"] = p, b + return rec + + +# ---------------------------------------------------------------- frontmatter io + +def read_note(path): + text = open(path, encoding="utf-8").read() + m = re.match(r"^---\n(.*?)\n---\n?(.*)$", text, re.S) + if not m: + return "", text, text + return m.group(1), m.group(2), text + + +def fm_get(fm_text, key): + m = re.search(rf"(?im)^{re.escape(key)}:\s*(.*)$", fm_text) + return m.group(1).strip().strip('"') if m else None + + +def fm_set(fm_text, key, value, quote_it=True): + v = f'"{value}"' if quote_it and not str(value).startswith(("[", '"')) else value + line = f"{key}: {v}" + if re.search(rf"(?im)^{re.escape(key)}:\s*.*$", fm_text): + return re.sub(rf"(?im)^{re.escape(key)}:\s*.*$", line, fm_text, count=1) + return fm_text.rstrip() + "\n" + line + + +def art_url(rec): + if rec.get("art"): + return f"{ART_BASE}/{rec['scrape_dir']}/{quote(rec['art'])}" + return None + + +# ---------------------------------------------------------------- loaders + +def load_scrape(): + out = {} + for jf in glob.glob(os.path.join(SCRAPE, "*", "metadata.json")): + m = json.load(open(jf, encoding="utf-8")) + m["_dir"] = os.path.basename(os.path.dirname(jf)) + out[m["_dir"]] = m + return out + + +# ---------------------------------------------------------------- frontmatter (de)serialize + +FM_ORDER = ["title", "platform", "base", "version", "status", "type", + "generation", "developer", "release_date", "banner", + "library_path", "source", "homepage", "scrape_dir", + "added", "play_status", "rating", "tags"] +LIST_KEYS = {"type", "tags"} + + +def parse_fm(fm_text): + """Parse simple block-style frontmatter into an ordered dict. + Scalars -> str; block/flow lists -> list[str].""" + fm, lines, i = {}, fm_text.split("\n"), 0 + while i < len(lines): + km = re.match(r"^([\w]+):\s*(.*)$", lines[i]) + if km: + k, v = km.group(1), km.group(2) + if v == "" and i + 1 < len(lines) and re.match(r"^\s*-\s", lines[i + 1]): + items = [] + while i + 1 < len(lines) and re.match(r"^\s*-\s", lines[i + 1]): + items.append(lines[i + 1].strip()[2:].strip().strip('"')) + i += 1 + fm[k] = items + elif v.strip().startswith("[") and v.strip().endswith("]"): + inner = v.strip()[1:-1].strip() + fm[k] = [x.strip().strip('"') for x in inner.split(",")] if inner else [] + else: + fm[k] = v.strip().strip('"') + i += 1 + return fm + + +def emit_fm(fm): + out = [] + keys = [k for k in FM_ORDER if k in fm] + [k for k in fm if k not in FM_ORDER] + for k in keys: + v = fm[k] + if k in LIST_KEYS or isinstance(v, list): + v = v or [] + if not v: + out.append(f"{k}: []") + else: + out.append(f"{k}:") + out.extend(f" - {x}" for x in v) + elif k == "rating": + out.append(f"{k}: {v}") + elif k == "added" and re.match(r"^\d{4}-\d{2}-\d{2}$", str(v)): + out.append(f"{k}: {v}") + elif k in ("version", "release_date", "generation"): + # always strings — avoid YAML number coercion (4.10 -> 4.1, 2024 -> int) + out.append(f'{k}: "{v}"') + else: + sv = str(v) + if sv == "" or re.search(r'[:#\[\]"\']', sv) or sv == "—": + out.append(f'{k}: "{sv}"') + else: + out.append(f"{k}: {sv}") + return "\n".join(out) + + +def canon_status(s): + if not s: + return None + low = s.lower() + if "beta" in low: + return "Beta" + if "complete" in low or "finished" in low or "full" in low: + return "Complete" + if any(w in low for w in ("ongoing", "wip", "development", "in progress", + "updates", "demo", "unfinished")): + return "Ongoing" + return None + + +PLATFORM_LABEL = {"GB": "Game Boy", "GBC": "Game Boy Color", + "GBA": "Game Boy Advance", "NDS": "Nintendo DS", + "3DS": "Nintendo 3DS", "PC": "PC / Joiplay", "—": "Unknown"} + + +def derive_tags(fm): + tags = ["hack"] + p = (fm.get("platform") or "").lower() + if p and p != "—": + tags.append(f"platform/{p}") + b = (fm.get("base") or "") + if b and b != "—": + tags.append(f"base/{b.lower().replace(' ', '')}") + st = (fm.get("status") or "") + if st and st != "—": + tags.append(f"status/{st.lower().replace(' ', '')}") + for t in (fm.get("type") or []): + tags.append(f"type/{t.lower().replace(' ', '').replace('+', 'plus')}") + if fm.get("scrape_dir"): + tags.append("source/discord") + return tags + + +# ---------------------------------------------------------------- body builders + +def features_block(feats, limit=24): + return "\n".join(f"- {clean(f)}" for f in feats[:limit]) + + +def links_block(links, limit=8): + out = [] + for u in links[:limit]: + label = "Download" if re.search(r"mediafire|drive\.google|mega\.nz|" + r"github|\.zip|\.rar|/file", u) else "Link" + if "docs.google" in u: + label = "Guide / docs" + if "pokecommunity" in u or "pokeharbor" in u or "hackdex" in u: + label = "Info / thread" + out.append(f"- {label}: {u}") + return "\n".join(out) + + +def type_links(types): + return " ".join(f"[[Types#{t}|{t}]]" for t in types) if types else "" + + +# ---------------------------------------------------------------- writers + +def out_write(path, content, apply): + if apply: + os.makedirs(os.path.dirname(path), exist_ok=True) + open(path, "w", encoding="utf-8").write(content) + else: + pp = os.path.join(PREVIEW, os.path.basename(path)) + os.makedirs(PREVIEW, exist_ok=True) + open(pp, "w", encoding="utf-8").write(content) + + +def cmd_backfill(report, scrape, libidx, apply): + """211 Discord notes: fill missing frontmatter only; body preserved.""" + changed = 0 + log = [] + for e in report["results"]["discord_match"]: + stem = e["note_stem"] + path = os.path.join(HACKS, stem + ".md") + if not os.path.exists(path): + continue + rec = build_record(scrape[e["scrape_dir"]], libidx) + fm_text, body, _ = read_note(path) + fm = parse_fm(fm_text) + before = dict(fm) + # fill only missing / dash + def missing(k): + v = fm.get(k) + return v in (None, "", "—") or (k == "type" and not v) + if missing("base") and rec["base"] and rec["base"] != "—": + fm["base"] = rec["base"] + if missing("version") and rec["version"]: + fm["version"] = rec["version"] + if missing("status"): + cs = canon_status(rec["status"]) or canon_status(rec["lead"]) + if cs: + fm["status"] = cs + if missing("type") and rec["types"]: + fm["type"] = rec["types"] + if missing("developer") and rec["developer"]: + fm["developer"] = rec["developer"] + if missing("release_date") and rec["release_date"]: + fm["release_date"] = rec["release_date"] + if missing("banner"): + au = art_url(rec) + if au: + fm["banner"] = au + fm["scrape_dir"] = e["scrape_dir"] + fm["tags"] = derive_tags(fm) + if fm != before: + changed += 1 + new = f"---\n{emit_fm(fm)}\n---\n{body}" + out_write(path, new, apply) + log.append(f" {stem}: +{sorted(set(fm)-set(k for k in before if before[k] not in (None,'','—')))}") + print(f"backfill: {changed} notes updated" + f"{' (APPLIED)' if apply else ' (dry-run -> .scrape/_preview)'}") + for l in log[:30]: + print(l) + + +def cmd_merge(report, scrape, libidx, apply): + """43 curated overlaps: keep note, add banner + Story/Features/community links.""" + changed = 0 + for e in report["results"]["curated_overlap"]: + stem = e["note_stem"] + path = os.path.join(HACKS, stem + ".md") + if not os.path.exists(path): + continue + rec = build_record(scrape[e["scrape_dir"]], libidx) + fm_text, body, _ = read_note(path) + fm = parse_fm(fm_text) + if rec["developer"] and not fm.get("developer"): + fm["developer"] = rec["developer"] + if rec["release_date"] and not fm.get("release_date"): + fm["release_date"] = rec["release_date"] + au = art_url(rec) + if au and not fm.get("banner"): + fm["banner"] = au + fm["scrape_dir"] = e["scrape_dir"] + + # body: insert banner image after callout blockquote (if no image yet) + if au and "![" not in body: + m = re.search(r"((?:^>.*\n)+)", body, re.M) + if m: + ins = m.end() + body = body[:ins] + f"\n![banner|480]({au})\n" + body[ins:] + # build append sections before the [[Index footer + add = [] + if rec["story"] and "## Story" not in body: + add.append(f"## Story\n\n{rec['story']}") + if rec["features"] and "## Features" not in body: + add.append(f"## Features\n\n{features_block(rec['features'])}") + new_links = [u for u in rec["links"] if u not in body] + if new_links and "## Community links" not in body: + add.append(f"## Community links\n\n{links_block(new_links)}") + if add: + block = "\n" + "\n\n".join(add) + "\n\n" + # insert after Summary: before the first of Type/Links/In the library, + # else before the [[Index footer. + anchor = None + for h in (r"\n## Type", r"\n## Links", r"\n## In the library", + r"\n## Files", r"\n\[\[Index"): + m2 = re.search(h, body) + if m2: + anchor = m2.start() + break + if anchor is not None: + body = body[:anchor] + "\n" + block.rstrip() + "\n" + body[anchor:] + else: + body = body.rstrip() + "\n\n" + block + new = f"---\n{emit_fm(fm)}\n---\n{body}" + out_write(path, new, apply) + changed += 1 + print(f"merge: {changed} curated notes enriched" + f"{' (APPLIED)' if apply else ' (dry-run -> .scrape/_preview)'}") + + +def safe_stem(name): + s = re.sub(r"^\s*pok[eé]mon\s+", "", name, flags=re.I).strip() + s = s.replace("/", " ").replace(":", " -").replace("|", " ") + s = re.sub(r'[<>"\\?*]', "", s) + s = re.sub(r"\s+", " ", s).strip() + return s or name + + +def build_body(rec, fm, *, owned, library_note=None): + """Clean, uniform wiki body shared by create + rebuild. owned=True writes an + 'In the library' (RomM/served) block; owned=False writes a catalog-entry note.""" + title = fm["title"] + plat, base = fm.get("platform", "—"), fm.get("base", "—") + status = fm.get("status", "—") + ver = fm.get("version", "—") + au = fm.get("banner") + kindline = {"console": "ROM hack", "fangame": "fan-game", + "patch": "patch"}.get(rec["kind"], "ROM hack / fan-game") + callout = (f"> [!info] {', '.join(fm.get('type') or []) or kindline} — **{status}**\n" + f"> {PLATFORM_LABEL.get(plat, plat)} · base **{base}** · " + f"version **{ver}**" + + (f" · by **{fm['developer']}**" if fm.get("developer") else "")) + parts = [f"# {title}", "", callout, ""] + if au: + parts += [f"![banner|480]({au})", ""] + parts += ["## Summary", "", + rec["lead"] or rec["description_body"] + or "Catalogued from the Discord ROM-hack archive. See links below.", ""] + if rec["story"]: + parts += ["## Story", "", rec["story"], ""] + if rec["features"]: + parts += ["## Features", "", features_block(rec["features"]), ""] + if fm.get("type"): + parts += ["## Type", type_links(fm["type"]), ""] + if rec["links"]: + parts += ["## Links", "", links_block(rec["links"]), ""] + if owned: + slug = library_note or rec["scrape_dir"] + parts += ["## In the library", "", + f"- Served files: [browse]({ART_BASE.replace('/_meta','')}/{slug}/)", + f"- Library path: `/storage1/labdata/romhacks/library/{slug}/`", ""] + else: + parts += ["## In the library", "", + "> [!note] Catalog entry imported from the Discord archive on " + f"{TODAY}. Not yet placed in the RomM library.", ""] + parts += ["[[Index|← back to directory]]", ""] + return "\n".join(parts) + + +def cmd_create(report, scrape, libidx, apply): + """83 unmatched: brand-new wiki-schema notes.""" + created = skipped = 0 + existing = {os.path.splitext(f)[0].lower() for f in os.listdir(HACKS)} + for e in report["results"]["unmatched"]: + rec = build_record(scrape[e["scrape_dir"]], libidx) + stem = safe_stem(rec["name"]) + if stem.lower() in existing: + skipped += 1 + continue + plat = rec["platform"] or "—" + base = rec["base"] or "—" + status = canon_status(rec["status"]) or canon_status(rec["lead"]) or "—" + au = art_url(rec) + title = rec["name"] if rec["name"].lower().startswith(("pokémon", "pokemon")) \ + else f"Pokémon {stem}" + title = title.replace("Pokemon", "Pokémon") + fm = {"title": title, "platform": plat, "base": base, + "version": rec["version"] or "—", "status": status, + "type": rec["types"], "generation": "—"} + if rec["developer"]: + fm["developer"] = rec["developer"] + if rec["release_date"]: + fm["release_date"] = rec["release_date"] + if au: + fm["banner"] = au + fm["library_path"] = "—" + if rec["links"]: + fm["source"] = rec["links"][0] + fm["scrape_dir"] = e["scrape_dir"] + fm["added"] = TODAY + fm["play_status"] = "Unplayed" + fm["tags"] = derive_tags(fm) + content = f"---\n{emit_fm(fm)}\n---\n" + build_body(rec, fm, owned=False) + out_write(os.path.join(HACKS, stem + ".md"), content, apply) + created += 1 + print(f"create: {created} new notes, {skipped} skipped (name collision)" + f"{' (APPLIED)' if apply else ' (dry-run -> .scrape/_preview)'}") + + +def cmd_rebuild(report, scrape, libidx, apply): + """211 Discord notes: regenerate the BODY into the clean uniform schema, + preserving (already-backfilled) frontmatter. Removes the messy auto-import + callout / blockquoted Description / duplicated Download artifacts.""" + done = 0 + owned_slugs = set(libidx) + for e in report["results"]["discord_match"]: + stem = e["note_stem"] + path = os.path.join(HACKS, stem + ".md") + if not os.path.exists(path): + continue + rec = build_record(scrape[e["scrape_dir"]], libidx) + fm_text, _, _ = read_note(path) + fm = parse_fm(fm_text) + owned = e["scrape_dir"] in owned_slugs + body = build_body(rec, fm, owned=owned, library_note=e["scrape_dir"]) + content = f"---\n{emit_fm(fm)}\n---\n{body}" + out_write(path, content, apply) + done += 1 + print(f"rebuild: {done} Discord note bodies normalized" + f"{' (APPLIED)' if apply else ' (dry-run -> .scrape/_preview)'}") + + +def main(): + cmds = {"backfill": cmd_backfill, "merge": cmd_merge, + "create": cmd_create, "rebuild": cmd_rebuild} + if len(sys.argv) < 2 or sys.argv[1] not in cmds: + sys.exit(f"usage: enrich_vault.py {{{'|'.join(cmds)}}} [--apply]") + apply = "--apply" in sys.argv + report = json.load(open(os.path.join(SCRAPE, "_match_report.json"), encoding="utf-8")) + scrape = load_scrape() + libidx = json.load(open(os.path.join(SCRAPE, "_library_index.json"), encoding="utf-8")) + cmds[sys.argv[1]](report, scrape, libidx, apply) + + +if __name__ == "__main__": + main() diff --git a/scripts/enrich_web.py b/scripts/enrich_web.py new file mode 100644 index 0000000..8092c2f --- /dev/null +++ b/scripts/enrich_web.py @@ -0,0 +1,106 @@ +#!/usr/bin/env python3 +"""Apply web-researched facts onto vault notes, idempotently. + +Reads .scrape/web_facts.json: + { "": { + "tagline": str, "summary": str, "developer": str, "version": str, + "status": "Complete|Ongoing|Beta", "release_date": "YYYY-MM-DD"|"YYYY", + "base": str, "platform": str, "generation": str, "homepage": str, + "type": [str], "features": [str], "notability": str } } +All keys optional. Provided scalars OVERRIDE existing frontmatter (web is +authoritative, fixes bad scrape values). Body sections Summary / Features / +Why it stands out are replaced (or inserted after Summary) — re-runnable. + +Default dry-run -> .scrape/_preview/. Pass --apply to write the live vault. +""" +from __future__ import annotations +import json, os, re, sys, glob +sys.path.insert(0, os.path.dirname(os.path.abspath(__file__))) +import enrich_vault as E + +FACTS_GLOB = os.path.join(E.SCRAPE, "web_facts*.json") +SCALAR_FIELDS = ["tagline", "developer", "version", "status", "release_date", + "base", "platform", "generation", "homepage"] + + +def set_section(body, heading, content): + """Replace the body under '## heading' (up to next '## ' or footer), or + insert it. Summary near the top; others after Summary; falling back to + before Type/Links/In the library/footer.""" + pat = re.compile(rf"(?ms)^## {re.escape(heading)}\s*\n.*?(?=^## |\n\[\[Index|\Z)") + block = f"## {heading}\n\n{content.rstrip()}\n\n" + if pat.search(body): + return pat.sub(block, body, count=1) + if heading == "Summary": + m = re.search(r"(?m)^## ", body) + idx = m.start() if m else len(body) + return body[:idx] + block + body[idx:] + msum = re.search(r"(?ms)^## Summary\s*\n.*?(?=^## |\n\[\[Index|\Z)", body) + if msum: + idx = msum.end() + return body[:idx] + block + body[idx:] + for h in (r"(?m)^## Type", r"(?m)^## Links", r"(?m)^## In the library", + r"\n\[\[Index"): + m = re.search(h, body) + if m: + return body[:m.start()] + block + body[m.start():] + return body.rstrip() + "\n\n" + block + + +def apply_one(stem, facts): + path = os.path.join(E.HACKS, stem + ".md") + if not os.path.exists(path): + return None, "missing" + fm_text, body, _ = E.read_note(path) + fm = E.parse_fm(fm_text) + + for k in SCALAR_FIELDS: + if facts.get(k): + fm[k] = facts[k] + if facts.get("type"): + fm["type"] = facts["type"] + fm["tags"] = E.derive_tags(fm) + + # keep the body's info callout in sync with the (now-updated) frontmatter + plat = fm.get("platform", "—") + callout = (f"> [!info] {', '.join(fm.get('type') or []) or 'ROM hack'} — " + f"**{fm.get('status', '—')}**\n" + f"> {E.PLATFORM_LABEL.get(plat, plat)} · base **{fm.get('base', '—')}** · " + f"version **{fm.get('version', '—')}**" + + (f" · by **{fm['developer']}**" if fm.get("developer") else "")) + body = re.sub(r"(?m)^> \[!info\].*(?:\n> .*)*", callout, body, count=1) + + if facts.get("summary"): + body = set_section(body, "Summary", facts["summary"].strip()) + if facts.get("features"): + feats = "\n".join(f"- {x.strip()}" for x in facts["features"]) + body = set_section(body, "Features", feats) + if facts.get("notability"): + body = set_section(body, "Why it stands out", facts["notability"].strip()) + + return f"---\n{E.emit_fm(fm)}\n---\n{body}", "ok" + + +def main(): + apply = "--apply" in sys.argv + facts = {} + for fp in sorted(glob.glob(FACTS_GLOB)): + facts.update(json.load(open(fp, encoding="utf-8"))) + ok = miss = 0 + for stem, f in facts.items(): + content, st = apply_one(stem, f) + if st == "missing": + miss += 1 + print(f" MISSING note: {stem}") + continue + if apply: + open(os.path.join(E.HACKS, stem + ".md"), "w", encoding="utf-8").write(content) + else: + os.makedirs(E.PREVIEW, exist_ok=True) + open(os.path.join(E.PREVIEW, stem + ".md"), "w", encoding="utf-8").write(content) + ok += 1 + print(f"enrich_web: {ok} notes {'APPLIED' if apply else 'previewed'}, {miss} missing") + + +if __name__ == "__main__": + main() diff --git a/scripts/scrape_match.py b/scripts/scrape_match.py new file mode 100644 index 0000000..2f37874 --- /dev/null +++ b/scripts/scrape_match.py @@ -0,0 +1,159 @@ +#!/usr/bin/env python3 +"""Match Discord-scrape metadata.json entries to the live vault notes. + +Reads: + - .scrape//metadata.json (pulled from valhalla; {name, description, links, art}) + - /Pokémon ROM Hacks/Hacks/*.md (live notes; frontmatter source of truth) + +Produces a JSON report on stdout (and --report path) classifying every scrape +entry as one of: + curated_overlap -> a curated (non-Discord) note exists; merge description in + discord_match -> a Discord-import note exists; backfill frontmatter + unmatched -> no note exists; candidate for a brand-new note + +Matching is by a normalized key (lowercase, strip 'pokemon/pokémon', drop +non-alphanumerics). This is analysis only; it writes no vault notes. +""" +from __future__ import annotations +import json, os, re, sys, glob, unicodedata + +VAULT = r"C:\Users\MattC\Documents\Obsidian Vault" +HACKS = os.path.join(VAULT, "Pokémon ROM Hacks", "Hacks") +SCRAPE = os.path.join(os.path.dirname(__file__), "..", ".scrape") + + +def norm(name: str) -> str: + """Normalized match key: NFKD, drop accents, lowercase, strip 'pokemon', + keep only [a-z0-9].""" + name = unicodedata.normalize("NFKD", name) + name = "".join(c for c in name if not unicodedata.combining(c)) + name = name.lower() + name = re.sub(r"\bpok[eé]?mon\b", " ", name) + name = re.sub(r"[^a-z0-9]+", "", name) + return name + + +def parse_frontmatter(text: str) -> dict: + m = re.match(r"^---\n(.*?)\n---", text, re.S) + if not m: + return {} + fm: dict = {} + lines = m.group(1).split("\n") + i = 0 + while i < len(lines): + km = re.match(r"^([\w]+):\s*(.*)$", lines[i]) + if km: + k, v = km.group(1), km.group(2).strip() + if v == "" and i + 1 < len(lines) and re.match(r"^\s*-\s", lines[i + 1]): + items = [] + while i + 1 < len(lines) and re.match(r"^\s*-\s", lines[i + 1]): + items.append(lines[i + 1].strip()[2:].strip().strip('"')) + i += 1 + fm[k] = items + else: + fm[k] = v.strip('"') + i += 1 + return fm + + +# semi-structured fields commonly present in Discord descriptions +FIELD_PATS = { + "version": re.compile(r"(?im)^\s*version\s*[:\-]\s*(.+?)\s*$"), + "status": re.compile(r"(?im)^\s*status\s*[:\-]\s*(.+?)\s*$"), + "creator": re.compile(r"(?im)^\s*(?:creator|developer|author|made by|dev)\s*[:\-]\s*(.+?)\s*$"), + "language": re.compile(r"(?im)^\s*language\s*[:\-]\s*(.+?)\s*$"), + "base": re.compile(r"(?im)^\s*(?:base|base game|hack of|rom base)\s*[:\-]\s*(.+?)\s*$"), +} + + +def extract_fields(desc: str) -> dict: + out = {} + for k, pat in FIELD_PATS.items(): + m = pat.search(desc or "") + if m: + out[k] = m.group(1).strip() + return out + + +def main() -> None: + # index vault notes by normalized key + notes = {} + for f in glob.glob(os.path.join(HACKS, "*.md")): + text = open(f, encoding="utf-8").read() + fm = parse_frontmatter(text) + stem = os.path.splitext(os.path.basename(f))[0] + title = fm.get("title", stem) + key = norm(title) or norm(stem) + notes[key] = { + "stem": stem, + "title": title, + "is_discord": "source/discord" in (fm.get("tags") or []), + "base": fm.get("base", "—"), + "version": fm.get("version", "—"), + "status": fm.get("status", "—"), + "type": fm.get("type") or [], + "body_len": len(text), + } + + results = {"curated_overlap": [], "discord_match": [], "unmatched": []} + scrape_dirs = sorted(glob.glob(os.path.join(SCRAPE, "*", "metadata.json"))) + for jf in scrape_dirs: + meta = json.load(open(jf, encoding="utf-8")) + name = meta.get("name", "") + key = norm(name) + desc = meta.get("description", "") + fields = extract_fields(desc) + entry = { + "scrape_dir": os.path.basename(os.path.dirname(jf)), + "name": name, + "desc_len": len(desc), + "fields": fields, + "n_links": len(meta.get("links") or []), + "n_art": len(meta.get("art") or []), + } + note = notes.get(key) + if note is None: + results["unmatched"].append(entry) + elif note["is_discord"]: + entry["note_stem"] = note["stem"] + results["discord_match"].append(entry) + else: + entry["note_stem"] = note["stem"] + entry["note_body_len"] = note["body_len"] + results["curated_overlap"].append(entry) + + # curated notes with NO scrape match (web-research only) + matched_keys = {norm(json.load(open(jf, encoding="utf-8")).get("name", "")) + for jf in scrape_dirs} + curated_no_scrape = [ + n["stem"] for k, n in notes.items() + if not n["is_discord"] and k not in matched_keys + ] + + summary = { + "total_scrape": len(scrape_dirs), + "total_notes": len(notes), + "curated_overlap": len(results["curated_overlap"]), + "discord_match": len(results["discord_match"]), + "unmatched_scrape": len(results["unmatched"]), + "curated_without_scrape": len(curated_no_scrape), + } + out = {"summary": summary, "results": results, + "curated_without_scrape": sorted(curated_no_scrape)} + + if "--report" in sys.argv: + p = sys.argv[sys.argv.index("--report") + 1] + json.dump(out, open(p, "w", encoding="utf-8"), indent=2, ensure_ascii=False) + print(f"wrote {p}") + print(json.dumps(summary, indent=2)) + if "--list" in sys.argv: + print("\n== curated_overlap (merge Discord desc into curated note) ==") + for e in results["curated_overlap"]: + print(f" {e['note_stem']:40s} <- {e['scrape_dir']} ({e['desc_len']}c, {e['n_art']} art) {e['fields']}") + print("\n== unmatched scrape (no note yet) ==") + for e in results["unmatched"]: + print(f" {e['name']:45s} [{e['scrape_dir']}] ({e['desc_len']}c)") + + +if __name__ == "__main__": + main() diff --git a/wiki/SPEC.md b/wiki/SPEC.md new file mode 100644 index 0000000..dd5fc36 --- /dev/null +++ b/wiki/SPEC.md @@ -0,0 +1,112 @@ +# Pokémon ROM-Hack Wiki — build spec + +A handoff for the session that builds the browsable wiki site. Everything the +site needs is already exported to **`wiki/catalog.json`** by +`scripts/build-wiki-data.py` (re-run it after any vault edit). + +## Data source + +`wiki/catalog.json`: + +```jsonc +{ + "generated": "2026-06-08", + "count": 368, + "image_base": "https://romhacks-files.ginnoir.com", + "facets": { // pre-counted, for filter UI + "platform": { "GBA": 188, "NDS": 47, "Unknown": 45, "PC": 40, "GBC": 22, "GB": 14, "3DS": 6, "Patch": 6 }, + "base": { "...": 0 }, + "status": { "Complete": 0, "Ongoing": 0, "Beta": 0, "Unknown": 0 }, + "type": { "Expansion": 143, "New Experience": 129, "Difficulty": 105, "QoL": 50, "Vanilla+": 21, "Cosmetic": 11, "Demake": 8, "Roguelite": 5 }, + "play_status": { "Unplayed": 0 } + }, + "hacks": [ + { + "stem": "Radical Red", // unique id / route slug + "title": "Pokémon Radical Red", + "platform": "GBA", "base": "FireRed", "version": "4.1", + "status": "Complete", "type": ["Difficulty","Expansion"], + "generation": "Gen 1–9", + "developer": "Soupercell (Yuuiii) & koala4", + "release_date": "2024", // ISO date or bare year, may be null + "banner": "https://romhacks-files.ginnoir.com/_meta//", // may be null + "homepage": "https://...", // canonical info page, may be null + "source": "https://...", // download / thread, may be null + "library_path": "...", "play_status": "Unplayed", "rating": 4, // rating optional + "summary": "…2-3 sentence overview…", + "notability": "…why it stands out (flagship hacks only)…", + "story": "…plot, when known…", + "features": ["…", "…"], + "links": [ { "label": "Download", "url": "…" } ], + "tags": ["hack","platform/gba","base/firered","type/difficulty"] + } + ] +} +``` + +Nulls are real: ~45 `platform: null` (Unknown), some `base/version/status` null. +The UI must degrade gracefully (hide the chip, don't print "null"/"—"). + +## Coverage (what's populated, as of this export) + +- 368 hacks · **327 with banner images** · 332 with a rich summary · 200 with feature lists. +- ~20 flagship hacks (Radical Red, Unbound, Gaia, Infinite Fusion, Reborn, + Rejuvenation, Emerald Rogue, Elite Redux, Sacred/Storm, Crystal Clear, + Snakewood, Inclement Emerald, …) have hand-verified dev/version/notability. +- The long tail is scrape-sourced: good summary + image, sometimes null base/version. + +## Images + +All art is served from Caddy on valhalla: +- Scrape art (every hack): `https://romhacks-files.ginnoir.com/_meta//` + (the `banner` field is already a full URL — just use it). +- The site should **download `banner` images at build time** into its own + `public/` and rewrite to local paths — don't hot-link valhalla in production, + and provide a placeholder for the ~41 imageless hacks. + +## Pages + +1. **Home / directory** — the headline surface. + - Hero with the total count + a few flagship cards. + - A filterable, searchable **grid of hack cards**. Facets: platform, base, + type, status (use `facets` for counts). Free-text search over title + + developer + summary. + - Sort: by name, by release_date, by platform. +2. **Hack detail** (`/hack/`) — banner, title, the info chips + (platform · base · version · status · dev · release), summary, "Why it + stands out", story, features list, links, and play-status/rating if set. + Cross-link to other hacks sharing base/developer. +3. **Browse by** platform / base / type — landing lists (mirror the vault MOCs). +4. (optional) **Play queue** — filter by `play_status`, show `rating` stars. + +## Visual direction (per ginnoir's design-quality rules — no generic templates) + +- Pick an opinionated direction. Suggested: **"retro game-cartridge / Pokédex"** + — a dark, slightly CRT-tinted base with one strong accent per *type* + (Difficulty=red, Expansion=violet, New Experience=teal, QoL=green, + Vanilla+=blue, Demake=amber, Roguelite=magenta, Cosmetic=pink). Use the type + accent as the card's left border / chip color so the grid reads at a glance. +- Cards: banner image with a gradient scrim, title, base+platform chip row, + a one-line summary clamp. Hover = lift + accent glow (compositor-only + transform/opacity). Real focus-visible states. +- Hierarchy through scale: big editorial hero, dense but rhythmic grid. +- Typography: a characterful display face for titles + a clean sans for body + (two families max). Tabular nums for versions/dates. +- Treat the platform/type facets as a designed filter rail, not a stock sidebar. + +## Tech suggestion + +Static, no backend. **Astro** (content-collection from `catalog.json`) or a +small **Vite + vanilla/Preact** SPA that `fetch`es `catalog.json`. Build to +static HTML, host on the same Caddy box (add a stack in `homelabstack`) or any +static host. Keep JS budget small (<150 kB) — it's a catalog, not an app. + +## Regenerating the data + +``` +python scripts/build-vault-mocs.py # refresh in-vault MOC tables (Obsidian) +python scripts/build-wiki-data.py # refresh wiki/catalog.json (the site) +``` + +The vault notes are the single source of truth. To enrich more hacks before +building, see `../README.md` → "Enrichment pipeline". diff --git a/wiki/catalog.json b/wiki/catalog.json new file mode 100644 index 0000000..42115af --- /dev/null +++ b/wiki/catalog.json @@ -0,0 +1,16904 @@ +{ + "generated": "2026-06-08", + "count": 368, + "facets": { + "platform": { + "GBA": 188, + "NDS": 47, + "Unknown": 45, + "PC": 40, + "GBC": 22, + "GB": 14, + "3DS": 6, + "Patch": 6 + }, + "base": { + "Unknown": 185, + "Emerald": 54, + "FireRed": 50, + "Crystal": 19, + "Ruby": 8, + "Platinum": 6, + "HeartGold": 5, + "SoulSilver": 4, + "White": 4, + "Gold": 3, + "Black": 2, + "Black 2": 2, + "LeafGreen": 2, + "Mystery Dungeon": 2, + "Sapphire": 2, + "White 2": 2, + "Alpha Sapphire": 1, + "China": 1, + "Conquest": 1, + "Emerald (TrashMan)": 1, + "Explorers of Sky": 1, + "Pokemon Black & White": 1, + "Pokemon Sun and Moon": 1, + "Red": 1, + "Red and Blue": 1, + "Silver": 1, + "Stadium": 1, + "Sun": 1, + "TCG": 1, + "XD: Gale of Darkness": 1, + "Yellow": 1, + "how far you are into the journey": 1, + "precedents set": 1, + "the north atlantic island nation of Iceland": 1 + }, + "status": { + "Complete": 168, + "Unknown": 161, + "Ongoing": 28, + "Beta": 10, + "Complete (beta)": 1 + }, + "type": { + "Expansion": 143, + "New Experience": 129, + "Difficulty": 105, + "QoL": 50, + "Vanilla+": 21, + "Cosmetic": 11, + "Demake": 8, + "Roguelite": 5 + }, + "play_status": { + "Unplayed": 367, + "Playing": 1 + } + }, + "image_base": "https://romhacks-files.ginnoir.com", + "hacks": [ + { + "stem": "A FarfetchΓÇÖD Story", + "title": "Pokémon A Farfetch’D Story", + "platform": "PC", + "base": null, + "version": "completed", + "status": "Complete", + "generation": "Joiplay/RPGXP", + "developer": "KennyCatches", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_A_Farfetch_D_Story/IMG_9877-2cbdc12c9c7791d8.png", + "source": "https://www.mediafire.com/file/9x6tmddqrzlew42", + "library_path": "/storage1/labdata/romhacks/library/Pokemon_A_Farfetch_D_Story/", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_A_Farfetch_D_Story", + "type": [ + "New Experience" + ], + "tags": [ + "hack", + "platform/pc", + "status/complete", + "type/newexperience", + "source/discord" + ], + "summary": "If you're boring when you're a pokemon trainer. So in this game, you're a pokemon, and you play as Farfetch'd! Meeting new pokemon and working together. You have to explore the forest and solve some puzzles. It's complete in English. And now, Let's play! Farley the Galarian Farfetch'd is lost after an unexpected storm!
Will Farley solve this weather problem in the Alto region and perhaps find his way home?… Game duration: 3 hours split into 3 mini-episodes. Explore the diverse environments of the Alto region! Meet new Pokémon and work together!
Multiple friendly Pokémon will join Farley during his adventure.
Press the 'Q' key to switch between party members!
Each Pokémon has a special overworld ability. Use this to solve puzzles and navigate through areas. [Mediafire Link](https://www.mediafire.com/file/9x6tmddqrzlew42) [1 Fichier Download](https://1fichier.com/?uo5udq864m56d1fxpmf5&af=2885774) [Source](https://eeveeexpo.com/a-farfetchd-story/)", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/9x6tmddqrzlew42" + }, + { + "label": "Link", + "url": "https://1fichier.com/?uo5udq864m56d1fxpmf5&af=2885774" + }, + { + "label": "Link", + "url": "https://eeveeexpo.com/a-farfetchd-story/" + } + ] + }, + { + "stem": "A Star in the Desert", + "title": "Pokémon A Star in the Desert", + "platform": "PC", + "base": null, + "version": "1.2", + "status": "Complete", + "generation": "Joiplay/RPGXP", + "developer": "Ranko", + "release_date": "2024", + "source": "https://www.pokeharbor.com/2024/08/pokemon-a-star-in-the-desert/", + "library_path": "/storage1/labdata/romhacks/library/Pokemon_A_Star_in_the_Desert/", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_A_Star_in_the_Desert", + "type": [], + "tags": [ + "hack", + "platform/pc", + "status/complete", + "source/discord" + ], + "summary": "[Source Website](https://www.pokeharbor.com/2024/08/pokemon-a-star-in-the-desert/)", + "notability": "", + "story": "", + "features": [ + "A rich storyline set in the Pokémon world, enhanced with character portraits from PMDCollab.", + "Track your progress with the Mission Log—complete all missions for full completion!", + "Discover loads of new items, including throwable ones to use against your enemies.", + "Uncover potential secrets hidden throughout the game.", + "Tackle a variety of missions with varying levels of difficulty.", + "Face off against dangerous Boss Pokémon!", + ":Download: Download here:", + "[Mega](https://mega.nz/file/ISkhVBwZ#QaA1Ucg32kJxvTOE7cAuYQVBsiyKU6ITc7pCGDZRxKA)", + "[Mediafire](https://www.mediafire.com/file/i23fnwtuhb4shx1/Pokemon+-+A+Star+in+the+Desert+v1.2.zip/file)" + ], + "links": [ + { + "label": "Info / thread", + "url": "https://www.pokeharbor.com/2024/08/pokemon-a-star-in-the-desert/" + }, + { + "label": "Download", + "url": "https://mega.nz/file/ISkhVBwZ#QaA1Ucg32kJxvTOE7cAuYQVBsiyKU6ITc7pCGDZRxKA" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/i23fnwtuhb4shx1/Pokemon+-+A+Star+in+the+Desert+v1.2.zip/file" + }, + { + "label": "Download", + "url": "https://mega.nz/file/ISkhVBwZ" + } + ] + }, + { + "stem": "Abstract", + "title": "Pokémon Abstract", + "platform": null, + "base": null, + "version": "1.7", + "status": "Complete", + "generation": null, + "release_date": "2023", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Abstract/title-1-14b9cf3147b2a7f1.gif", + "source": "https://www.pokecommunity.com/threads/pokémon-abstract-version.527324/", + "library_path": "—", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Abstract", + "type": [], + "tags": [ + "hack", + "status/complete", + "source/discord" + ], + "summary": "**Creator**: Nandthesword **Version**: 1.7 **Updated**: August 10, 2023 **Status**: Completed [Source Website](https://www.pokecommunity.com/threads/pokémon-abstract-version.527324/) ## __Description__ > Velos supports a wide variety of cultures, landscapes and unique views. Although, because of its diversity, this region is divided into four provinces, each with their own differences and conflicts. > > It's time for you to go out into the unknown! > > Traverse new areas, take on the Velos Gym Challenge, find new Pokémon, and meet people with new perspectives at your OWN leisure! ## __Features__ - 11 Settlements. - 28 Wild Areas. - 4 Provinces Tranquill, Strife, Carnage, & Vigor. - Gyms/Story Events that can be done in any order. - 18 New Pokémon. - 8 New Megas. - New tiles. - Fully Custom UI. - Level scaling. - Difficulty modes. - HM Items that open up new areas. - A full story. ## :Download: [Download Here](https://drive.usercontent.google.com/download?id=1lbpV4vCwn77LZxIxRTyXMxY_gqUBuffq&export=download&authuser=0)", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Info / thread", + "url": "https://www.pokecommunity.com/threads/pokémon-abstract-version.527324/" + }, + { + "label": "Link", + "url": "https://drive.usercontent.google.com/download?id=1lbpV4vCwn77LZxIxRTyXMxY_gqUBuffq&export=download&authuser=0" + } + ] + }, + { + "stem": "Acceptance", + "title": "Pokémon Acceptance", + "platform": "PC", + "base": null, + "version": "4.0", + "status": "Complete", + "generation": "Joiplay/RPGXP", + "developer": "Tpick", + "release_date": "2020", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Acceptance/IMG_9441-980e54cad6d5e40a.png", + "source": "https://www.mediafire.com/file/pdwkgxwzgbbth48/Pokemon_Acceptance_4.0.zip/file", + "library_path": "/storage1/labdata/romhacks/library/Pokemon_Acceptance/", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Acceptance", + "type": [ + "New Experience", + "Cosmetic" + ], + "tags": [ + "hack", + "platform/pc", + "status/complete", + "type/newexperience", + "type/cosmetic", + "source/discord" + ], + "summary": "Pokemon Acceptance is an rmxp fan game running on Pokemon Essentials 17.2 using a gen 5 style tileset. This game was solo developed by Tpick, a first time game developer who started development in May 2020.\n\nA mysterious barrier emerges around the PokePark, causing many people and Pokemon to go missing. Professor Rowan sends Gary Oak and his young assistant Grace (you) to investigate the disturbance. Once there, you discover a civil war has begun inside the PokePark! The sinister Ein has kidnapped Phione while all of the powerful Pokemon that usually protect the park are gone. Ein has even rec", + "notability": "", + "story": "", + "features": [ + "This game takes place in the same setting/map as the Wii spin-off PokePark 2: Wonders Beyond and takes place a few years after the events of that game. This game is also heavily tied to Pokemon Colosseum, and takes place a few years before that game. Don't worry, you don't need to have played either to understand the plot!", + "Most of the wild Pokemon in this game (as well as enemy trainers) have final evolutions that do not exceed a BST of 480. This game serves as a story driven adventure (no gyms/league!) that encourages the player to try out new Pokemon they haven't before, and gives an environment that is more viable for those pokemon to shine! Find a large number of TMs, move tutors, and other power ups to unlock their full potential!" + ], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/pdwkgxwzgbbth48/Pokemon_Acceptance_4.0.zip/file" + } + ] + }, + { + "stem": "Acerion Re", + "title": "Pokémon Acerion Re", + "platform": "PC", + "base": null, + "version": null, + "status": "Complete", + "generation": null, + "developer": "ardicoozer", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Acerion_Re/Pokemon-Acerion-860x631-5f086fe64ea25119.webp", + "source": "https://pokehostel.com/pokemon-acerion-re/", + "library_path": "—", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Acerion_Re", + "type": [ + "New Experience" + ], + "tags": [ + "hack", + "platform/pc", + "status/complete", + "type/newexperience", + "source/discord" + ], + "summary": "Discover a brand new region called Arctus with a new story to follow. Catch Pokemon from Generation 1 to 9. You'll also get to see cool things like Dynamax, Gigantamax, Z moves, and Terastal. Also, Complete different tasks mentioned in the quest system.", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Link", + "url": "https://pokehostel.com/pokemon-acerion-re/" + } + ] + }, + { + "stem": "Adventure - Red Chapter", + "title": "Pokémon Adventure - Red Chapter", + "platform": "GBA", + "base": "FireRed", + "version": "Beta 15", + "status": "Complete (beta)", + "generation": "Gen 1–6 mons", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Adventure_Red_Chapter/pokemon-adventure-red-chapter-2-ab0e6952da735446.webp", + "source": "https://www.pokecommunity.com/threads/pokemon-adventure-red-chapter.331313/", + "library_path": "roms/gba/Hacks/Pokemon - Adventure - Red Chapter (Hack).gba", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Adventure_Red_Chapter", + "type": [ + "New Experience" + ], + "tags": [ + "hack", + "platform/gba", + "base/firered", + "status/completebeta", + "type/newexperience" + ], + "summary": "Based on the Pokémon Adventures (Pokémon Special) manga — play through Red's story with manga events. Beta 15 is the full, finished beta.", + "notability": "", + "story": "", + "features": [ + "Follow the adventures of Pokémon Trainer Red!", + "2 Rivals: Blue and Green!", + "Multiple regions (including Alola)!", + "Overhauled visuals compared to the original Pokémon Fire Red!", + "Playable Characters!", + "Character Costumes!", + "Character Mugshots!", + "Day and Night System!", + "The Level Cap has been raised from 100 to 255!", + "Reusable TMs!", + "Lens (an item that allows you to check the EVs and IVs of your party members!)", + "New Music", + "Mega Evolution", + "Many, many Pokémon!" + ], + "links": [ + { + "label": "Source / info", + "url": "https://www.pokecommunity.com/threads/pokemon-adventure-red-chapter.331313/" + }, + { + "label": "Lookup", + "url": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Adventure%20-%20Red%20Chapter%20rom%20hack" + } + ] + }, + { + "stem": "Aesthetic Red", + "title": "Pokémon Aesthetic Red", + "platform": "GBA", + "base": "FireRed", + "version": "1.1", + "status": "Complete", + "generation": "Gen 1", + "source": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Aesthetic%20Red%20rom%20hack", + "library_path": "roms/gba/Hacks/Pokemon - Aesthetic Red (Hack).gba", + "play_status": "Unplayed", + "type": [ + "Cosmetic", + "Vanilla+" + ], + "tags": [ + "hack", + "platform/gba", + "base/firered", + "status/complete", + "type/cosmetic", + "type/vanilla+" + ], + "summary": "A visual + musical overhaul of FireRed — restyled tiles, sprites, and soundtrack while keeping vanilla gameplay.", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Lookup", + "url": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Aesthetic%20Red%20rom%20hack" + } + ] + }, + { + "stem": "Aether White 2", + "title": "Pokémon Aether White 2", + "platform": "NDS", + "base": null, + "version": "1.2", + "status": "Complete", + "generation": "Gen V", + "developer": "ely", + "release_date": "2026", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Aether_White_2/Pokemon-Aether-White-2-c02395e39ecc9c4b.webp", + "source": "https://www.mediafire.com/file/gb2gpaldq45axy5/AW2Release1.2.zip/file", + "library_path": "/storage1/Emulation/roms/nds/AW2Release1.2.zip", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Aether_White_2", + "type": [ + "Difficulty", + "New Experience" + ], + "tags": [ + "hack", + "platform/nds", + "status/complete", + "type/difficulty", + "type/newexperience", + "source/discord" + ], + "summary": "Pokemon Aether White 2 is a large-scale enhancement hack of Pokemon White 2, created for players who enjoy challenging battles and deeper team-building. Developed by ely, it expands the original Unova experience with extensive new content, including revamped encounters, custom Pokémon learnsets, and hundreds of additional battles.\n\nOne of its standout features is the inclusion of over 800 custom trainer battles, ensuring the game feels fresh even for players familiar with Black 2 and White 2. Trainers use stronger, more strategic teams, and frequent double battles push you to think beyond simp", + "notability": "", + "story": "", + "features": [ + "800+ Custom Trainer Battles", + "Trainers throughout the game have new teams and strategies, creating a far more challenging experience.", + "500 Obtainable Pokemon", + "A huge roster is available throughout the game, each with custom learnsets to keep battles interesting.", + "Custom Route Encounters", + "Every route has been reworked with new Pokemon encounters, with additional encounters appearing in towns and cities.", + "Fully Customized Hidden Grottos", + "Hidden Grottos have been redesigned with new Pokemon and items to discover.", + "Rebalanced Pokemon", + "Some Pokemon have updated stats and abilities for better balance and viability.", + "No Grinding Required", + "Infinite Rare Candies are available in most Pokemon Centers so you can focus on battling and team building.", + "[Download Here](https://www.mediafire.com/file/gb2gpaldq45axy5/AW2Release1.2.zip/file)" + ], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/gb2gpaldq45axy5/AW2Release1.2.zip/file" + } + ] + }, + { + "stem": "AfricanVs", + "title": "Pokémon AfricanVs", + "platform": "PC", + "base": null, + "version": null, + "status": "Complete", + "generation": "Joiplay/RPGXP", + "developer": "El_Gamid", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_AfricanVs/Pokemon-Africanvs-f45720c43ec46118.png", + "source": "https://www.mediafire.com/file/61u1dzi4103rdbf/Pokémon+Africanvs+Definitive+Edition.rar/file", + "library_path": "/storage1/labdata/romhacks/library/Pokemon_AfricanVs/", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_AfricanVs", + "type": [ + "New Experience" + ], + "tags": [ + "hack", + "platform/pc", + "status/complete", + "type/newexperience", + "source/discord" + ], + "summary": "Immerse yourself in the history of Ancient Europe in Pokémon Africanvs. This begins in the year 219 BC and takes place throughout the 2nd Punic War.\n\nOur protagonist is a cadet of the Sagunto guard, who is awakened by the centurion Cepressus because Carthage is besieging the city. After escaping and getting to safety, our protagonist will defeat gymnasiums, becoming stronger and ending up hitting back at Hannibal, the Carthaginian leader, but he will not do it alone, you will meet different historical figures during the game. Interact with them and earn their friendship in Pokémon Africanvs!", + "notability": "", + "story": "", + "features": [ + "Pokemon from Generation 1 - 9.", + "New Fakemon starters.", + "New Custom & Regional Forms.", + "Explore some unique events.", + "Meet Historical Characters.", + "Minigames!", + "Explore the Pre-Roman Empire Of Julius Caesar.", + "Addition of Olympic & Random Mode.", + "Improved a lot sprites since last edition.", + "Graphical Fixes & Improvements.", + "Renovation of Gyms.", + "English and Spanish languages available!", + "## :Download: [Download Here](https://www.mediafire.com/file/61u1dzi4103rdbf/Pokémon+Africanvs+Definitive+Edition.rar/file)" + ], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/61u1dzi4103rdbf/Pokémon+Africanvs+Definitive+Edition.rar/file" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/61u1dzi4103rdbf/Pok%C3%A9mon+Africanvs+Definitive+Edition.rar/file" + } + ] + }, + { + "stem": "All In", + "title": "Pokémon All In", + "platform": "GBA", + "base": null, + "version": null, + "status": null, + "generation": "Gen III", + "developer": "YouTuber Chris Piche", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_All_In/fvzc9u8ob2ef1-18a52ef1afd3e4fc.png", + "source": "https://www.mediafire.com/file/9gymume5qsl2qel/all-in-v1.0.zip/file", + "library_path": "/storage1/Emulation/roms/gba/all-in-v1.0.gba", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_All_In", + "type": [ + "Difficulty" + ], + "tags": [ + "hack", + "platform/gba", + "type/difficulty", + "source/discord" + ], + "summary": "Catalogued from the Discord ROM-hack archive. See links below.", + "notability": "", + "story": "", + "features": [ + "Arcades/Game Corners are in every town with varying gacha machines and different games", + "No Poke Balls. Pokemon are only obtained via the gacha machines", + "All Mart items are only obtainable at Game Corners, including every secret base decoration available in Mauville", + "Shiny odds and Pokerus odds can be adjusted by flipping a coin on new game and calling it right (but if you're wrong it goes to default)", + "Pokemon Black Market (you can sell Pokemon for money)", + "Loan Sharks", + "Fake IDs (to get specifically into the Mauville Game Corner)", + "All HMs are usable in the overworld (except Fly and Flash) as long as you have the HM and the badge (Pokemon do not need to know the move)", + "Toggle the following for customizable gameplay:", + "D20 Dice in battle (affects crit rate, accuracy, and damage), coin flips for status effects and other conditions", + "Slot Effects in battle, randomly making battles more volatile", + "No Exp Mode (you have to gamble to win rare candies to level up)", + "Nuzlocke Mode (comes with level caps built in)", + "Randomize Trainers (this is triggered when a Pokemon is sent out in battle, meaning if you lose they won't necessarily have the same team again)", + "Randomize Wild Encounters (same as above)", + "KNOWN BUGS**:", + "Graphics issues on dice rolls in partner battle (Stephen vs Team Magma at Mossdeep). Not impact gameplay", + "If you hit nickname on Castform or the fossil pokemon (these are randomized in-game) you will get a weird string of text. This does not impact gameplay", + "Truant is a little weird with stacking coin flips", + "Ace math in Blackjack" + ], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/9gymume5qsl2qel/all-in-v1.0.zip/file" + }, + { + "label": "Download", + "url": "https://mega.nz/file/0GdWHKgK#Ih668xlmnf8QjbogOyF8Qe0gr4DxO-XSTggD3Qn2p4g" + } + ] + }, + { + "stem": "Altair , Sirius & Vega", + "title": "Pokémon Altair , Sirius & Vega", + "platform": "GBA", + "base": "Emerald", + "version": "Sep, 4 2020", + "status": "Complete", + "generation": "Gen III", + "developer": "Pokemon Vega Team", + "release_date": "2020", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Altair_Sirius_Vega/Sirius_Altair_Vega-5499f40622b16da7.gif", + "source": "http://www.mediafire.com/file/ge6slgc2i4rwrlv/Pok%C3%A9mon+Vega+OST.zip", + "library_path": "/storage1/Emulation/roms/gba/Pokemon Altair.gba", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Altair_Sirius_Vega", + "type": [ + "New Experience" + ], + "tags": [ + "hack", + "platform/gba", + "base/emerald", + "status/complete", + "type/newexperience", + "source/discord" + ], + "summary": "**Pokémon Altair and Sirius** [Source Website](https://www.pokecommunity.com/threads/pokémon-vega-and-altair-sirius-english-version.365959/)", + "notability": "", + "story": "", + "features": [ + "Brand new region, the Tohoak region!", + "181 new Pokemon, plus 56 Pokemon from newer generations!", + "70 new moves, plus 87 moves from newer generations!", + "Impressive custom music! Full OST [download here](http://www.mediafire.com/file/ge6slgc2i4rwrlv/Pok%C3%A9mon+Vega+OST.zip) !", + "Rematches with almost all important trainers!", + "An extensive postgame, including a battle facility!" + ], + "links": [ + { + "label": "Download", + "url": "http://www.mediafire.com/file/ge6slgc2i4rwrlv/Pok%C3%A9mon+Vega+OST.zip" + }, + { + "label": "Download", + "url": "https://drive.google.com/file/d/1x58tUqktG17miRDyOrP5QNK_PqKwZCLf/view?usp=drivesdk" + }, + { + "label": "Download", + "url": "https://drive.google.com/file/d/1nhNX4JNwdb15-4OJ7fNBYrq6W7KyRa0p/view?usp=drivesdk" + }, + { + "label": "Download", + "url": "https://drive.google.com/file/d/1Oz1B5vo6RrppH2piau0ulq6N9YAAkhvI/view?usp=drivesdk" + }, + { + "label": "Info / thread", + "url": "https://www.pokecommunity.com/threads/pokémon-vega-and-altair-sirius-english-version.365959/" + } + ] + }, + { + "stem": "Ambrosia", + "title": "Pokémon Ambrosia", + "platform": "GBC", + "base": "Crystal", + "version": "2.4.0", + "status": "Ongoing", + "generation": "Gen 2 style", + "developer": "DrUltimaMan", + "release_date": "2025", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Ambrosia/Pokemon-Ambrosia-2-474c55cda4370734.webp", + "source": "https://www.pokecommunity.com/", + "library_path": "roms/gbc/Hacks/Pokemon - Ambrosia (Hack).gbc", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Ambrosia", + "type": [ + "New Experience" + ], + "tags": [ + "hack", + "platform/gbc", + "base/crystal", + "status/ongoing", + "type/newexperience" + ], + "summary": "An ambitious Crystal-engine hack with a new region, expanded dex, and modernized features pushed onto Gen 2 hardware.", + "notability": "", + "story": "The story is completely new and centers on an imminent invasion of Kanto due to a war with Hoen.\nNew dialog for every NPC and event in the entire game\nThree recurring rivals, one of which uses an exact copy of the player's party including stats, items, nicknames, everything.\n**World**\nMany updated maps and numerous all new maps.\nA more open world design allowing the player to enter areas with trainers and Pokemon far stronger than they would be able to beat but with hidden powerful rewards.\nCan travel north to Blackthorn and west to Olivine from the beginning of the game.\nCan travel to Kanto as soon as reaching Goldenrod.\n\n**Features/Brief Overview**\nReworked Pokedex with fan favorite Pokémon from across the first 6 generations\nAll Pokémon have abilities, some familiar and some new - such as Gardevoir raising light screen upon switch in for example\nPhysical / Special split\nOverworld Pokémon randomly wander the world, with aggressive ones attacking the player on sight\nCan rematch all trainers, including Gym Leaders\nExtensively updated battle AI\nSignificant Quality of Life updates\nUpdated and fully reusable TMs\nEarly Exp Share available\nSprint shoes\nRemembral key item that acts a portable free move relearner\nPortable PC that can also instantly heal your party like a portable Pokecenter\nHMs can be used if learnable with actually needing to be known\nInfinitely reusable escape rope\nInfinite repel\n\n**Download** [Pokemon Ambrosia](https://www.mediafire.com/file/mkpv6xjncljmu15/ambrosia+feb+4.zip/file)", + "features": [], + "links": [ + { + "label": "Source / info", + "url": "https://www.pokecommunity.com/" + }, + { + "label": "Lookup", + "url": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Ambrosia%20rom%20hack" + } + ] + }, + { + "stem": "Amethyst", + "title": "Pokémon Amethyst", + "platform": "GBA", + "base": "Emerald", + "version": "1.2.0", + "status": "Ongoing", + "generation": "Multi-gen", + "source": "https://www.hackdex.app/hack/pokemon-amethyst", + "library_path": "roms/gba/Hacks/Pokemon - Amethyst (Hack).gba", + "play_status": "Unplayed", + "type": [ + "Expansion", + "New Experience" + ], + "tags": [ + "hack", + "platform/gba", + "base/emerald", + "status/ongoing", + "type/expansion", + "type/newexperience" + ], + "summary": "A pokeemerald-expansion adventure with a new region/story and modern mechanics.", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Source / info", + "url": "https://www.hackdex.app/hack/pokemon-amethyst" + }, + { + "label": "Lookup", + "url": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Amethyst%20rom%20hack" + } + ] + }, + { + "stem": "AshGray", + "title": "Pokémon AshGray", + "platform": "GBA", + "base": "FireRed", + "version": "is 4.5.3.", + "status": "Beta", + "generation": "Gen III", + "developer": "metapod23", + "release_date": "2025-05-09", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_AshGray/bpg-pokemon-ash-gray-791d24a6f6936826.webp", + "source": "https://www.mediafire.com/file/7swfls02yjm8prx/AshGray+", + "library_path": "/storage1/Emulation/roms/gba/AshGray (Beta v4.6 Unofficial).gba", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_AshGray", + "type": [], + "tags": [ + "hack", + "platform/gba", + "base/firered", + "status/beta", + "source/discord" + ], + "summary": "You are Ash Ketchum. You're about to embark on your Pokémon adventure. Unfortunately, you stayed up all night watching Pokémon matches and woke up late! With all your rivals from Pallet Town (the most annoying being Gary) having taken all the starters available, it looks like you'll just have to go home ... unless you want Pikachu instead.\n\nYou're about to embark on an adventure of 116 events (plus two movie events) that will put you in Ash's shoes, allow you to catch the Pokémon he catches, and make the decisions he makes. How will your journey as Ash Ketchum play out? There's only one way to", + "notability": "", + "story": "", + "features": [ + "Follows the same events as in the Pokemon Anime series", + "Catch all of the Pokémon Ash does", + "Be rewarded for carrying Ash's team", + "New Tiles, Sprites and Maps", + "New Tools to replace HMs-", + "Hatchet replaces Cut", + "Computer Teleport System replaces Fly", + "Raft replaces Surf", + "Pickaxe replaces Rock Smash", + "Climb Kit is used instead of Rock Climb", + "Whirlpuller is used to cross whirlpools" + ], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/7swfls02yjm8prx/AshGray+" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/7swfls02yjm8prx/AshGray+(Beta+v4.6+Unofficial" + } + ] + }, + { + "stem": "Ashen Frost", + "title": "Pokémon Ashen Frost", + "platform": "PC", + "base": null, + "version": null, + "status": "Complete", + "generation": "Joiplay/RPGXP", + "source": "https://drive.google.com/file/d/1KWXgd6Xku8pYpk43q3J9DC5cWfUCttOA/view", + "library_path": "/storage1/labdata/romhacks/library/Pokemon_Ashen_Frost/", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Ashen_Frost", + "type": [], + "tags": [ + "hack", + "platform/pc", + "status/complete", + "source/discord" + ], + "summary": "[Source Website](https://www.rebornevo.com/forums/topic/50919-pokémon-ashen-frost-case-20-revamp/) [Documentation Sheet](https://docs.google.com/spreadsheets/d/15wlqhBn9ka1hstNvlwuedv1fJZDBCxNt7MdRe1ClkmA/edit?gid=1095778592#gid=1095778592) [Walkthrough Link](https://docs.google.com/document/d/1hZNWft7OLWTwN6lRQOATsZuP43-KlJEB3QKgtz4Rq1U/edit#heading=h.nrnw03t7conb) Revolves around Sylvester, a kind, albeit surly, officer-turned-detective in Riverview City. Sylvester works alongside his not-quite-canine unit, Swinub, to solve minor cases. Tracking down missing cheques and ice sculpture vandals doesn't come without risks, however; the frigid metropolis is home to ordinary people and criminals alike. To uncover the truth, Sylvester steps on the toes of some of the city's most important figureheads... as well as the mafia's.", + "notability": "", + "story": "", + "features": [ + "A Story-Focused Detective Game.", + "Consists of 20 cases, search for clues, present evidence & solve mysteries.", + "A fully-fledged case system, complete with its own UI & features.", + "The option to have dialogue with info important to the case highlighted.", + "Continuously expanding city to explore, complete with tons of side content.", + "Over 200 quests to find and complete.", + "Battles, Battles, Battles.", + "Pokémon from Gen 1-9 available.", + "Significantly improved AI.", + "Choose between 3 difficulty modes to set the tone for your adventure.", + "The option of a soft or hard level cap.", + "Dynamic Mid-Battle dialogue to set the tone… & to throw the occasional curveball!", + "An optimization area to get any party member battle-ready in no time!", + "Overworld encounter system, areas involving grass being far & few between.", + "Unique Battle Tower area, similar to the Battle Arcade & Battle Factory.", + ":Download: [Download Here](https://drive.google.com/file/d/1KWXgd6Xku8pYpk43q3J9DC5cWfUCttOA/view)" + ], + "links": [ + { + "label": "Download", + "url": "https://drive.google.com/file/d/1KWXgd6Xku8pYpk43q3J9DC5cWfUCttOA/view" + }, + { + "label": "Link", + "url": "https://www.rebornevo.com/forums/topic/50919-pokémon-ashen-frost-case-20-revamp/" + }, + { + "label": "Guide / docs", + "url": "https://docs.google.com/spreadsheets/d/15wlqhBn9ka1hstNvlwuedv1fJZDBCxNt7MdRe1ClkmA/edit?gid=1095778592#gid=1095778592" + }, + { + "label": "Guide / docs", + "url": "https://docs.google.com/document/d/1hZNWft7OLWTwN6lRQOATsZuP43-KlJEB3QKgtz4Rq1U/edit#heading=h.nrnw03t7conb" + } + ] + }, + { + "stem": "Asther Violet", + "title": "Pokémon Asther Violet", + "platform": "PC", + "base": "the north atlantic island nation of Iceland", + "version": "exclusive Pokémon", + "status": null, + "generation": "Joiplay/RPGXP", + "release_date": "2021", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Asther_Violet/IMG_9788-cbdda7c09ab6c5eb.png", + "source": "https://drive.google.com/file/d/1MAEBwwO5fLXX4WaJtfSD-vipssmjxZYo/view?usp=sharing", + "library_path": "/storage1/labdata/romhacks/library/Pokemon_Asther_Violet/", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Asther_Violet", + "type": [ + "New Experience" + ], + "tags": [ + "hack", + "platform/pc", + "base/thenorthatlanticislandnationoficeland", + "type/newexperience", + "source/discord" + ], + "summary": "Pokémon Aster Violet They take place in the isolated region of Koris which is based on the north atlantic island nation of Iceland. The main character sets out to challenge the 8 gyms in the region and soon runs into the misguided Team Sulphur.", + "notability": "", + "story": "", + "features": [ + "Synthetic evolution stones - unlimited uses", + "Return stone - de-evolve any Pokémon", + "Meet an evil organisation - Team Sulphur", + "Battle 8 gyms, elite four, and champion", + "12 towns and cities; and many other areas", + "A selection of Pokémon from all generations", + "Mystery Gift", + "New Eeveelutions (no other fakemon)", + "Post game content - Battle tower, university, etc. and quests", + "Version exclusive Pokémon", + "Aster Violet has a somewhat more content", + "Rose Pink v1.59 - https://drive.google.com/file/d/1MAEBwwO5fLXX4WaJtfSD-vipssmjxZYo/view?usp=sharing", + "Iris Purple v1.59 - https://drive.google.com/file/d/1CEmuWV7E2K72N80tt6Zm8pWy2SZda1aW/view?usp=sharing", + "Aster Violet v1.59 - https://drive.google.com/file/d/1q2URumWi6VWiSXMpl1jStgQxz4BbVwKg/view?usp=sharing" + ], + "links": [ + { + "label": "Download", + "url": "https://drive.google.com/file/d/1MAEBwwO5fLXX4WaJtfSD-vipssmjxZYo/view?usp=sharing" + }, + { + "label": "Download", + "url": "https://drive.google.com/file/d/1CEmuWV7E2K72N80tt6Zm8pWy2SZda1aW/view?usp=sharing" + }, + { + "label": "Download", + "url": "https://drive.google.com/file/d/1q2URumWi6VWiSXMpl1jStgQxz4BbVwKg/view?usp=sharing" + } + ] + }, + { + "stem": "Astral Red", + "title": "Pokémon Astral Red", + "platform": "GBA", + "base": "FireRed", + "version": "v1.2", + "status": null, + "generation": "Gen III", + "developer": "Jeddak Tor", + "release_date": "2024", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Astral_Red/Title-71765d2cbbbc0d0d.png", + "source": "https://drive.google.com/file/d/1vVq5yizkpItMLx0ihvMnQjeKvj8_E6Aa/view?usp=drivesdk", + "library_path": "/storage1/Emulation/roms/gba/Pokemon Astral Red v1.2.gba", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Astral_Red", + "type": [ + "Expansion" + ], + "tags": [ + "hack", + "platform/gba", + "base/firered", + "type/expansion", + "source/discord" + ], + "summary": "**Latest Version**: v1.2 [Source Website](https://gbacodes.com/pokemon-astral-red/) [Cheat Codes](https://gbacodes.com/pokemon-astral-red-cheat-codes/)", + "notability": "", + "story": "In this Rom Hack, all the Pokemon in the Kanto region have been swapped out due to a dimensional shift (which means I didn't change the story, just the Pokemon). Otherwise, it's a regular Fire Red game with a mostly untouched post game.", + "features": [ + "All Pokemon exclusive to Procyon and Deneb have been used to replace the Kanto Pokemon (with 2 exceptions; Drowzee and Hypno).", + "All Pokemon have the correct abilities from Procyon and Deneb, or have abilities that make sense for the Pokemon and/or its type if those abilities don't exist in Fire Red.", + "All Pokemon evolve as they would in Procyon and Deneb. If their evolution method is not present in Fire Red, it was adapted to whatever would make the most sense.", + "The PokeDex entries tell you how to evolve the Pokemon.", + "Any Pokemon with a stone or friendship evolution will also evolve at level 42.", + "Gym Leader & Elite Four Pokemon have moves that belong to their updated Pokemon and their Pokemon match their types (so you know what to expect).", + "One singular map edit (see if you can find it).", + "## __QoL Features__", + "Fairy Type was added.", + "Infinite TM use.", + "Running Indoors.", + "Skips PokeCenter Flashbacks.", + "Default Fast Text and Stereo Sound.", + "BW2 Repel System.", + "Caught Pokemon Give XP.", + "Natures give colored stats for increase and decrease.", + "No Item usage animation.", + "Low HP Beeps 3 times and then stops.", + "When Learning Moves the cursor will hover over the new move to prevent accidental move deletion.", + "No Beginner Intro when starting a new game.", + "https://drive.google.com/file/d/1vVq5yizkpItMLx0ihvMnQjeKvj8_E6Aa/view?usp=drivesdk" + ], + "links": [ + { + "label": "Download", + "url": "https://drive.google.com/file/d/1vVq5yizkpItMLx0ihvMnQjeKvj8_E6Aa/view?usp=drivesdk" + }, + { + "label": "Link", + "url": "https://gbacodes.com/pokemon-astral-red/" + }, + { + "label": "Link", + "url": "https://gbacodes.com/pokemon-astral-red-cheat-codes/" + } + ] + }, + { + "stem": "Attack on the Space station", + "title": "Pokémon Attack on the Space station", + "platform": "PC", + "base": null, + "version": "1.4 Completed", + "status": "Complete", + "generation": "Joiplay/RPGXP", + "developer": "NoodlesButt", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Attack_on_the_Space_station/IMG_0134-9bf7ef2552533490.png", + "source": "https://www.mediafire.com/file/jvmh6r23u9w70cu/Attack_On_The_Space_Station_V1.4.zip/file", + "library_path": "/storage1/labdata/romhacks/library/Pokemon_Attack_on_the_Space_station/", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Attack_on_the_Space_station", + "type": [], + "tags": [ + "hack", + "platform/pc", + "status/complete", + "source/discord" + ], + "summary": "Completed You are an Astro Space Engineer, who's working on the International Space Station. When all your work seems to be coming along disaster strikes! All the Scientists have disappeared and something on the radar is heading straight for the Space Station!", + "notability": "", + "story": "", + "features": [ + "A couple of hours of gameplay", + "TURBO! Use the Alt key to speed up the game", + "set soon after Attack On Silph Co.", + "1/902 Shiny Chance!", + "Pokémon up to Gen 5", + "Explore A Space Station!", + "Music set to give a Station Ambience (it's looped too)", + "New Pokémon forms to capture!", + "## Download Links", + "[Download Link Mefiafire](https://www.mediafire.com/file/jvmh6r23u9w70cu/Attack_On_The_Space_Station_V1.4.zip/file)", + "[Google Drive Link](https://drive.google.com/file/d/0B-646FnoO0cPQVFabVE2LWp0aDA/view?usp=drivesdk&resourcekey=0-4JCP_s6D-Qedhi8ZaefX8A)" + ], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/jvmh6r23u9w70cu/Attack_On_The_Space_Station_V1.4.zip/file" + }, + { + "label": "Download", + "url": "https://drive.google.com/file/d/0B-646FnoO0cPQVFabVE2LWp0aDA/view?usp=drivesdk&resourcekey=0-4JCP_s6D-Qedhi8ZaefX8A" + } + ] + }, + { + "stem": "Autumn Orange", + "title": "Pokémon Autumn Orange", + "platform": "GBA", + "base": null, + "version": null, + "status": "Complete", + "generation": "Gen III", + "developer": "MatrixGBA (SacredGBC)", + "release_date": "2024", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Autumn_Orange/IMG_0033-Chris-Ibert-0c7f2263b128f415.jpg", + "source": "https://www.mediafire.com/file/8fkmaxeyqvxi4rd/autumn+orange+v1.2+casual+mode.zip/file", + "library_path": "/storage1/Emulation/roms/gba/autumn orange v1.2 casual mode.gba", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Autumn_Orange", + "type": [ + "Expansion", + "New Experience" + ], + "tags": [ + "hack", + "platform/gba", + "status/complete", + "type/expansion", + "type/newexperience", + "source/discord" + ], + "summary": "Previously known as \"Pokemon: The Red and Blue Sequel,\" this game has undergone significant changes to breathe new life into its environment and gameplay. Prepare for a new encounter with the Kanto region, immersed in a completely unique experience. Embark on a journey set five years after the original Pokémon mainline games. Reconnect with familiar faces from different generations, from the traditional Red and Blue to the semi-modern Sword and Shield.\n\nA sequence of mysterious events are taking place within the Sevii Islands' intriguing settings. Conquer the Pokémon League as a first step tow", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/8fkmaxeyqvxi4rd/autumn+orange+v1.2+casual+mode.zip/file" + } + ] + }, + { + "stem": "Awakening", + "title": "Pokémon Awakening", + "platform": null, + "base": null, + "version": null, + "status": null, + "generation": null, + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Awakening/Pokemon-Awakening-e163a4214e22864c.png", + "source": "https://mega.nz/221fb646-0a04-4316-a163-f9b532c89197", + "library_path": "—", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Awakening", + "type": [ + "Difficulty" + ], + "tags": [ + "hack", + "type/difficulty", + "source/discord" + ], + "summary": "Catalogued from the Discord ROM-hack archive. See links below.", + "notability": "", + "story": "Waerfall Village is a peculiar place where certain Idols that hold very important secrets from the past are kept safe. You are a young Apprentice of the Sage Addae and the owner of D. Moon, a special grimoire that they say was found between you and your brother as children before raising you in the village. One day, D. Moon begins to react strongly near a waterfall north of the village, as if he felt a call coming from within... But that was only the beginning of an adventure.\n\nExperience the journey of the hero who defied his destiny and was blessed by the gods!\n\nFight side by side with your Pokémon and meet Pixi, a guardian fairy, who will accompany you on this adventure full of fantasy and diverse emotions. Discover the secrets that D. Moon keeps and go in search of your village's treasures before it's too late.\n\nWill order be your conviction, or will you succumb to chaos?", + "features": [ + "Class/job system.", + "Wild overworld encounters.", + "Special events. (Crossovers)", + "An accessible yet challenging adventure, where every decision in combat counts.", + "A path of order and chaos.", + "Relationship system. (Persona like)", + "Various actions depending on the time of day." + ], + "links": [ + { + "label": "Download", + "url": "https://mega.nz/221fb646-0a04-4316-a163-f9b532c89197" + } + ] + }, + { + "stem": "Azure Platinum", + "title": "Pokémon Azure Platinum", + "platform": "NDS", + "base": null, + "version": null, + "status": null, + "generation": "Gen IV", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Azure_Platinum/Pokemon-Azure-Platinum-Version-1-4336b3133f1b4a8e.jpg", + "source": "https://www.mediafire.com/file/ssj3cf1skkxxif7/AzurePlat+", + "library_path": "/storage1/Emulation/roms/nds/AzurePlat (ENG).zip", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Azure_Platinum", + "type": [ + "Difficulty" + ], + "tags": [ + "hack", + "platform/nds", + "type/difficulty", + "source/discord" + ], + "summary": "This game makes you rediscover the Sinnoh Region while incorporating elements of the anime series and by making the game harder to give a bigger challenge to the player. Story Changes: New characters and story arcs of the Pokemon Diamond and Pearl anime have been added: You will participate in new tournaments inspired by those of the anime You will meet key characters of the franchise that didn't appear in the original game The postgame has been largely expanded and you will be able to participate in Operation AZURE, an Sinnohian equivalent of the Delta Episode, which will lead you to the legendary Pokemon Arceus During your adventure, you will be able to catch all 493 Pokémon of the 4 first generations Some moves from future generations have been implemented (High Horsepower, Volt Switch, Solar Blade, …) Some moves such as OHKO Moves or status moves have been reworked to make them fairer Battle Changes: Every trainer possesses a new team with more Pokémon, stronger Pokémon, as well as optimal items and movesets New bosses have been added to fill some of the more empty areas of the game You cannot use any healing or boosting item during a battle Set Mode is mandatory and will make you play on an equal footing with the AI A progressive hard Level Cap has been implemented, your Pokemon's levels cannot be higher than those of the next boss A Nuzlocke Mode is available, preventing you from healing fainted Pokémon Your Pokemon do not gain EVs The level 100 postgame will make you fight a multitude of overpowered trainers around the Sinnoh Region. Other Changes: You possess a Porta-PC with functionalities that expand during the story. No need to go back to the Pokecenter to heal and change your team! The game has been greatly sped up: the framerate is now uncapped and healthbars scroll way quicker You can buy an infinite number of Rare Candies [Download Here]()", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/ssj3cf1skkxxif7/AzurePlat+" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/ssj3cf1skkxxif7/AzurePlat+(ENG" + } + ] + }, + { + "stem": "A├▒il", + "title": "Pokémon Añil", + "platform": "PC", + "base": null, + "version": "v3.06", + "status": "Complete", + "generation": "Joiplay/RPGXP", + "developer": "EricLostie", + "release_date": "2025", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_A_il/Pokemon-Anil-129d89347621bc18.jpg", + "source": "https://pokehostel.com/pokemon-anil/", + "library_path": "/storage1/labdata/romhacks/library/Pokemon_A_il/", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_A_il", + "type": [ + "Expansion" + ], + "tags": [ + "hack", + "platform/pc", + "status/complete", + "type/expansion", + "source/discord" + ], + "summary": "[Source Website](https://pokehostel.com/pokemon-anil/)", + "notability": "", + "story": "", + "features": [ + "All Pokemon Upto Gen 9.", + "Hisuian Forms.", + "Galarian Forms.", + "Alolan Forms.", + "Mega Evolution.", + "Regional Forms.", + "Hoenn Characters & Gym Leaders.", + "Ash, Cynthia, Steven & Many More Characters.", + "All Starters Are Catchable.", + "3 Game Modes.", + "Team Rocket.", + "New Characters.", + "Following Pokemon.", + "8 Gym Battles.", + "Beat Pokemon League.", + "Post Game Available (Sevii Islands).", + "Lots Of Legendary Hunt.", + "Improved & Extended Story.", + "Animated Pokemon Sprites.", + "New Mechnacis.", + "MKXP-Z Implemented.", + "5th Generation Graphics.", + "## :Download: [Download English Version](https://www.mediafire.com/file/n34nsl33raccea3/Pokemon_A%C3%B1il_V2.09G_English.rar/file)", + "## :Download: [Download Spanish Version](https://mega.nz/file/TzAygRaY#4Ibtg8hRwx1RATXqeybgKeyDXXgs11YnAFj1eWof9lo)" + ], + "links": [ + { + "label": "Link", + "url": "https://pokehostel.com/pokemon-anil/" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/n34nsl33raccea3/Pokemon_A%C3%B1il_V2.09G_English.rar/file" + }, + { + "label": "Download", + "url": "https://mega.nz/file/TzAygRaY#4Ibtg8hRwx1RATXqeybgKeyDXXgs11YnAFj1eWof9lo" + }, + { + "label": "Download", + "url": "https://mega.nz/file/TzAygRaY" + } + ] + }, + { + "stem": "Battle Fire", + "title": "Pokémon Battle Fire", + "platform": "GBA", + "base": null, + "version": null, + "status": null, + "generation": "Gen III", + "developer": "Concorde", + "release_date": "2025", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Battle_Fire/IMG_8734-54e4838405fc3190.png", + "source": "https://www.mediafire.com/file/r6cchxy9ffltyy8/Battle+Fire+Fixed+", + "library_path": "/storage1/Emulation/roms/gba/Battle Fire Fixed (hacksrepairman).zip", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Battle_Fire", + "type": [ + "New Experience" + ], + "tags": [ + "hack", + "platform/gba", + "type/newexperience", + "source/discord" + ], + "summary": "You and your family are moving to Macavayenn Town. Later you discover that evil team Vyris terrorizes Ernah region. Their final purpose is to awake Virus Lugia, the cybernetic clone of Lugia, and using it, take control over the entire region…", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/r6cchxy9ffltyy8/Battle+Fire+Fixed+" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/r6cchxy9ffltyy8/Battle+Fire+Fixed+(hacksrepairman" + } + ] + }, + { + "stem": "Bidoof Version", + "title": "Pokémon Bidoof Version", + "platform": "GBA", + "base": "FireRed", + "version": null, + "status": null, + "generation": "Gen III", + "developer": "CrystalMarowak", + "release_date": "2019-11-20", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Bidoof_Version/DA44DD22-43C6-400A-B515-81A891033E17-c12c30ec126b70aa.jpg", + "source": "https://drive.google.com/file/d/1LY19f1qBE7wJ7678wIk4v93elcTgr6bh/view?usp=drivesdk", + "library_path": "/storage1/Emulation/roms/gba/Pokemon bidoof-b0.2.2.gba", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Bidoof_Version", + "type": [], + "tags": [ + "hack", + "platform/gba", + "base/firered", + "source/discord" + ], + "summary": "Also, be sure to check out Pokemon Stigma.", + "notability": "", + "story": "", + "features": [ + "Your starter is Bidoof", + "Your rival uses Bidoof", + "All the gyms use Bidoof", + "The legendaries are Bidoof", + "All buildings are shaped like Bidoof", + "Your hat is Bidoof", + "Your father is Bidoof" + ], + "links": [ + { + "label": "Download", + "url": "https://drive.google.com/file/d/1LY19f1qBE7wJ7678wIk4v93elcTgr6bh/view?usp=drivesdk" + } + ] + }, + { + "stem": "Big Blue", + "title": "Pokémon Big Blue", + "platform": "GBA", + "base": "FireRed", + "version": "Final", + "status": "Complete", + "generation": "Gen III", + "developer": "Mian Calendar Games", + "release_date": "2024", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Big_Blue/Pokemon-Big-Blue-GBA-a6fa40f411680e68.png", + "source": "https://www.pokeharbor.com/2024/05/pokemon-big-blue/", + "library_path": "/storage1/Emulation/roms/gba/Pokemon Big Blue.gba", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Big_Blue", + "type": [ + "Expansion", + "QoL" + ], + "tags": [ + "hack", + "platform/gba", + "base/firered", + "status/complete", + "type/expansion", + "type/qol", + "source/discord" + ], + "summary": "[Source Website](https://www.pokeharbor.com/2024/05/pokemon-big-blue/) [Cheat Codes](https://pokedocs.com/2024/09/05/pokemon-big-blue-cheats/)", + "notability": "", + "story": "", + "features": [ + "Fully open world region (Kanto).", + "Physical/Special Division.", + "Fairy type.", + "Optional reusable TMs/HMs.", + "Trade items function as evolution stones (i.e. Link Cable, Prism Scale, Dawn Stone, Peat Block, etc.)", + "All trainers, wild Pokémon and gyms are scaled by badges.", + "42 different entries.", + "ALL Gen 1-3 Pokémon (cross-gen evolutions, permanent megas/G-Max evolutions added).", + "Almost all species found in nature (including starters).", + "Exp. All - Tons of new areas/locations.", + "Routes, caves, towns/cities have been updated.", + "Generation 4 overworld graphics.", + "Menus/maps have a new visual style.", + "Running indoors.", + "Greater chances of shine.", + "Move-Reminder/Name Rater in each Pokecenter.", + "PokéMarts scale for badge quantities." + ], + "links": [ + { + "label": "Info / thread", + "url": "https://www.pokeharbor.com/2024/05/pokemon-big-blue/" + }, + { + "label": "Download", + "url": "https://drive.google.com/file/d/1HujYVjTl5g2iR2dk0fEkWPxjasOe2VvG/view?usp=drivesdk" + }, + { + "label": "Link", + "url": "https://pokedocs.com/2024/09/05/pokemon-big-blue-cheats/" + } + ] + }, + { + "stem": "Binary Sun", + "title": "Pokémon Binary Sun", + "platform": "3DS", + "base": null, + "version": "Completed 1.3.1", + "status": "Complete", + "generation": "Gen VII", + "developer": "Radical Red and Run and Bun type difficulty", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Binary_Sun/IMG_9977-c660d7818863b32e.png", + "source": "https://1fichier.com/?1qjqiuyv4xcu8tf757yj&af=2885774", + "library_path": "/storage1/Emulation/roms/3ds/Pokemon Binary Sun v1d3d1 - Patched by Ducumon.3ds", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Binary_Sun", + "type": [ + "Difficulty" + ], + "tags": [ + "hack", + "platform/3ds", + "status/complete", + "type/difficulty", + "source/discord" + ], + "summary": "The Ultra games are among my favorite in the series and watching hardcore nuzlockes of games like Run and Bun inspired me to try and make a modern title play like those games. With the limited rom hacking tools available for the 3ds games I think I have crafted a very challenging and rewarding experience. This is my first ever full scale rom hack so any advice or suggested changes would be appreciated sadly with the limitations of 3ds rom hacking there are many features that I would like to see in a challenge game like this that are not possible at the moment so maybe in the future I will make an attempt at a 3rd Gen based challenge hack. Features Include:
Expanded Pokedex 
Over 200 hand crafted trainer battles with complete documentation 
Buffs to traditionally weaker Pokemon
Reworked Totem fights
TM and Move Tutor Changes
Item Shop Changes
Removed EVs
Evolution Method Changes ## Download Links [Download Link 1 Fichier](https://1fichier.com/?1qjqiuyv4xcu8tf757yj&af=2885774)", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Link", + "url": "https://1fichier.com/?1qjqiuyv4xcu8tf757yj&af=2885774" + } + ] + }, + { + "stem": "BirchΓÇÖs Folly", + "title": "Pokémon Birch’s Folly", + "platform": "PC", + "base": null, + "version": null, + "status": "Complete", + "generation": "Joiplay/RPGXP", + "developer": "courteousgrizzly", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Birch_s_Folly/IMG_9859-6e6e8c3c516bb4fa.jpg", + "source": "https://www.mediafire.com/file/44q14p7mo0xgkgp", + "library_path": "/storage1/labdata/romhacks/library/Pokemon_Birch_s_Folly/", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Birch_s_Folly", + "type": [ + "Difficulty" + ], + "tags": [ + "hack", + "platform/pc", + "status/complete", + "type/difficulty", + "source/discord" + ], + "summary": "You're a new research assistant of Prof. Birch. When you get to his lab he has some exciting news. The format for this game has you progress through multiple maps in a sort of dungeon with mini-bosses and map bosses, collecting Pokedollars from defeated Pokemon to purchase healing/status items. Starters and encounters are randomly generated from balanced pools, and rather than catching Pokemon, you are given multiple choices similar to starter selection throughout each playthrough. This game is meant to be challenging, with a limited number of healing items, no healing spots, and an optional, but default, perma-death (your save is deleted if you black out). —Game Length—
Play time is about an hour for a successful run, but will likely take more than one run due to the difficulty and semi-random encounters/team choices. [Mediafire Link](https://www.mediafire.com/file/44q14p7mo0xgkgp)", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/44q14p7mo0xgkgp" + } + ] + }, + { + "stem": "Black 2 - Silly Edition", + "title": "Pokémon Black 2 : Silly Edition", + "platform": "NDS", + "base": null, + "version": null, + "status": null, + "generation": null, + "release_date": "2026", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Black_2_Silly_Edition/IMG_7075-0b4f2f7ab381a79b.png", + "source": "https://www.mediafire.com/file/1n5xx60b81s036d/sillyedition_1.5.0.2.xdelta/file", + "library_path": "—", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Black_2_Silly_Edition", + "type": [ + "Difficulty", + "QoL" + ], + "tags": [ + "hack", + "platform/nds", + "type/difficulty", + "type/qol", + "source/discord" + ], + "summary": "**Creator:** FruitLoops **Type:** NDS **Last Updated:** January 31, 2026", + "notability": "", + "story": "> Story recontextualized with modern, absurd humor. Includes meme-worthy NPCs and satirical rewrites. (Dialogue is still work-in-progress. It has the infamous Challenge Mode glitch from Black 2 has been fixed, so the boosted levels actually increase difficulty. Normal Mode = harder than vanilla. Challenge Mode = a true test for hardcore players. Each Gym Leader now has a unique theme/personality (e.g. Cheren the D&D Nerd, Drayden the Cuteness Lover, Marshall the VGC Obsessed) and a fully customized team.", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/1n5xx60b81s036d/sillyedition_1.5.0.2.xdelta/file" + } + ] + }, + { + "stem": "Black Boost", + "title": "Pokémon Black Boost", + "platform": "NDS", + "base": "Black", + "version": null, + "status": "Complete", + "generation": null, + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Black_Boost/IMG_9936-32e22d10d76f81d6.png", + "source": "https://drive.google.com/drive/folders/19GwIP7SpFcnFWNZrj1hj7NUSTClU5mF4?usp=sharing", + "library_path": "—", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Black_Boost", + "type": [], + "tags": [ + "hack", + "platform/nds", + "base/black", + "status/complete", + "source/discord" + ], + "summary": "Pokemon Black Boost It's a Vanilla++ ROM Hack with type, ability, stat, evolution, changes, legendaries catchable, balance boss and more… A slew of Pokémon from Generations 1-4 to add to the available roster: There are about 60 new fully-evolved Pokémon to choose from, with effort put in to maintain a variety of available types. Almost all of the Pokémon added are not present in Black 2 and White 2, with a few exceptions for some Pokémon who were either available too late or were to unappealing to use in those games. And Mr. Craw. I like Mr. Craw. Type, ability, and stat changes: Somewhat even the playing field and provide alternative styles for the available Pokémon between their abilities and stats. Many receive their hidden ability over their less impressive normal ability to compensate, but others get something new instead. Earlier late-game encounters: Many Pokémon are available too late in the base game to want to use them. You now get many between Burgh and Clay, allowing using them with Eviolite to be a viable strategy, such as Pawniard, Rufflet, Vullaby, and more.", + "notability": "", + "story": "", + "features": [ + "Modified Experience Curves and Soft Level Caps: The entire exp curve system for all groups has been changed. Each gym leader's \"level cap\" is now a level that requires far more experience than it did before. To balance this, the non-cap levels have far lower exp requirements, and the enemy trainer levels balance out around this to minimize grinding in a casual playthrough. Audino is also found at higher levels and provides even more experience than it usually does. Overall, you need less experience to reach level 64, the \"max\" level, which has an even higher \"cap\" than the others, proportionally. Feedback on this is always appreciated.", + "[Download & Docs Link](https://drive.google.com/drive/folders/19GwIP7SpFcnFWNZrj1hj7NUSTClU5mF4?usp=sharing)" + ], + "links": [ + { + "label": "Download", + "url": "https://drive.google.com/drive/folders/19GwIP7SpFcnFWNZrj1hj7NUSTClU5mF4?usp=sharing" + } + ] + }, + { + "stem": "Black Pearl Emerald", + "title": "Pokémon Black Pearl Emerald", + "platform": "GBA", + "base": null, + "version": "1.01 - 08/2024", + "status": "Complete", + "generation": null, + "developer": "CDO", + "release_date": "2024", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Black_Pearl_Emerald/IMG_6836-cc2166db396c8173.png", + "source": "https://pokehostel.com/pokemon-black-pearl-emerald/", + "library_path": "—", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Black_Pearl_Emerald", + "type": [ + "Difficulty", + "Expansion" + ], + "tags": [ + "hack", + "platform/gba", + "status/complete", + "type/difficulty", + "type/expansion", + "source/discord" + ], + "summary": "Pokemon Blackpearl emerald Based on : Emerald \"Pokemon Black Pearl Emerald\" is a Completed GBA Rom Hack made by CDO. Explore a refreshed Hoenn region with Pokemon from Generations 1 to 9, new Gym Leaders and Elite 4 members, a new Rival, Mega Evolutions, and more! -Rom link https://pokehostel.com/pokemon-black-pearl-emerald/ -Encounter and trainer doc in order : https://docs.google.com/spreadsheets/d/1Q_EZTHKpMCfdgC5QrInqZ4gNTPn6ndRL1PUow6KQSKo/edit?usp=drivesdk", + "notability": "", + "story": "", + "features": [ + "Shiny 1/512", + "Several QOL Improvents: Immediate access to Old Rod, Immediate access to Fly, Grindless mode (unlimited Rare Candies, in Nuzlocke Mode only), Re-usable TMs (TM Package rewards from beating Gym Leaders), Pocket PC (access PC from anywhere), Picnic Table (heal entire party from anywhere), Pocket Watch (change time of day), modernized/easier evolution methods", + "Expanded Starter Selection (Mudkip, Treecko, Torchic, Honedge, Porygon, Paldean Wooper, Ralts, Eevee, Alolan Vulpix)", + "Pokémon & MOVE from gen 1 to 9", + "And many more" + ], + "links": [ + { + "label": "Link", + "url": "https://pokehostel.com/pokemon-black-pearl-emerald/" + }, + { + "label": "Guide / docs", + "url": "https://docs.google.com/spreadsheets/d/1Q_EZTHKpMCfdgC5QrInqZ4gNTPn6ndRL1PUow6KQSKo/edit?usp=drivesdk" + } + ] + }, + { + "stem": "Black and White 3 Genesis", + "title": "Pokémon Black and White 3 Genesis", + "platform": "GBC", + "base": "Crystal", + "version": null, + "status": null, + "generation": null, + "developer": "Azure_Keys", + "release_date": "2023-03-26", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Black_and_White_3_Genesis/IMG_9771-c713b0f95e605c3c.webp", + "source": "https://raw.githubusercontent.com/vbaemulator/GBC-Roms/main/Pokemon%20Black%20and%20White%203%20-%20Genesis%20", + "library_path": "—", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Black_and_White_3_Genesis", + "type": [ + "Expansion", + "QoL" + ], + "tags": [ + "hack", + "platform/gbc", + "base/crystal", + "type/expansion", + "type/qol", + "source/discord" + ], + "summary": "Pokemon Black and White 3: Genesis is intended as a sequel to Black 2/White 2 Versions. It takes place in Unova, around 5 years following the events of B2/W2. In this game, you play as a young trainer from Humilau City and will embark on a journey around the region to catch Pokemon, collect Gym badges, and thwart the plans of a mysterious group claiming to be Team Plasma, a terror group that was supposedly disbanded years ago.", + "notability": "", + "story": "", + "features": [ + "253 Pokemon available, selected from throughout the first 5 generations", + "255 moves from throughout the first 5 generations", + "Physical/Special split on moves", + "Move power changed to fit Gen 5 stats", + "Fairy type added, and type chart adjusted to account for it", + "Various items from newer games", + "Reusable TMs", + "Trade evolutions changed to normal level-up, level-up with item, or stone evolutions", + "Reusable Repels", + "[Download](https://raw.githubusercontent.com/vbaemulator/GBC-Roms/main/Pokemon%20Black%20and%20White%203%20-%20Genesis%20(v1.2).zip)" + ], + "links": [ + { + "label": "Download", + "url": "https://raw.githubusercontent.com/vbaemulator/GBC-Roms/main/Pokemon%20Black%20and%20White%203%20-%20Genesis%20" + }, + { + "label": "Download", + "url": "https://raw.githubusercontent.com/vbaemulator/GBC-Roms/main/Pokemon%20Black%20and%20White%203%20-%20Genesis%20(v1.2" + } + ] + }, + { + "stem": "Blaze Black 2 Volt White 2", + "title": "Pokémon Blaze Black 2 / Volt White 2", + "platform": "Patch", + "base": null, + "version": "completed 1.3", + "status": "Complete", + "generation": "Gen V", + "developer": "Drayano", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Blaze_Black_2_Volt_White_2/BlazeBlack2Logo-0ad9791eac38d36d.png", + "source": "https://drive.google.com/drive/folders/0B-zmEVN0Mas6ZGt0ZmVva2pYeTQ?resourcekey=0-2ujVwGdN8ypDAEFr813nCw", + "library_path": "/storage1/labdata/romhacks/library/Pokemon_Blaze_Black_2_Volt_White_2/", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Blaze_Black_2_Volt_White_2", + "type": [ + "Difficulty" + ], + "tags": [ + "hack", + "platform/patch", + "status/complete", + "type/difficulty", + "source/discord" + ], + "summary": "Pokémon Blaze Black 2 & Pokémon Volt White 2 are essentially the sequels to my Black & White hacks known as Blaze Black and Volt White.\nThe usual rules with my hacks apply; the main feature is that all 649 Pokémon are available for capture somewhere in the game, and the trainers have all had their rosters changed in order to maintain a much harder challenge than the original game, as well as having an increased variety of opponents to fight.\nThere's also a large amount of alternative features these hacks offer, which range from differences to the Pokémon themselves to the presence of a couple", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://drive.google.com/drive/folders/0B-zmEVN0Mas6ZGt0ZmVva2pYeTQ?resourcekey=0-2ujVwGdN8ypDAEFr813nCw" + }, + { + "label": "Download", + "url": "https://mega.nz/folder/dQ5ixbbL#oSdW79hAKdfikEAJhtVOCQ" + }, + { + "label": "Download", + "url": "https://mega.nz/folder/gVgQ3DwT#jfnkUjqSAIPKWe_vkwMBnQ" + }, + { + "label": "Download", + "url": "https://drive.google.com/drive/folders/1Az3H1u-0LAv87-7ccnqWE03qj1vvpMTL" + }, + { + "label": "Download", + "url": "https://mega.nz/folder/dQ5ixbbL" + }, + { + "label": "Download", + "url": "https://mega.nz/folder/gVgQ3DwT" + } + ] + }, + { + "stem": "Blaze Black 2 Redux", + "title": "Pokémon Blaze Black 2 Redux", + "platform": "NDS", + "base": "Black 2", + "version": "1.3.0", + "status": "Complete", + "generation": "Gen 1–5 mons", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Blaze_Black_2_Redux/1500x500-c645eb161601a20b.webp", + "source": "https://www.pokecommunity.com/", + "library_path": "roms/nds/Hacks/Pokemon - Blaze Black 2 Redux (Hack).nds", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Blaze_Black_2_Redux", + "type": [ + "Vanilla+", + "Difficulty", + "Expansion" + ], + "tags": [ + "hack", + "platform/nds", + "base/black2", + "status/complete", + "type/vanilla+", + "type/difficulty", + "type/expansion" + ], + "summary": "A community 'Redux' fork of Drayano's Blaze Black 2 — expanded availability, rebalanced difficulty, and extra content.", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Source / info", + "url": "https://www.pokecommunity.com/" + }, + { + "label": "Lookup", + "url": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Blaze%20Black%202%20Redux%20rom%20hack" + } + ] + }, + { + "stem": "Blaze Black", + "title": "Pokémon Blaze Black", + "platform": "NDS", + "base": "Black", + "version": null, + "status": "Complete", + "generation": "Gen 1–5 mons", + "source": "https://www.pokecommunity.com/threads/pokemon-blaze-black-volt-white.252355/", + "library_path": "roms/nds/Hacks/Pokemon - Blaze Black (Hack).nds", + "play_status": "Unplayed", + "type": [ + "Vanilla+", + "Difficulty" + ], + "tags": [ + "hack", + "platform/nds", + "base/black", + "status/complete", + "type/vanilla+", + "type/difficulty" + ], + "summary": "Drayano's Black overhaul — every species catchable in-game, boosted gym/E4 teams, and QoL. Pairs with Volt White.", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Source / info", + "url": "https://www.pokecommunity.com/threads/pokemon-blaze-black-volt-white.252355/" + }, + { + "label": "Lookup", + "url": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Blaze%20Black%20rom%20hack" + } + ] + }, + { + "stem": "Blazing Emerald", + "title": "Pokémon Blazing Emerald", + "platform": "GBA", + "base": "Emerald", + "version": "v1.6", + "status": null, + "generation": null, + "release_date": "2021", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Blazing_Emerald/pokemon-blazing-emerald-1-42712d8e328c336c.png", + "source": "https://drive.google.com/drive/folders/11IpX1MarhYKlVIe8TRqsojTnl_ekWsFo?usp=sharing", + "library_path": "—", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Blazing_Emerald", + "type": [ + "Expansion", + "New Experience" + ], + "tags": [ + "hack", + "platform/gba", + "base/emerald", + "type/expansion", + "type/newexperience", + "source/discord" + ], + "summary": "## Details: Hack of: Emerald Updated: August 6, 2021", + "notability": "", + "story": "", + "features": [ + "A dozen Pokemon from later Gens", + "Improved Trainer AI", + "Hoenn Pokedex is completable", + "All PokeBalls up to Gen 7", + "Physical/Special split", + "Reusable TMs", + "Check EVs/IVs with the Stat Scanner", + "Buffed HMs", + "Link Stone item", + "Music from the DS games", + "Decapitalization", + "## Links:", + "[Docs]()", + "[Guide Sheets]()", + "[MediaFire Download]()" + ], + "links": [ + { + "label": "Download", + "url": "https://drive.google.com/drive/folders/11IpX1MarhYKlVIe8TRqsojTnl_ekWsFo?usp=sharing" + }, + { + "label": "Download", + "url": "http://www.mediafire.com/file/betizd06wrm9u67/blazing-emerald-v1.6.zip/file" + }, + { + "label": "Guide / docs", + "url": "https://docs.google.com/spreadsheets/d/1tSnc19yS_G3HV-J_cXrXzJIB6O9GyoOnekPVV3XdqpI/edit?usp=sharing" + } + ] + }, + { + "stem": "Blinding White 2", + "title": "Pokémon Blinding White 2", + "platform": "NDS", + "base": "White", + "version": null, + "status": "Complete", + "generation": null, + "developer": "Patch", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Blinding_White_2/Untitled3322_20251014152638-8c050940066e087b.png", + "source": "https://mega.nz/file/kQp31TpJ#pXkfJLiuus90InHjyvbxDjOTnXVknXEFPzU2OpSHn5Q", + "library_path": "—", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Blinding_White_2", + "type": [ + "Difficulty", + "Expansion" + ], + "tags": [ + "hack", + "platform/nds", + "base/white", + "status/complete", + "type/difficulty", + "type/expansion", + "source/discord" + ], + "summary": "Pokemon Blinding White 2 Created by Patch **Blinding White 2** is a difficulty hack of the Gen 5 sequels that puts a unique spin on the typical game experience! A new Pokedex with 400+ handcrafted encounters, a variety of new in-game events, and many more rebalances and adjustments create a new experience to challenge casual players and those looking for a fun challenge while nuzlocking! Features include: - New item systems that prioritize resource management in the early to mid game before opening up your options heavily near the end of your adventure. Manage Comet Shards wisely by battling 10+ diffferent boss trainers that include gym leaders and other notable trainers from other regions! These useful crystals can be used to buy battle items at a number of different markets. - An expansion of the game's story fights! Gone are the days of only having two rival fights in the late game, as Hugh now has much more frequent interactions with you alongside the presence of a brand new rival! Benga will battle you four times across the region to fill in the gaps of Hugh, so always stay on your toes for new battles with major trainers! - Quality of life updates, such as a free cheats menu, more information on your Pokémon's party screen, more accessible Breeder, Move Tutor, Deleter, and more! This also comes with some remixes to battle themes, just to add some extra spice from the OG game. This project is currently completed in both main story and parts of postgame, but still receives patches/content updates from time to time! Feel free to join the Discord server if you'd like to give feedback or stay up to date on new additions. Thanks for reading! [Download Link](https://mega.nz/file/kQp31TpJ#pXkfJLiuus90InHjyvbxDjOTnXVknXEFPzU2OpSHn5Q)", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://mega.nz/file/kQp31TpJ#pXkfJLiuus90InHjyvbxDjOTnXVknXEFPzU2OpSHn5Q" + }, + { + "label": "Download", + "url": "https://mega.nz/file/kQp31TpJ" + } + ] + }, + { + "stem": "Bloody Fusion Platinum", + "title": "Pokémon Bloody Fusion Platinum", + "platform": "NDS", + "base": null, + "version": null, + "status": null, + "generation": "Gen IV", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Bloody_Fusion_Platinum/F9D5812B-66D1-4489-A39A-F659FD700199-2edd6fbb80d6a03c.jpg", + "source": "https://mega.nz/file/XJ0nDK5Q#6nImc-SKP_5JVs70aoihD3WTTKUgc_Ww4bCLySlj4fw", + "library_path": "/storage1/Emulation/roms/nds/bloody fusion platinium.rar", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Bloody_Fusion_Platinum", + "type": [], + "tags": [ + "hack", + "platform/nds", + "source/discord" + ], + "summary": "Name: Pokemon Fusion Platinum
Remake From: Pokemon Platinum
Remake by: Grillo and Lugre", + "notability": "", + "story": "", + "features": [ + "493 pokémon, Generation 1, 2, 3, 4.", + "Rom link French : https://mega.nz/file/XJ0nDK5Q#6nImc-SKP_5JVs70aoihD3WTTKUgc_Ww4bCLySlj4fw", + "Rom link Spanish : https://linkvertise.com/686192/aD5JP5268338363?o=sharing" + ], + "links": [ + { + "label": "Download", + "url": "https://mega.nz/file/XJ0nDK5Q#6nImc-SKP_5JVs70aoihD3WTTKUgc_Ww4bCLySlj4fw" + }, + { + "label": "Download", + "url": "https://mega.nz/file/XJ0nDK5Q" + }, + { + "label": "Link", + "url": "https://linkvertise.com/686192/aD5JP5268338363?o=sharing" + } + ] + }, + { + "stem": "Bloody Fusion", + "title": "Pokémon Bloody Fusion", + "platform": "NDS", + "base": "SoulSilver", + "version": null, + "status": null, + "generation": null, + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Bloody_Fusion/PaintDotNet_nDbxV998Cu-969a89d0328c6fa7.png", + "source": "https://mega.nz/file/IMpHQAyT#vFW1gkjA5I22Z1trwMzItbqrITorMvddEB2zk2L2z40", + "library_path": "—", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Bloody_Fusion", + "type": [], + "tags": [ + "hack", + "platform/nds", + "base/soulsilver", + "source/discord" + ], + "summary": "Pokemon Bloody Fusion Dev: Vohlt", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://mega.nz/file/IMpHQAyT#vFW1gkjA5I22Z1trwMzItbqrITorMvddEB2zk2L2z40" + }, + { + "label": "Download", + "url": "https://mega.nz/file/odwkxYJK#sjKx8Qd14D2sJhRFiFJNvgem4SPaZ1XMPNFAC6W6YSQ" + }, + { + "label": "Download", + "url": "https://mega.nz/file/wdgWiBTb#1HkEH_DvuLWYLzYL0TJalxT5a8j-Zdbbx_rhEnHQ6lw" + }, + { + "label": "Download", + "url": "https://mega.nz/file/kUxG0JSK#J8EDcAmK0Vz6imsOi5WWgr9Qiv4u7HxPVrfVlywJZcI" + }, + { + "label": "Download", + "url": "https://mega.nz/file/NcJhTZDZ#BNe58LnaOXttcGQyyQJDpF5cJNfiWx9ltC6KdTM4j-w" + }, + { + "label": "Download", + "url": "https://mega.nz/file/odwkxYJK" + }, + { + "label": "Download", + "url": "https://mega.nz/file/IMpHQAyT" + }, + { + "label": "Download", + "url": "https://mega.nz/file/kUxG0JSK" + } + ] + }, + { + "stem": "Blue Stars 4", + "title": "Pokémon Blue Stars 4", + "platform": "GBA", + "base": null, + "version": null, + "status": null, + "generation": "Gen III", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Blue_Stars_4/Pokemon-Blue-Stars-4-5fb2a276349f8688.webp", + "source": "https://www.mediafire.com/file/mngth4fvkso71eg/Blue+Stars+4+v2.1.gba/file", + "library_path": "/storage1/Emulation/roms/gba/Blue Stars 4 v2.1.gba", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Blue_Stars_4", + "type": [ + "Expansion", + "New Experience" + ], + "tags": [ + "hack", + "platform/gba", + "type/expansion", + "type/newexperience", + "source/discord" + ], + "summary": "Set in the Shinstar region, the story begins with Mewtwo on the run from an Evil organization that wants Mewtwo's power to revive a terrible Pokémon.\n\nEmbark on a quest to claim the title of the mightiest champion and defeat the nefarious Team Cosmic, an evil organization hell-bent on harnessing Mewtwo's power to resurrect a perilous Pokémon.\n\nAlong this journey, you'll encounter both familiar faces and fresh allies, each adding their unique essence to this gripping tale of adventure.", + "notability": "", + "story": "", + "features": [ + "The game has 3 languages to choose from (Brazilian Portuguese, English, and Spanish.)", + "Pokemon Go PokeStop mechanic.", + "New Region and History.", + "Dynamax and Gigantamax.", + "Level Cap.", + "DexNave.", + "Shared Experience.", + "Mega Evolution, Z-Moves, Dynamax.", + "Pokemon until Hisui.", + "[Mediafire](https://www.mediafire.com/file/mngth4fvkso71eg/Blue+Stars+4+v2.1.gba/file)" + ], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/mngth4fvkso71eg/Blue+Stars+4+v2.1.gba/file" + } + ] + }, + { + "stem": "Bronze 2", + "title": "Pokémon Bronze 2", + "platform": "GB", + "base": null, + "version": null, + "status": "Complete", + "generation": "Gen II", + "developer": "Freako", + "release_date": "2020", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Bronze_2/FB_IMG_1708646815493-43f3a755382e8e1d.jpg", + "source": "https://www.mediafire.com/file/6xq2i4o85x6gfo7/PK+Bronze+2+v1.05.zip/file", + "library_path": "/storage1/Emulation/roms/gb/PK Bronze 2 v1.05.zip", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Bronze_2", + "type": [ + "New Experience" + ], + "tags": [ + "hack", + "platform/gb", + "status/complete", + "type/newexperience", + "source/discord" + ], + "summary": "In Bronze 2 you start in Old Oak Town with the goal of collecting 8 badges and defeating the Elite Four. Along the way, an evil team is trying to steal, kidnap and make money. Once again, going for a completely run of the mill Pokemon story game that's missing from many rom hacks with a full second region & post game!", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/6xq2i4o85x6gfo7/PK+Bronze+2+v1.05.zip/file" + } + ] + }, + { + "stem": "Bronze", + "title": "Pokémon Bronze", + "platform": "GB", + "base": null, + "version": null, + "status": "Complete", + "generation": "Gen II", + "developer": "Freako", + "release_date": "2014", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Bronze/FB_IMG_1708541013244-1-dd1f5a0bcae660a3.jpg", + "source": "https://www.mediafire.com/file/b0dsq21zb3dphev/Pokemon_Bronze_Full_1.21.zip/file", + "library_path": "/storage1/Emulation/roms/gb/Pokemon Bronze Full 1.21.zip", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Bronze", + "type": [ + "New Experience", + "Cosmetic" + ], + "tags": [ + "hack", + "platform/gb", + "status/complete", + "type/newexperience", + "type/cosmetic", + "source/discord" + ], + "summary": "Explore the region of Kohto (south-west of Kanto) with new routes, 9 new towns, 8 gyms, a level curve to balance difficulty & some Kanto areas. Set shortly after Pokémon Gold/Silver, you and your rival are living in Cartridge Town. You obtain your starter from Professor Koa and then set out to master the Kohto region. But trouble awaits since Team Rocket disbanded; another group is stepping up to cause havoc!", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/b0dsq21zb3dphev/Pokemon_Bronze_Full_1.21.zip/file" + } + ] + }, + { + "stem": "Brown", + "title": "Pokémon Brown", + "platform": "GB", + "base": "Red", + "version": "1.1", + "status": "Complete", + "generation": "Gen 1+", + "developer": "RainbowDevs", + "release_date": "2024-09-14", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Brown/Brown_Boxart_2024_FullRes-1024x914-1-9ba41151632914ac.png", + "source": "https://www.pokecommunity.com/threads/pokemon-brown.27915/", + "library_path": "roms/gb/Hacks/Pokemon - Brown (Hack).gb", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Brown", + "type": [ + "New Experience" + ], + "tags": [ + "hack", + "platform/gb", + "base/red", + "status/complete", + "type/newexperience" + ], + "summary": "One of the oldest and most influential hacks. A brand-new Rijon region with new towns, gyms, and a custom dex built on Gen 1, by Koolboyman (who later made Prism).", + "notability": "", + "story": "", + "features": [ + "231 Pokemon to catch and train", + "Brand new region: Explore the region of Rijon, a vast, new, and unique landscape.", + "Choose your trainer: Select between two characters to play as. Switch anytime!", + "Modern mechanics: Modern Stat EXP calculations, critical captures, new level-ups, physical/special split, and so much more", + "Breathtaking buildings: Experience new and unique graphics and maps.", + "New Pokemon: More Pokémon to collect than any previous version of Brown!", + "Play with a pal: Full link support with other Pokémon Brown players." + ], + "links": [ + { + "label": "Source / info", + "url": "https://www.pokecommunity.com/threads/pokemon-brown.27915/" + }, + { + "label": "Lookup", + "url": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Brown%20rom%20hack" + } + ] + }, + { + "stem": "CAWPS", + "title": "Pokémon CAWPS", + "platform": "GBA", + "base": null, + "version": null, + "status": null, + "generation": "Gen III", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_CAWPS/pokemon-cawps-69fbecf1fae9571f.png", + "source": "https://www.mediafire.com/file/iy65mge0039ul2m/Pokemon+CAWPS.GBA/file", + "library_path": "/storage1/Emulation/roms/gba/Pokemon CAWPS.GBA", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_CAWPS", + "type": [], + "tags": [ + "hack", + "platform/gba", + "source/discord" + ], + "summary": "Pokemon CAWPS is different than the previous hack, Pokemon Outlaw. This the story of a young man or young woman who becomes a Police Officer in the Hoenn region. Like in Outlaw with Kanto, this isn't the same Hoenn you experienced in Pokemon R/S/E. People of this Hoenn are a bit more realistic.", + "notability": "", + "story": "", + "features": [ + "You kind of get two starter Pokemon. (one of them you choose, the other just given to you.)", + "\"Funny\" dialogue(or really offensive, you know the drill if you've played Outlaw). Though honestly it isn't the same as Outlaw. I've chilled out a bit.", + "Grinding Cave(a cave created for grinding levels, really important at the end of game)", + "No Gym Challenge or Pokemon League( tired of the same ol formula, I'm mixing it up).", + "You get to be a freaking cop, that's awesome! (I think I got the idea from the horribly hilarious movie 'Let's be cops' or maybe from Rush Hour, i dunno). It means you to do all kinds of cop stuff.", + "Trade evos are by moon stones. And Eevee evolves into Umbreon with Moon Stone and Espeon in Sun stone. Also you can buy stones at lilycove dept store, which you couldn't do in pokemon emerald. Not really a feature but whatever.", + "Also not really a feature, but I made the move Rock smash stronger. It's always bothered me why rock smash has always been so weak. So, I made it a decent move in this game" + ], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/iy65mge0039ul2m/Pokemon+CAWPS.GBA/file" + } + ] + }, + { + "stem": "Chaos Black", + "title": "Pokémon Chaos Black", + "platform": "GBA", + "base": null, + "version": "draws primarily from the game", + "status": "Beta", + "generation": "Gen III", + "developer": "Enix-Zae", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Chaos_Black/FB_IMG_1759650777648-a09a7d5216a86de0.jpg", + "source": "https://mega.nz/file/gUR1TYpK#DXcNDSYQPkR8oQZHP6TO8Ar7Pqe1upEBlUZP08ORAoE", + "library_path": "/storage1/Emulation/roms/gba/Pokemon Chaos Black Recreated.gba", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Chaos_Black", + "type": [ + "Difficulty", + "New Experience" + ], + "tags": [ + "hack", + "platform/gba", + "status/beta", + "type/difficulty", + "type/newexperience", + "source/discord" + ], + "summary": "Pokemon Chaos Black: Recreated is hacksrepairman's reconstruction of the original Chaos Black by Enix-Zae, reimagined as the new-region, new-story hack it was meant to be, instead of it being remembered as lightly edited FireRed with fakemon.", + "notability": "", + "story": "It begins with a legend:\n\"It has been an eternity since the four Pokégods were sealed inside the Legend Balls. Now, centuries later, they have been traced to a single land, the Beaulés region to the west of Magore. Eseal, heir to the Se Corp empire after its clash with Team Soul, seeks them. With the Pokégods in his grasp, nothing could stop him. You have a journey to begin. Follow in your sister's footsteps, become a Pokémon Master, and perhaps save the world.\"Nuzlocke Pokémon fan game", + "features": [ + "2 New Regions: Magore and Beaulés.", + "Magore has 8 Gyms while Beaulés has 6.", + "Over 40 kinds of Fakemon (More than 30 from the original Chaos Black Alpha 1, 3 discovered from the creator's video, and more than 10 made by me to make the fakemon more varied).", + "Some beta Pokemon from the leaked GS/RS/DP demo ROMs.", + "The gameplay was made to feel more like Fire Red.", + "Mewthree....?" + ], + "links": [ + { + "label": "Download", + "url": "https://mega.nz/file/gUR1TYpK#DXcNDSYQPkR8oQZHP6TO8Ar7Pqe1upEBlUZP08ORAoE" + }, + { + "label": "Download", + "url": "https://mega.nz/file/gUR1TYpK" + } + ] + }, + { + "stem": "Chaos in Vesita", + "title": "Pokémon Chaos in Vesita", + "platform": "PC", + "base": null, + "version": "1.1.5", + "status": "Complete", + "generation": "Joiplay/RPGXP", + "developer": "UnOvA", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Chaos_in_Vesita/IMG_9414-e872e152c049db9e.png", + "source": "https://www.mediafire.com/file/rxzkpssp0t9imdq/Pok%C3%A9mon_Chaos_in_Vesita_%281.1.5%29.zip/file", + "library_path": "/storage1/labdata/romhacks/library/Pokemon_Chaos_in_Vesita/", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Chaos_in_Vesita", + "type": [], + "tags": [ + "hack", + "platform/pc", + "status/complete", + "source/discord" + ], + "summary": "Your Adventure In Vesita
Far away from every known continent is an island located in the deepest blues of coral oceans. So rich of Pokémon and nature, life has evolved into the most beautiful ways all around the region. From 'the lungs of Vesita' the Saltu Jungle to the highest peaks of Vesita Mountains Pokémon, nature and people lived in harmony and peace.
No one knows how life on Vesita would have looked like if the shadow of chaos never striped the island. But it landed on here.
Errupting into chaos, life on Vesita would never be the same again. Pokémon turn against human while a new ice ag", + "notability": "", + "story": "", + "features": [ + "A long post game with tons of legendaries waiting for you!", + "New Pokémon forms", + "Vivillon: BUG/FAIRY", + "Flabebe: FAIRY/GRASS", + "Floette: FAIRY/GRASS", + "Florges: FAIRY/POSION", + "Gogoat: GRASS/ROCK", + "Spritzee: FAIRY/PSYCHIC", + "Aromatisse: FAIRY/PSYCHIC", + "Slurpuff: FAIRY/FIRE", + "Clauncher: WATER/STEEL", + "Clawitzer: WATER/STEEL", + "Dedenne: ELEC/GHOST", + "Goodra: DRAGON/PSYCHIC" + ], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/rxzkpssp0t9imdq/Pok%C3%A9mon_Chaos_in_Vesita_%281.1.5%29.zip/file" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/l502xvrkgvaz26b/Regionals.zip/file" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/28yhjlugj8whu6i/Trainer.zip/file" + } + ] + }, + { + "stem": "Chrome [FR]", + "title": "Pokémon Chrome [FR]", + "platform": "GBA", + "base": null, + "version": null, + "status": "Complete", + "generation": "Gen III", + "release_date": "2025", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Chrome_FR/Pokemon-CHROME-GBA-f97218c51505aea4.webp", + "source": "https://www.pokeharbor.com/2025/05/pokemon-chrome-2/", + "library_path": "/storage1/Emulation/roms/gba/CHROME1.5.gba", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Chrome_FR", + "type": [ + "Difficulty", + "Expansion" + ], + "tags": [ + "hack", + "platform/gba", + "status/complete", + "type/difficulty", + "type/expansion", + "source/discord" + ], + "summary": "In this new Pokémon adventure, you'll experience the world from a fresh perspective—where non-shiny Pokémon are the true rarity. With a reverse shiny rate, it's the regular forms that have become nearly extinct, turning shiny-hunting on its head.\n\nThe game offers a full Pokémon experience, complete with a classic Pokémon League journey, Pokédex completion, a main storyline with post-game content, side quests, legendary Pokémon encounters, and even a World Championship where you'll battle League champions from every official region.", + "notability": "", + "story": "", + "features": [ + "All Pokémon are shiny by default, with reversed shiny rates—making regular forms the rare collectible.", + "Mew is available early through a side quest (around the Surf stage), allowing extended use.", + "Includes Physical/Special split and Fairy type, along with select moves from Gen 4 to Gen 8.", + "Features 386 catchable Pokémon handpicked from Gens 1-8, based on Smogon OU/UU tiers. Most trade evolutions are now level-based (explained in-game).", + "A main storyline with a deep theme and post-game content, offering around 40 hours of gameplay. The League marks only 1/3 of the full story.", + "Set in a brand-new region with more explorable areas than Kanto and Johto combined.", + "Difficulty ramps up gradually: early game is beginner-friendly, while later stages offer tough strategic challenges with no need for grinding or Nuzlocke rules.", + "New music imported from Pokémon Emerald for added variety.", + "A few rare Fakemon:", + "A custom starter trio representing Tank, Stall, and Sweep roles (not Water/Grass/Fire). These are mostly exclusive to the beginning of the game.", + "Uncatchable boss Pokémon with enhanced stats, and awarded after completing the main quest.", + "After the intro, you can pick from 12 classic starters (from Gens 1, 3, 7, and 8), or choose a random Pokémon instead.", + "[PokéHarbor Link](https://www.pokeharbor.com/2025/05/pokemon-chrome-2/))", + "[Download Link](https://www.mediafire.com/file/25zmr5tx0xeek4o/CHROME1.5.zip/file)" + ], + "links": [ + { + "label": "Info / thread", + "url": "https://www.pokeharbor.com/2025/05/pokemon-chrome-2/" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/25zmr5tx0xeek4o/CHROME1.5.zip/file" + } + ] + }, + { + "stem": "Classic", + "title": "Pokémon Classic", + "platform": "GBA", + "base": null, + "version": null, + "status": null, + "generation": "Gen III", + "developer": "Daninrl", + "release_date": "2023", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Classic/FB_IMG_1702354492564-11783d54988872e9.jpg", + "source": "https://www.mediafire.com/file/yaxv8kqsd4b837u/Classic+", + "library_path": "/storage1/Emulation/roms/gba/Classic (v1.3).zip", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Classic", + "type": [ + "Expansion", + "New Experience" + ], + "tags": [ + "hack", + "platform/gba", + "type/expansion", + "type/newexperience", + "source/discord" + ], + "summary": "Pokemon Classic is a hack of Pokemon Emerald meant to emulate the experience of the original Gen 1 games, namely Pokemon Yellow, with improved features including quests and post-game content. Features have been added to improve game play to create a new experience for players who are into nostalgia and an overall new adventure (with a twist). This game incorporates features that aren't normally seen in the first generations and provides a spin on the original idea of the first games.", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/yaxv8kqsd4b837u/Classic+" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/yaxv8kqsd4b837u/Classic+(v1.3" + } + ] + }, + { + "stem": "Cloud White 2", + "title": "Pokémon Cloud White 2", + "platform": "GBA", + "base": null, + "version": "2.79", + "status": null, + "generation": "Gen III", + "developer": "Shogun", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Cloud_White_2/IMG_9872-c08cd80498c01bb9.png", + "source": "https://raw.githubusercontent.com/vbaemulator/GBA-Roms/main/Pokemon%20Cloud%20White%202%20v237.zip", + "library_path": "/storage1/Emulation/roms/gba/Pokemon Cloud White 2 v237.zip", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Cloud_White_2", + "type": [ + "Expansion" + ], + "tags": [ + "hack", + "platform/gba", + "type/expansion", + "source/discord" + ], + "summary": "The Cloud White 2 is another good Cloud White version from the Cloud White series. If you thought the original Pokemon Cloud White was fantastic, there's no reason to dismiss this version. Cloud White 2 follows the events of Pokemon Cloud White and takes place in the South Sinnoh, Sinnoh, and Hoenn regions.\nCloud White 2 will blow your mind with its incredible features, allowing you to meet all Pokemon from Generations 1 to 7. Have you heard of the terms primal reversion and mega evolution? Fortunately, you can enjoy these features in the game, though they are only available in newer Pokemon g", + "notability": "", + "story": "", + "features": [ + "3 Regions : Sinnoh, South Sinnoh and Sevii", + "35 hours of gameplay", + "All Pokémon from Gen 1 to 7", + "All Primal Reversions and Mega Evolutions", + "Day & Night system", + "BW Repel System", + "6th Gen EXP. catch system", + "New trainer sprites", + "Dollsteak patch", + "Berry & Honey trees", + "Customizable House", + "[Download Link](https://raw.githubusercontent.com/vbaemulator/GBA-Roms/main/Pokemon%20Cloud%20White%202%20v237.zip)" + ], + "links": [ + { + "label": "Download", + "url": "https://raw.githubusercontent.com/vbaemulator/GBA-Roms/main/Pokemon%20Cloud%20White%202%20v237.zip" + } + ] + }, + { + "stem": "Cloud White", + "title": "Pokémon Cloud White", + "platform": "GBA", + "base": null, + "version": "0.523d", + "status": "Complete", + "generation": "Gen III", + "developer": "Shogun", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Cloud_White/IMG_9830-e3d8c9bddb8cb696.webp", + "source": "https://raw.githubusercontent.com/vbaemulator/GBA-Roms/main/Pokemon%20Cloud%20White%20v523d.zip", + "library_path": "/storage1/Emulation/roms/gba/Pokemon Cloud White v523d.zip", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Cloud_White", + "type": [ + "Expansion", + "New Experience" + ], + "tags": [ + "hack", + "platform/gba", + "status/complete", + "type/expansion", + "type/newexperience", + "source/discord" + ], + "summary": "Pokemon Cloud White follows the story of the original Fire Red story but after that, a new adventure will start for your hero across an amount of 5 regions!", + "notability": "", + "story": "", + "features": [ + "New Scenarios after Original Kanto&Sevii Scenario", + "New Regions (Johto(include HGSS exclusive maps and some new maps), Mangan, Azur)", + "New Rivals", + "New evil TeamsNew graphisms", + "National dex \"at the beginning\"", + "Physical/Special/Status Split", + "New moves and abilities", + "BW Repel System", + "Poison outside battle leaves 1 hp", + "Increase difficulty", + "Day and night + Weather (include HG/SS/DPP sno", + "Pokemon World Tournament (Like in B2/W2)", + "The Kolloseum (PWT - Like)", + "Mega Evolutions & Mega gems", + "More than 540 Pokemons from gen 1 to 6", + "Buyable Home and customizable", + "New ferry and bus system in new region", + "New pokecenter", + "An additional storyline based on the film \"7 samurais\"", + "All the gen of Pokemons", + "Sprites are updated (trainers, Pokemons, etc)", + "New evolutionary stones", + "egg hatch lvl", + "IV in the Menu" + ], + "links": [ + { + "label": "Download", + "url": "https://raw.githubusercontent.com/vbaemulator/GBA-Roms/main/Pokemon%20Cloud%20White%20v523d.zip" + } + ] + }, + { + "stem": "Clover", + "title": "Pokémon Clover", + "platform": "GBA", + "base": "FireRed", + "version": "has been in the works for over", + "status": "Complete", + "generation": "Gen III", + "developer": "4chan's /vp/", + "release_date": "2023-10-04", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Clover/pokemon-clover-412a5afc3fecdd73.png", + "source": "https://www.mediafire.com/file/k067qng638qog6n/Clover+v1.3.3.zip/file", + "library_path": "/storage1/Emulation/roms/gba/Clover v1.3.3.gba", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Clover", + "type": [ + "Difficulty", + "New Experience" + ], + "tags": [ + "hack", + "platform/gba", + "base/firered", + "status/complete", + "type/difficulty", + "type/newexperience", + "source/discord" + ], + "summary": "**DO NOT USE ANY CHEATS ON YOUR SAFEFILE OR IT WILL BE DELETED**", + "notability": "", + "story": "", + "features": [ + "A full-scale adventure between two fully featured regions", + "386 monsters designed by /vp/", + "Custom soundtrack", + "Gen 7/8 standard battle engine", + "Competitive-grade battle AI that switches", + "Difficulty for veterans of the series", + "Custom battle backgrounds", + "Custom exp gain mechanics", + "GSC-style berry trees", + "Wonder trading", + "Sprite portraits for important characters", + "New custom Poké Balls", + "Black/White 2 repel system and item usage", + "Hidden Grottos and Phenomena", + "Reusable TMs and deletable HMs", + "A grand world rich with sidequests and secrets!", + "More informations**", + "[Document](https://pastebin.com/v67RiXMW)" + ], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/k067qng638qog6n/Clover+v1.3.3.zip/file" + }, + { + "label": "Download", + "url": "https://mega.nz/file/4uU1kRTa#Xm20ZdBxtkh0OcIfkhthoOLj5j8CEyIrVJFn3AMewyY" + }, + { + "label": "Download", + "url": "https://mega.nz/file/4uU1kRTa" + }, + { + "label": "Link", + "url": "https://pastebin.com/v67RiXMW" + } + ] + }, + { + "stem": "Colors", + "title": "Pokémon Colors", + "platform": "GBA", + "base": "LeafGreen", + "version": "](https://www.mediafire.com/", + "status": "Complete", + "generation": "Gen III", + "developer": "their sprite colors", + "release_date": "2025", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Colors/IMG_8733-993f2684c1827ea7.jpg", + "source": "https://www.mediafire.com/file/8cxgxpzzkk3mvho/Colors+", + "library_path": "/storage1/Emulation/roms/gba/Colors Classic Mode (V 1.1).zip", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Colors", + "type": [], + "tags": [ + "hack", + "platform/gba", + "base/leafgreen", + "status/complete", + "source/discord" + ], + "summary": "Pokemon Colors is a unique reimagining of LeafGreen built around a single premise: Pokémon typings are determined entirely by their sprite colors. Every Pokémon has been retyped based on its LeafGreen sprite, with movepools and, in some cases, abilities redesigned to fit their new identities. This shift creates a fresh and unpredictable experience where old strategies no longer apply.\n\nThe game also includes the physical-special split, revamped encounters, and fully reworked trainer battles to keep gameplay balanced and engaging. To add more life to the world, many NPCs now have new dialogue,", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/8cxgxpzzkk3mvho/Colors+" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/x5c9j3iqqqlrcfh/Colors+Classic+Mode+" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/8cxgxpzzkk3mvho/Colors+(V+1.1" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/x5c9j3iqqqlrcfh/Colors+Classic+Mode+(V+1.1" + } + ] + }, + { + "stem": "Colosseum - Green Adventure", + "title": "Pokémon Colosseum - Green Adventure", + "platform": null, + "base": null, + "version": null, + "status": "Complete", + "generation": null, + "release_date": "2026", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Colosseum_-_Green_Adventure/Screenshot_20260402_124837_Facebook-ee478dae628cc1df.jpg", + "source": "https://projectpokemon.org/home/files/file/5842-play-as-leaf-in-pok%C3%A9mon-colosseum/", + "library_path": "—", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Colosseum_-_Green_Adventure", + "type": [], + "tags": [ + "hack", + "status/complete", + "source/discord" + ], + "summary": "Pokémon Colosseum - Green Adventure Hack: Pokemon Colosseum Release: March 30, 2026 LEAF IS READY TO SET FOOT IN THE ORRE REGION!!", + "notability": "", + "story": "", + "features": [ + "R buttons opens the PC menu from anywhere. No more backtracking", + "Shiny locks removed from all Gift Pokemon. These include: All starter pokemon, Plusle, Ho-oh, Colosseum Pikachu, and Agate Celebi.", + "Soft reset with B + X + START combo", + "E-Reader room restored to its full glory!", + "Infinite TM use", + "Celebi Bonus Disc content is now accesible in Agate Village's Secret Cave (Save your game before entering)", + "Total EVs of your Pokemon now displayed after using a Vitamin", + "Vitamin cap raised to 252 (no more 100 cap)", + "All vitamins are half priced", + "Modern Exp. Share is always on right from the start.", + "Story Mode Menu:**", + "Added the GBA trade menu over the ''Exit'' option", + "New Key Items:**", + "EV Checker", + "IV Checker", + "Happiness Checker", + "Time Savers:**", + "No bike cutscenes", + "Instant Saving", + "Instant Cologne Scent massage + Key Item menu pops up right after", + "Pokémon with new ability:**", + "Ditto now has Wonder Guard", + "Enhanced moves:**", + "Sweet Kiss > 100% Accuracy" + ], + "links": [ + { + "label": "Download", + "url": "https://projectpokemon.org/home/files/file/5842-play-as-leaf-in-pok%C3%A9mon-colosseum/" + } + ] + }, + { + "stem": "Compass", + "title": "Pokémon Compass", + "platform": null, + "base": null, + "version": null, + "status": null, + "generation": null, + "release_date": "2024", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Compass/IMG_7012-1-8c57a41357a5b80e.webp", + "source": "https://docs.google.com/document/d/1rtq6KvBO_UUM32MuCeFsSJ2492Y3yZlGbIpo-4XRjPI/mobilebasic", + "library_path": "—", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Compass", + "type": [ + "Difficulty" + ], + "tags": [ + "hack", + "type/difficulty", + "source/discord" + ], + "summary": "**Creator:** Aria Seri and Kas Seri **Type:** Nintendo Switch **Last Updated:** October 25, 2024", + "notability": "", + "story": "> The story is primarely the same as in Pokémon Scarlet and Violet. The games are designed as an overhaul of ScVi focusing on progression, increased difficulty and wider selection of pokémons. These features complements the story of the Pokémon Compass, but the main storyline stays the same as in the original games they are from.", + "features": [], + "links": [ + { + "label": "Guide / docs", + "url": "https://docs.google.com/document/d/1rtq6KvBO_UUM32MuCeFsSJ2492Y3yZlGbIpo-4XRjPI/mobilebasic" + }, + { + "label": "Link", + "url": "https://www.nexusmods.com/pokemonscarletandviolet/mods/21" + } + ] + }, + { + "stem": "Conquest - Ultimate", + "title": "Pokémon Conquest: Ultimate", + "platform": "NDS", + "base": "Conquest", + "version": null, + "status": "Complete", + "generation": null, + "developer": "Aaron's Aron", + "release_date": "2025", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Conquest_Ultimate/FB_IMG_1720563439886-1-fa23b4014af26a03.jpg", + "source": "https://drive.google.com/drive/u/0/mobile/folders/1uHFF0SvO8lysOlrsDol0LENlnzta-d7k?usp=drive_link", + "library_path": "—", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Conquest_Ultimate", + "type": [ + "Expansion" + ], + "tags": [ + "hack", + "platform/nds", + "base/conquest", + "status/complete", + "type/expansion", + "source/discord" + ], + "summary": "**Pokémon Conquest: Ultimate** is an NDS ROM HCK by Aaron's Aron based on Pokemon Conquest. It was last updated on August 2nd, 2025. **About the Game:** Welcome to Pokémon Conquest: Ultimate! This mod took over a year to complete and completely overhauls the game from scratch, making it the largest Pokémon Conquest mod to date! It features 150 new fully evolved Pokémon from up to Gen 9 (including regional forms!), 50 returning Pokémon, and gets rid of the LC and NFE Pokémon that are completely useless after the first 1.5% of the game. This more than doubles the amount of fully evolved Pokémon available to use! The roster has also been balanced around making sure all types are equally represented, from the Pokémon themselves (along with a few type changes to fill previously unused type combos, such as Bug/Dragon Flygon!) to the moves they use. Everything from moves (of which there are almost 100 new ones!), abilities, Warrior Skills, Pokémon stats, and more have been completely rebalanced to make the game more fair, fun, and strategic. With 200 fully evolved Pokémon and 200 Warriors, every Warrior now has a unique Perfect Link, and in addition, every Warlord now has a \"special\" Pokémon they partner with, such as Magoichi with Shaymin-Sky or Kunoichi with Chi-Yu. The Hero can \"choose\" their starter at the beginning of \"The Legend of Ransei\", as they now start with all seven Eeveelutions. The difficulty has been greatly increased through a variety of methods, so don't be surprised if you lose battles along the way! Battlefields are updated and will continue to be updated, as well as the rest of the game as more tools and developments become available! The in-game text has been updated to Gen 9 standards to provide more information to the player.", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://drive.google.com/drive/u/0/mobile/folders/1uHFF0SvO8lysOlrsDol0LENlnzta-d7k?usp=drive_link" + }, + { + "label": "Link", + "url": "https://onedrive.live.com/?redeem=aHR0cHM6Ly8xZHJ2Lm1zL2YvcyFBaEpyZWZBX3Nla2hoZDhKNXNHbmk0SV9kSEZIa1E&id=21E9B13FF0796B12%2194089&cid=21E9B13FF0796B12" + } + ] + }, + { + "stem": "Cope", + "title": "Pokémon Cope", + "platform": "GBA", + "base": null, + "version": "0.9.5", + "status": "Complete", + "generation": "Gen III", + "developer": "Team Cope", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Cope/IMG_9784-bf22b56ed46baad8.png", + "source": "https://raw.githubusercontent.com/vbaemulator/GBA-Roms/refs/heads/main/Pokemon%20Cope%20Version%20v0.9.5.zip", + "library_path": "/storage1/Emulation/roms/gba/Pokemon Cope Version v0.9.5.zip", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Cope", + "type": [], + "tags": [ + "hack", + "platform/gba", + "status/complete", + "source/discord" + ], + "summary": "This is a modification of Pokemon Fire Red with an entirely new dex full of mons and in-jokes. You probably won't get most of them, but we hope you enjoy them anyway.\n\n[Download Link](https://raw.githubusercontent.com/vbaemulator/GBA-Roms/refs/heads/main/Pokemon%20Cope%20Version%20v0.9.5.zip)", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://raw.githubusercontent.com/vbaemulator/GBA-Roms/refs/heads/main/Pokemon%20Cope%20Version%20v0.9.5.zip" + } + ] + }, + { + "stem": "Coral", + "title": "Pokémon Coral", + "platform": null, + "base": null, + "version": null, + "status": null, + "generation": null, + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Coral/IMG_9876-4bd4b29d7e537d57.webp", + "source": "https://raw.githubusercontent.com/vbaemulator/GBC-Roms/main/Pokemon%20Coral%20Version%20v1.2.zip", + "library_path": "—", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Coral", + "type": [ + "Difficulty", + "Expansion" + ], + "tags": [ + "hack", + "type/difficulty", + "type/expansion", + "source/discord" + ], + "summary": "Pokemon Coral", + "notability": "", + "story": "", + "features": [ + "60fps gameplay", + "Entirely new region to explore with its own story to experience.", + "Challenging gameplay.", + "Plenty of optional areas and events.", + "Pokémon from all seven generations available to catch with beautiful custom art.", + "Choose from any of the six starters from the first two generations of Pokémon.", + "Entirely new soundtrack featuring songs composed specifically for the game.", + "Physical/Special Split.", + "Abilities", + "Added Fairy Type.", + "Moves from newer generations of Pokémon.", + "Re-balanced movepools that are more inline with current generations.", + "Running shoes with unique running animation.", + "Change the color of the player sprite at any time by visiting the wardrobe in your room.", + "Pokémon no longer need to know HM moves to use them on the overworld. If you've obtained the HM, have the necessary badge, and the Pokémon CAN learn it, they can use it!", + "Ridable Skateboard with unique mechanics and a jump.", + "Many more features to come in the future!", + "[Download Link](https://raw.githubusercontent.com/vbaemulator/GBC-Roms/main/Pokemon%20Coral%20Version%20v1.2.zip)" + ], + "links": [ + { + "label": "Download", + "url": "https://raw.githubusercontent.com/vbaemulator/GBC-Roms/main/Pokemon%20Coral%20Version%20v1.2.zip" + } + ] + }, + { + "stem": "Cross Stadium", + "title": "Pokémon Cross Stadium", + "platform": null, + "base": "Stadium", + "version": ", so I cannot currently provid", + "status": "Complete", + "generation": "Unique", + "developer": "Chygames", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Cross_Stadium/Screenshot_20251101_120559_Facebook-be6545079b9c150f.jpg", + "source": "https://mega.nz/folder/vpdU3I5T#AP8ehwt7m21IEtlLqA_ukA", + "library_path": "/storage1/labdata/romhacks/library/Pok_mon_Cross_Stadium/", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Cross_Stadium", + "type": [ + "Expansion" + ], + "tags": [ + "hack", + "base/stadium", + "status/complete", + "type/expansion", + "source/discord" + ], + "summary": "Pokémon Stadium has been updated with the latest existing mechanics from PokéPokémon games up to Generation 8! Region: Stadium **Development:** This ROM is based on Pokémon Stadium, a Nintendo 64 game purely focused on battles and belonging to the 1st generation. It should be noted that the game is entirely in English since, for now, the game can only be modified from a US version, so I cannot currently provide a Spanish version. Important detail about the hackrom,, it lacks a story as such, since this game doesn't have a plot and focuses exclusively on battles.", + "notability": "", + "story": "", + "features": [ + "Modification of the Pokémon used by the game's trainers, as well as rental Pokémon. In both cases, the IVs/EVs and movesets were improved.", + "The AI was improved, bringing an interesting sense of challenge to the gameplay.", + "The type chart was updated to reflect current usage, fixing old bugs (Ghost didn't affect Psychic, for example).", + "Updates to the power and effects of moves, making attacks from the past function as they would today.", + "Adaptations of ineffective or useless moves from the original Stadium to make them useful and help balance Pokémon and types in general (Whirlwind now has the effect of Hurricane, Splash now raises Attack by 2 stages, Roar now functions like Howl Z, Teleport now functions like Calm Mind, etc.) in addition to boosting other attacks since their effects in the Stadium cannot be adapted to how they are currently (Hyper Beam, Sky Attack, etc.).", + "Modification of the base stats of some Pokémon, changing them as has been done throughout the generations with Pokémon such as Raichu, Dodrio, and Pidgeot, among others (with exceptions like Victreebel and Exeggutor)", + "The final battle will be tougher, as you won't be fighting Mewtwo alone; he'll be accompanied." + ], + "links": [ + { + "label": "Download", + "url": "https://mega.nz/folder/vpdU3I5T#AP8ehwt7m21IEtlLqA_ukA" + } + ] + }, + { + "stem": "Crystal 16-bit", + "title": "Pokémon Crystal 16-bit", + "platform": "GB", + "base": "Crystal", + "version": null, + "status": "Beta", + "generation": "Gen II", + "developer": "DanielOlivaw", + "release_date": "2024-12-08", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Crystal_16-bit/e62cca96-98cb-492b-acb0-02921f5353c9-39ee3ebc7c95cef7.png", + "source": "https://www.mediafire.com/file/b9znp5o09gz4kfq/crystal16-bit.zip/file", + "library_path": "/storage1/Emulation/roms/gb/crystal16-bit.zip", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Crystal_16-bit", + "type": [ + "Expansion", + "QoL" + ], + "tags": [ + "hack", + "platform/gb", + "base/crystal", + "status/beta", + "type/expansion", + "type/qol", + "source/discord" + ], + "summary": "**Pokémon Crystal 16-bit** is a GBC ROM Hack by DanielOlivaw based on Pokemon Crystal. It was last updated on December 08, 2024.", + "notability": "", + "story": "", + "features": [ + "Many Pokémon from later generations, including regional forms", + "Several Pokémon from the Gold and Silver beta", + "Altered trainer parties and wild encounters", + "Over 600 moves, including moves from later generations and a handful of original moves", + "Physical/special split", + "Fairy type", + "A move reminder", + "Full maps for Viridian Forest and Seafoam Islands", + "A list of 99 infinitely reusable TMs (that don't use item slots)", + "Gen 6+ style Exp. All, toggleable from the options menu", + "Starters randomly selected from across the generations", + "Newer Poké Ball types", + "More bag pockets", + "Standardized marts that gain more items as you progress", + "Pokédex opening after evolutions and hatching" + ], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/b9znp5o09gz4kfq/crystal16-bit.zip/file" + }, + { + "label": "Download", + "url": "https://mega.nz/file/JKVzAIjQ#YQx_XpKEyT2VBzpyWbO_D-VClhgomqhq1It7kzBe9ac" + } + ] + }, + { + "stem": "Crystal Advance Redux", + "title": "Pokémon Crystal Advance Redux", + "platform": "GBA", + "base": "Emerald", + "version": "2026-05-06", + "status": "Ongoing", + "generation": "Gen 2 on GBA", + "developer": "Arnie", + "release_date": "2025", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Crystal_Advance_Redux/Pokemon-Crystal-Advance-Redux-1-680f1190bfcb2055.jpg", + "source": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Crystal%20Advance%20Redux%20rom%20hack", + "library_path": "roms/gba/Hacks/Pokemon - Crystal Advance Redux (Hack).gba", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Crystal_Advance_Redux", + "type": [ + "Demake", + "Vanilla+" + ], + "tags": [ + "hack", + "platform/gba", + "base/emerald", + "status/ongoing", + "type/demake", + "type/vanilla+" + ], + "summary": "Pokémon Crystal rebuilt on the GBA (pokeemerald) with Gen-3+ engine conveniences — Johto with modern QoL.", + "notability": "", + "story": "", + "features": [ + "New abilities and attacks", + "Moveset updated to 4th gen", + "New type icons, Pokemon icons", + "B&W style Pokemon sprites", + "Seasons", + "Fairy Type", + "Reusable TMs", + "Poison survival", + "Nature Colors", + "2nd gen Pokeballs", + "Battle Tower & Bug-Catching Contest", + "Daily Trade at Goldenrod Casino", + "[PokéHarbor Link]()", + "[MediaFire Download]()" + ], + "links": [ + { + "label": "Lookup", + "url": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Crystal%20Advance%20Redux%20rom%20hack" + } + ] + }, + { + "stem": "Crystal Advance", + "title": "Pokémon Crystal Advance", + "platform": "GBA", + "base": null, + "version": null, + "status": null, + "generation": "Gen III", + "developer": "Kertra", + "release_date": "2022", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Crystal_Advance/pokemon-crystal-advance-c1945c92be665432.png", + "source": "https://www.mediafire.com/file/7nf3t2x2fbawi40/Pokémon_-_Crystal_Advance.zip/file", + "library_path": "/storage1/Emulation/roms/gba/Pokémon - Crystal Advance.zip", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Crystal_Advance", + "type": [ + "Expansion", + "QoL" + ], + "tags": [ + "hack", + "platform/gba", + "type/expansion", + "type/qol", + "source/discord" + ], + "summary": "Pokemon Crystal Advance is a transfer of the classic Crystal to the GBA engine with a few additions.", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/7nf3t2x2fbawi40/Pokémon_-_Crystal_Advance.zip/file" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/5jt0pmco4j6r3zi/Pokémon_-_Crystal_Advance_-_Girl.zip/file" + } + ] + }, + { + "stem": "Crystal Awakening", + "title": "Pokémon Crystal Awakening", + "platform": "GB", + "base": "Crystal", + "version": null, + "status": null, + "generation": "Gen II", + "developer": "FrenchOrange", + "release_date": "2025-11-29", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Crystal_Awakening/Pokemon-Crystal-Awakening-018b1ab7523056be.png", + "source": "https://mega.nz/file/QO1XFJoC#86Ae6HjSBnnF6u_wOXN1qsWETGOUbU5T5nljbvBM20A", + "library_path": "/storage1/Emulation/roms/gb/crysawakening v1.2.8.zip", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Crystal_Awakening", + "type": [ + "Difficulty", + "Cosmetic" + ], + "tags": [ + "hack", + "platform/gb", + "base/crystal", + "type/difficulty", + "type/cosmetic", + "source/discord" + ], + "summary": "**Pokémon Crystal Awakening** is a GBC ROM Hack by FrenchOrange based on Pokemon Crystal. It was released on November 29, 2025.", + "notability": "", + "story": "", + "features": [ + "While the story progression remains unchanged, here are the new elements you can expect in this hack:", + "Overhauled overworld and interior graphics, alongside some UI elements.", + "Tweaked trainer teams, namely harder rosters for important trainers, such as Gym Leaders.", + "An expanded Kanto, with restored dungeons, more trainers, and more items.", + "More sensible Pokémon distribution (as seen [here](https://github.com/FrenchOrange/pokezelda/blob/main/docs/NEW_LOCATIONS.txt) ), and more generous HM compatibility.", + "Every Pokémon available on one save file, and all room decorations can be bought or are gifted to you.", + "Fixed off-model Pokémon sprites. Palettes were also improved for a good amount of Pokémon.", + "Some QOL features, like \"Running Shoes\" (works by holding down B), and an automatic Repel reuse message.", + "[Fixed bugs and glitches](https://github.com/pret/pokecrystal/blob/master/docs/bugs_and_glitches.md).", + "The Celebi event, now restored! To get it, simply head to Goldenrod's Pokémon Center after beating the League.", + "Note: This ROM hack is not compatible with base GSC.**", + ":Download: [Mega](https://mega.nz/file/QO1XFJoC#86Ae6HjSBnnF6u_wOXN1qsWETGOUbU5T5nljbvBM20A)", + ":Download: [Mediafire](https://www.mediafire.com/file/5xq47hlvczl2gli/crysawakening+v1.2.8.zip/file)" + ], + "links": [ + { + "label": "Download", + "url": "https://mega.nz/file/QO1XFJoC#86Ae6HjSBnnF6u_wOXN1qsWETGOUbU5T5nljbvBM20A" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/5xq47hlvczl2gli/crysawakening+v1.2.8.zip/file" + }, + { + "label": "Download", + "url": "https://github.com/FrenchOrange/pokezelda/blob/main/docs/NEW_LOCATIONS.txt" + }, + { + "label": "Download", + "url": "https://github.com/pret/pokecrystal/blob/master/docs/bugs_and_glitches.md" + } + ] + }, + { + "stem": "Crystal Calm", + "title": "Pokémon Crystal Calm", + "platform": "GB", + "base": "Crystal", + "version": "Final", + "status": "Complete", + "generation": "Gen II", + "developer": "CH666", + "release_date": "2016", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Crystal_Calm/pokemon-crystal-calm-1-6b792cdfb6911e6a.png", + "source": "https://www.pokeharbor.com/2021/05/pokemon-crystal-calm/", + "library_path": "/storage1/Emulation/roms/gb/crystal-calm-completed.zip", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Crystal_Calm", + "type": [], + "tags": [ + "hack", + "platform/gb", + "base/crystal", + "status/complete", + "source/discord" + ], + "summary": "Pokémon Crystal Calm is a hack of Crystal version with greatly improved gameplay as compared to original.", + "notability": "", + "story": "", + "features": [ + "Completable Pokedex", + "More Difficulty", + "Redesign of Cities and Towns(except Lavender Town in order to not Disturb the Dead)", + "Regular Trainers have 3 or Less than 3 pokemon which are stronger and more evolved except Jugglers and few Pokefans", + "Starters are Cubone, Vulpix, and Lapras each holding Thick Club, Fire Stone, or Lucky egg respectively", + "No trade evos", + "Better distribution of Pokemon", + "[PokéHarbor Link](https://www.pokeharbor.com/2021/05/pokemon-crystal-calm/)", + "[Download Link](https://www.mediafire.com/file/ts126e4rq3ysc6b/crystal-calm-completed.zip/file)" + ], + "links": [ + { + "label": "Info / thread", + "url": "https://www.pokeharbor.com/2021/05/pokemon-crystal-calm/" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/ts126e4rq3ysc6b/crystal-calm-completed.zip/file" + } + ] + }, + { + "stem": "Crystal Cappuccino Deluxe", + "title": "Pokémon Crystal Cappuccino Deluxe", + "platform": "GBC", + "base": "Crystal", + "version": null, + "status": "Complete", + "generation": null, + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Crystal_Cappuccino_Deluxe/IMG_9862-0e580cde245046e0.jpg", + "source": "https://1fichier.com/?a6tyr4jjxhtfof4t9yw8&af=2885774", + "library_path": "—", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Crystal_Cappuccino_Deluxe", + "type": [ + "Expansion" + ], + "tags": [ + "hack", + "platform/gbc", + "base/crystal", + "status/complete", + "type/expansion", + "source/discord" + ], + "summary": "Name: Pokemon Crystal Cappuccino Deluxe Edition Remade by: Pagz Based on: Pokemon Crystal It's the same as Pokemon Crystal but all pokemon has new form and new type, new moves. What \"fusing\" in this contexts means:
A pokemons base stats are averaged between the two
A pokemons moveset and TM learn lists has been curated to be a mix of the two (however egg moves are unchanged)
Evolution methods are averaged (if they're based on level) or chosen between one or the other depending on which is more appropriate
The sprite is of the original base pokemon
The colour is based on the second newer pokemon
Pokemon are fused with others with the same stages of evolution (i.e pokemon with 2 evolutions are fused with others with 2 stages)
Pokemon with split evolutions usually have a 1 stage pokemon on one of the branches
Pokemon are semi-randomly fused based on one of my previous randofused games Other things this mod includes:
Moves have been updated to their newest base power and pp
Difficulty has been increased across the board, although wild pokemon levels and the battle tower have not been affected
Gyms and special trainers have more Pokemon and stronger movesets then regular trainers
More wild pokemon diversity and density
Ability to catch all pokemon in one game
Fairy Type added along with 3 fairy moves from the newer generations
TM's are now reusable [1 Fichier Link](https://1fichier.com/?a6tyr4jjxhtfof4t9yw8&af=2885774) [Up Link](https://www.up-4ever.net/yye5nuxscenm) [Mediafire Link](https://www.mediafire.com/file/y097hb1bppluc2q/Cappuccino_A_randofused_inspired_crystal_mod_Completed.zip/file)", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Link", + "url": "https://1fichier.com/?a6tyr4jjxhtfof4t9yw8&af=2885774" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/y097hb1bppluc2q/Cappuccino_A_randofused_inspired_crystal_mod_Completed.zip/file" + }, + { + "label": "Link", + "url": "https://www.up-4ever.net/yye5nuxscenm" + } + ] + }, + { + "stem": "Crystal Clear", + "title": "Pokémon Crystal Clear", + "platform": "GBC", + "base": "Crystal", + "version": "2.5.11", + "status": "Complete", + "generation": "Gen 1–2", + "developer": "ShockSlayer", + "release_date": "2024", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Crystal_Clear/FB_IMG_1703862097977-1-49e9043fc91a60d2.jpg", + "homepage": "https://www.pokeharbor.com/2022/01/pokemon-crystal-clear/", + "source": "https://www.pokecommunity.com/threads/pokemon-crystal-clear.382197/", + "library_path": "roms/gbc/Hacks/Pokemon - Crystal Clear (Hack).gbc", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Crystal_Clear", + "type": [ + "New Experience" + ], + "tags": [ + "hack", + "platform/gbc", + "base/crystal", + "status/complete", + "type/newexperience", + "source/discord" + ], + "summary": "Pokémon Crystal Clear turns Gen 2 into a wide-open sandbox. Built by ShockSlayer over Pokémon Crystal, it lets you pick any of 30+ starters, choose your starting town anywhere in Johto or Kanto, customise your character, and take on the 16 gyms in any order — with badge-scaling, rematchable gyms, removed roadblocks, and all 251 obtainable without trading.", + "notability": "The original open-world Pokémon hack — a viral proof that Gen 2 could become a free-roam RPG, and still the reference point for sandbox hacks.", + "story": "", + "features": [ + "Start in any town across Johto or Kanto", + "30+ selectable starters (or inject your own)", + "Character and colour customisation", + "Forced-story barriers and HM roadblocks removed", + "Gyms scale to your badge count and can be rematched", + "Challenge all 16 Gym Leaders in any order", + "Johto↔Kanto bridge for free travel", + "All 251 Pokémon obtainable without trading" + ], + "links": [ + { + "label": "Source / info", + "url": "https://www.pokecommunity.com/threads/pokemon-crystal-clear.382197/" + }, + { + "label": "Lookup", + "url": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Crystal%20Clear%20rom%20hack" + } + ] + }, + { + "stem": "Crystal Inheritance", + "title": "Pokémon Crystal Inheritance", + "platform": "GBC", + "base": "Crystal", + "version": "1.0.3", + "status": "Complete", + "generation": "Gen 2+", + "source": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Crystal%20Inheritance%20rom%20hack", + "library_path": "roms/gbc/Hacks/Pokemon - Crystal Inheritance (Hack).gbc", + "play_status": "Unplayed", + "type": [ + "New Experience" + ], + "tags": [ + "hack", + "platform/gbc", + "base/crystal", + "status/complete", + "type/newexperience" + ], + "summary": "A Crystal-based adventure with a new story and updated rosters/mechanics within the Gen 2 framework.", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Lookup", + "url": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Crystal%20Inheritance%20rom%20hack" + } + ] + }, + { + "stem": "Crystal Kaizo", + "title": "Pokémon Crystal Kaizo", + "platform": "GBC", + "base": "Crystal", + "version": "1.0", + "status": "Complete", + "generation": "Gen 2", + "source": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Crystal%20Kaizo%20rom%20hack", + "library_path": "roms/gbc/Hacks/Pokemon - Crystal Kaizo (Hack).gbc", + "play_status": "Unplayed", + "type": [ + "Difficulty" + ], + "tags": [ + "hack", + "platform/gbc", + "base/crystal", + "status/complete", + "type/difficulty" + ], + "summary": "The definitive Gen 2 kaizo: every trainer is a brutal, fully-EV'd gauntlet. Companion to the Gold/Silver Kaizo line.", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Lookup", + "url": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Crystal%20Kaizo%20rom%20hack" + } + ] + }, + { + "stem": "Crystal Legacy", + "title": "Pokémon Crystal Legacy", + "platform": "GBC", + "base": "precedents set", + "version": null, + "status": null, + "generation": "Gen II", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Crystal_Legacy/custom-realistic-pokemon-crystal-legacy-bo-35484fba17c78339.png", + "source": "https://drive.google.com/file/d/1tUaVjlDjvpW3uuKjFCTwfl7FweR6gE79/view?usp=sharing", + "library_path": "/storage1/Emulation/roms/gbc/Pokemon Crystal Legacy.gbc", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Crystal_Legacy", + "type": [ + "QoL" + ], + "tags": [ + "hack", + "platform/gbc", + "base/precedentsset", + "type/qol", + "source/discord" + ], + "summary": "Pokémon Crystal Legacy is an enhancement hack that aims to improve Generation 2's most underdeveloped areas, while holding on to the mechanics and feel that made it unique. Rather than bring modern Pokémon design philosophy to Crystal, Legacy only makes changes based on precedents set in the game's original design.\n\nHack Features:\n\nDynamic Gym Leader level scaling\n\nGym Leader teams optimized\n\nImproved level curve\n\nPokémon availability increased\n\nGameplay Balancing\n\nItem Improvements\n\nQuality of Life\n\nRematch Johto Gym Leaders after becoming Johto Champion.\n\nKanto is now its own separate league", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://drive.google.com/file/d/1tUaVjlDjvpW3uuKjFCTwfl7FweR6gE79/view?usp=sharing" + } + ] + }, + { + "stem": "Cubic Crystal", + "title": "Pokémon Cubic Crystal", + "platform": "GB", + "base": null, + "version": null, + "status": null, + "generation": "Gen II", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Cubic_Crystal/68596-29359ebf89dd4eafc794a1805ef5c456-1-1-0a3dc0fcce1dd21f.png", + "source": "https://www.mediafire.com/file/dg6285gut23mmz6/CubicCrystal+v1.2.zip/file/", + "library_path": "/storage1/Emulation/roms/gb/CubicCrystal v1.2.zip", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Cubic_Crystal", + "type": [], + "tags": [ + "hack", + "platform/gb", + "source/discord" + ], + "summary": "Pokemon Cubic Crystal is a remix of Crystal that's recognizable but distinct, a sort of \"what if Crystal's story was as different from Gold/Silver as future same-gen sequels?\" approach. Every major change to mons, locations, moves, and major battles has been cataloged in an easy-to-navigate spreadsheet, which you can check out using the \"Documentation\" button in the Useful Stuff section.\n\nWhile Cubic Crystal has been properly playtested, this is the author's first project and there are likely small issues that have gone unnoticed. If anyone plays it and notices something off, whether a glitch,", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/dg6285gut23mmz6/CubicCrystal+v1.2.zip/file/" + } + ] + }, + { + "stem": "Dark Knight", + "title": "Pokémon Dark Knight", + "platform": "GBA", + "base": null, + "version": "completed 1.2", + "status": "Complete", + "generation": "Gen III", + "developer": "pikachu18", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Dark_Knight/IMG_9938-72591b4a7a707772.webp", + "source": "https://raw.githubusercontent.com/vbaemulator/GBA-Roms/main/Pokemon%20Dark%20Knight%20v1.2.zip", + "library_path": "/storage1/Emulation/roms/gba/Pokemon Dark Knight v1.2.zip", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Dark_Knight", + "type": [ + "Expansion", + "New Experience" + ], + "tags": [ + "hack", + "platform/gba", + "status/complete", + "type/expansion", + "type/newexperience", + "source/discord" + ], + "summary": "Pokemon Dark Knight has lots of features from new generations and there are a lot of new experiences, with Pokemon from Gen 4 too. The starters are Pichu, Poliwag, and Geodude.", + "notability": "", + "story": "", + "features": [ + "All 386 Pokemon are catchable somehow and also some Pokemon from gen 4", + "Upgraded Critical-hit mechanics to match gen 6 onwards", + "New story(not completed)", + "Pokedex glitch fix", + "Decaptalization", + "Reusable TMs", + "Eggs hatch at level 1", + "Rough skin mechanics upgraded to match 4 onwards", + "HM move forgetting", + "Indoor running", + "Pokemon gains exp after the catch", + "Nature Colored Stats", + "Real-Time Clock", + "Day and night", + "Timebox when we open the menu", + "Poison in overworld leaves 1hp", + "Wild double battle", + "Iv display", + "Physical Special Split with icons", + "Repel system like b/w", + "Fairy type", + "Pokeball doesn't break on fail", + "Pokemon are in randomized locations", + "Faster text" + ], + "links": [ + { + "label": "Download", + "url": "https://raw.githubusercontent.com/vbaemulator/GBA-Roms/main/Pokemon%20Dark%20Knight%20v1.2.zip" + } + ] + }, + { + "stem": "Dark Rising - Order Destroyed", + "title": "Pokémon Dark Rising - Order Destroyed", + "platform": "GBA", + "base": "FireRed", + "version": "Complete", + "status": "Complete", + "generation": "Multi-gen", + "source": "https://www.pokecommunity.com/threads/pokemon-dark-rising-series.341667/", + "library_path": "roms/gba/Hacks/Pokemon - Dark Rising - Order Destroyed (Hack).gba", + "play_status": "Unplayed", + "type": [ + "New Experience", + "Difficulty" + ], + "tags": [ + "hack", + "platform/gba", + "base/firered", + "status/complete", + "type/newexperience", + "type/difficulty" + ], + "summary": "A spin-off entry in the Dark Rising saga.", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Source / info", + "url": "https://www.pokecommunity.com/threads/pokemon-dark-rising-series.341667/" + }, + { + "label": "Lookup", + "url": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Dark%20Rising%20-%20Order%20Destroyed%20rom%20hack" + } + ] + }, + { + "stem": "Dark Rising 2", + "title": "Pokémon Dark Rising 2", + "platform": "GBA", + "base": "FireRed", + "version": "Complete", + "status": "Complete", + "generation": "Multi-gen + fakemon", + "source": "https://www.pokecommunity.com/threads/pokemon-dark-rising-series.341667/", + "library_path": "roms/gba/Hacks/Pokemon - Dark Rising 2 (Hack).gba", + "play_status": "Unplayed", + "type": [ + "New Experience", + "Difficulty" + ], + "tags": [ + "hack", + "platform/gba", + "base/firered", + "status/complete", + "type/newexperience", + "type/difficulty" + ], + "summary": "Sequel to Dark Rising — bigger story, more fakemon, same punishing difficulty.", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Source / info", + "url": "https://www.pokecommunity.com/threads/pokemon-dark-rising-series.341667/" + }, + { + "label": "Lookup", + "url": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Dark%20Rising%202%20rom%20hack" + } + ] + }, + { + "stem": "Dark Rising", + "title": "Pokémon Dark Rising", + "platform": "GBA", + "base": "FireRed", + "version": "1 (Origins)", + "status": "Complete", + "generation": "Multi-gen + fakemon", + "developer": "DarkRisingGirl", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_DarkRising/IMG_9898-73f4433eee4898a8.webp", + "source": "https://www.pokecommunity.com/threads/pokemon-dark-rising-series.341667/", + "library_path": "roms/gba/Hacks/Pokemon - Dark Rising (Hack).gba", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_DarkRising", + "type": [ + "New Experience", + "Difficulty" + ], + "tags": [ + "hack", + "platform/gba", + "base/firered", + "status/complete", + "type/newexperience", + "type/difficulty" + ], + "summary": "Notoriously hard story-driven hack with a dark plot, fakemon, and multi-gen mons. The Origins build is the remastered DR1.", + "notability": "", + "story": "", + "features": [ + "386 Pokemon from Kanto, Johto, Hoenn, Sinnoh and Unova", + "Newer generation moves", + "Dream World Abilities", + "Pokemon will learn some of their best egg moves by level up instead of breeding", + "Challenge Nurse Joy for exp", + "[Download Link](https://raw.githubusercontent.com/vbaemulator/GBA-Roms/main/PokemonDarkRising.zip)" + ], + "links": [ + { + "label": "Source / info", + "url": "https://www.pokecommunity.com/threads/pokemon-dark-rising-series.341667/" + }, + { + "label": "Lookup", + "url": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Dark%20Rising%20rom%20hack" + } + ] + }, + { + "stem": "Dark Violet", + "title": "Pokémon Dark Violet", + "platform": "GBA", + "base": null, + "version": "1.0", + "status": null, + "generation": "Gen III", + "developer": "creatures called Pokemon", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Dark_Violet/IMG_9874-a8a3c76567fda299.jpg", + "source": "https://raw.githubusercontent.com/vbaemulator/GBA-Roms/main/pokemon%20Dark%20Violet%20Final2018V1.zip", + "library_path": "/storage1/Emulation/roms/gba/DarkVioletFinal2018V1.gba", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Dark_Violet", + "type": [ + "Expansion" + ], + "tags": [ + "hack", + "platform/gba", + "type/expansion", + "source/discord" + ], + "summary": "Catalogued from the Discord ROM-hack archive. See links below.", + "notability": "", + "story": "This world is inhabited far and wide by creatures called Pokemon. For some people, Pokemon are pets. Others use them for battle. There are numerous mysteries surrounding them, and they are a popular subject of research. Either way, humans live in harmony with Pokemon, and they have done so for ages. Meanwhile, three teenagers, two from Pallet Town and one from Viridian City, decide to travel through the Kanto region in order to collect the eight Kanto badges and compete in the Pokemon League Challenge.\nThe teens' names are Red, Green, and Blue, and Professor Oak has given them each a Pokemon. They have no idea what awaits them, such as the ever-increasingly dangerous crime syndicate known as Team Rocket. On their journey, the three of them will meet a variety of people, some of whom will be helpful, such as Blue's older sister Daisy. They will also encounter Kamon, a younger boy who claims to despise Team Rocket and is constantly on their tail. What are Kamon's motivations? What, more importantly, are Team Rocket's motivations?", + "features": [ + "Entire game re-scripted & re-mapped from scratch", + "210 Pokemon available", + "DS-style Pokemon sprites", + "113 new moves from Gen 4 & 5", + "Physical/Special split", + "Redone music", + "New movesets based closely on B2/W2 movesets", + "Map layouts based off of HG/SS", + "[Download Link](https://raw.githubusercontent.com/vbaemulator/GBA-Roms/main/pokemon%20Dark%20Violet%20Final2018V1.zip)" + ], + "links": [ + { + "label": "Download", + "url": "https://raw.githubusercontent.com/vbaemulator/GBA-Roms/main/pokemon%20Dark%20Violet%20Final2018V1.zip" + } + ] + }, + { + "stem": "Dark Worship", + "title": "Pokémon Dark Worship", + "platform": "GBA", + "base": "FireRed", + "version": "2.8", + "status": "Complete", + "generation": "Gen III", + "developer": "André Freitas", + "release_date": "2024", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Dark_Worship/IMG_9405-94ad7862775daa79.png", + "source": "https://www.mediafire.com/file/5alfuwfk4yjoa32/Dark+Worship+ENGLISH+COMPLETE.Gba/file", + "library_path": "/storage1/Emulation/roms/gba/Dark Worship ENGLISH COMPLETE.Gba", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Dark_Worship", + "type": [ + "Expansion", + "New Experience" + ], + "tags": [ + "hack", + "platform/gba", + "base/firered", + "status/complete", + "type/expansion", + "type/newexperience", + "source/discord" + ], + "summary": "A Fire Red Hack with a New Region, New Story, Mega Evolution, Z Moves, Dynamax/Gigantamax, YouTubers as NPCs & Much More!\n* Dark Worship is a hack with its own story that takes place in the Seafood Region.\n* An Evil Sect invades the region to try to capture the Holy Pokémon.\n* Do they intend to do any harm to the Pokémon world?\n* Our protagonist will go on a journey to win the title of champion of the Seafood Region.\n* On your adventure, you will meet familiar characters from other games, make friends, and battle against the terrible Sect of Evil.\n\n-Rom link : https://www.mediafire.com/file/5a", + "notability": "", + "story": "", + "features": [ + "New Region", + "New Story", + "24 Starters", + "Mega Evolution", + "Z Moves", + "Dynamax/Gigantamax", + "YouTubers as NPCs", + "DexNav", + "Exp. Share", + "Several Side Quests that will give you important items", + "NDS-style graphics", + "Items that replace HMs (Crazy Axe, Crazy Mass, Crazy Climber e Crazy Hammer)", + "Possibility to choose the starter Treecko with Physical or Special Split", + "Pokemon up to Hisui", + "Puzzles during the journey and inside the gyms", + "All TMs available", + "Poke Center with item shop and NPC with some options. (Name Rater, Move Relearn, Move deleter e Move Tutor)", + "You can choose the difficulty level at the start.(Easy, Normal, Hard & Expert)", + "NPCs with reference to real people" + ], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/5alfuwfk4yjoa32/Dark+Worship+ENGLISH+COMPLETE.Gba/file" + }, + { + "label": "Info / thread", + "url": "https://www.pokeharbor.com/2024/08/pokemon-dark-worship-cheats/" + } + ] + }, + { + "stem": "DarkFire", + "title": "Pokémon DarkFire", + "platform": "GBA", + "base": null, + "version": null, + "status": null, + "generation": "Gen III", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_DarkFire/Pokemon-Darkfire-GBA-1-24236a76f9a44f5d.png", + "source": "https://www.mediafire.com/file/mnna16tsjkn6uth/darkfireb2.1.3.zip/file", + "library_path": "/storage1/Emulation/roms/gba/darkfireb2.1.3.gba", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_DarkFire", + "type": [ + "New Experience" + ], + "tags": [ + "hack", + "platform/gba", + "type/newexperience", + "source/discord" + ], + "summary": "Pokémon have been acting strange lately. Some are even going missing. Others simply won't follow their trainer's commands. The region's most formidable scientists have blamed this epidemic on a severe Pokémon virus, however, any evidence is non-conclusive.\n\nYou are a youngster living in the beautiful region of Tenjo, located east of Hoenn. After saving the local professor's facility from a Rattata infestation, your friend, Tyler, thinks it's a good idea to set off with you to explore the region and its beauty.\n\nAfter some time exploring, you are confronted by a suspicious man who says he has b", + "notability": "", + "story": "", + "features": [ + "Brand New Region to Explore!", + "Completely Custom Music", + "Gen 7 Battle Mechanics", + "Double Wild Battles", + "Beautiful Battle Backgrounds", + "Gyms Replaced With Battle Tournaments", + "EXP From Catching Pokémon", + "Dizzyegg's Amazing Battle Engine", + "Dark & Gritty Storyline", + "Infinite TMs", + "252 EV Cap", + "Stat Nature Colors", + "Running Indoors", + "Battle Tournaments Are Randomized", + "Brand New Movement Mechanics", + "[Download Pokemon DarkFire]()" + ], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/mnna16tsjkn6uth/darkfireb2.1.3.zip/file" + } + ] + }, + { + "stem": "Decay", + "title": "Pokémon Decay", + "platform": "PC", + "base": null, + "version": null, + "status": null, + "generation": "Joiplay/RPGXP", + "developer": "AlmAchAndAlee", + "release_date": "2025-07-25", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Decay/k6lh1qg-f330b803933db1c1.gif", + "source": "https://www.mediafire.com/file/mudp5hlwda6wkib/Pokémon+Decay+1.0.2.rar/file", + "library_path": "/storage1/labdata/romhacks/library/Pokemon_Decay/", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Decay", + "type": [ + "Difficulty", + "Expansion" + ], + "tags": [ + "hack", + "platform/pc", + "type/difficulty", + "type/expansion", + "source/discord" + ], + "summary": "Catalogued from the Discord ROM-hack archive. See links below.", + "notability": "", + "story": "Pokémon Decay is supposed to be a best of the first four generations.\nIt's intended to give the player as much nostalgia as possible by referring to the storylines of the old games.\n\nDue to natural disasters the four regions Kanto, Johto, Hoenn and Sinnoh collided and became one big Region, the Talem Region.\nThe player wakes up and can't remember what happened. He has to find out what caused those natural disasters.\n\nThe flow of the game is similar to the original Pokémon Games:\nThe player has to defeat 8 Gym Leaders and the Elite Four while facing nearly all the well-known characters and evil teams of the first generations.\n\nThe Talem Region is inhabited by Pokémon from the first four generations.\n\nLater Evolutions of those Pokémon are also included.\n\nFor self-preservation-reasons they had to adjust themself to the new environment.\n\nThat's why many of them had to change their typing.\nThose Pokémon are known as Delta Species.\n\nIn total there are 131 Delta Species and 40 Evolutions and Pre-Evolutions of already existing Pokémon.", + "features": [ + "25+ hours of gameplay", + "Mechanics up to Generation 8", + "New moves and abilities", + "HMs as Key Items", + "Costumizable Outfits", + "Post-Game with facilities like in Emerald's Battle Frontier", + "Quality of Life Upgrades", + "Nuzlocke Mode (Level Caps, Disabled EVs, Infinite Candies)", + "If you want to enable the mode use the password \"Nuzlocke\" on the PC in Elm's tent before fighting the rival." + ], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/mudp5hlwda6wkib/Pokémon+Decay+1.0.2.rar/file" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/mudp5hlwda6wkib/Pok%C3%A9mon+Decay+1.0.2.rar/file" + }, + { + "label": "Guide / docs", + "url": "https://docs.google.com/spreadsheets/u/0/d/1hpsdyCwlezxDwflp855EAXMj7B3_nf_1sF4WqWCwpiY/htmlview?pli=1#gid=0" + }, + { + "label": "Guide / docs", + "url": "https://docs.google.com/spreadsheets/u/0/d/16uTzZk9QQ8ihbiQZkzXL5YOwSXiAZxE0USqE9qrRp1Q/htmlview#gid=0" + } + ] + }, + { + "stem": "Delta Emerald", + "title": "Pokémon Delta Emerald", + "platform": "3DS", + "base": null, + "version": null, + "status": "Complete", + "generation": "Gen VI", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Delta_Emerald/FB_IMG_1759039570459-1-7c0ea071859ee4a1.jpg", + "source": "https://www.mediafire.com/file/qc8h8n6lrp8h5q8/PKM_DE_3DS.7z/file", + "library_path": "/storage1/Emulation/roms/3ds/PKM DE 3DS.7z", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Delta_Emerald", + "type": [ + "Expansion" + ], + "tags": [ + "hack", + "platform/3ds", + "status/complete", + "type/expansion", + "source/discord" + ], + "summary": "Pokémon Delta Emerald or Pokémon Delta Emerald is a complete multilanguage hack rom for 3DS that has as Base ROM Pokémon Sapphire Alpha in which it has an Improved Story.", + "notability": "", + "story": "", + "features": [ + "New Leading Characters.", + "Progressive difficulty.", + "New Gym Leaders.", + "New High Command and Champion of the Pokémon League.", + "Hoenn Starters initials.", + "The story is the original, with some new events.", + "Greater Difficulty.", + "New wild Pokémon locations of the routes and caves.", + "New Delta Episode with Plubio and Máximo.", + "Pokémon from 1st to 6th Generation.", + "All mega evolutions that exist up to 6 sixth generation.", + "Elite Four with Mega Evolutions.", + "[Download Link]()" + ], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/qc8h8n6lrp8h5q8/PKM_DE_3DS.7z/file" + } + ] + }, + { + "stem": "Delta Fusion", + "title": "Pokémon Delta Fusion", + "platform": "GBA", + "base": null, + "version": "Completed", + "status": null, + "generation": null, + "release_date": "2021", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Delta_Fusion/49e4d2dd-c531-409a-a694-22c0cad626ce-2ac357d0cbb26c6b.png", + "source": "https://www.pokeharbor.com/2021/08/pokemon-delta-fusion/", + "library_path": "—", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Delta_Fusion", + "type": [], + "tags": [ + "hack", + "platform/gba", + "source/discord" + ], + "summary": "[Pokemon Delta Fusion](https://www.pokeharbor.com/2021/08/pokemon-delta-fusion/) Especificaciones: Descargar ROM de Pokémon Delta Fusion GBA pre-parcheada Creador: Delta Versión: Completa Basado en: FireRed Actualizado: 24 de enero de 2018 Descripción: Un juego creado por fans basado en FireRed, con Pokémon de las generaciones 1 a 8. Características: • Fusiona diferentes Pokémon para crear nuevas especies nunca antes vistas. • Nuevos personajes y mapas. • Se desarrollarán diferentes eventos continuamente. Instrucciones de descarga: Descarga y descomprime el archivo con un gestor de archivos y ejecútalo con JoiPlay. Notas: Para PC y emuladores de teléfono. ¡DISFRUTA! English Specs: Download Pre-Patched Pokemon Delta Fusion GBA Rom Hack of: FireRed Updated: January 24, 2018", + "notability": "", + "story": "", + "features": [ + "Fuse many different Pokemon together and create new kinds which have never been seen before", + "New characters and maps", + "Different events will happen continuously", + "Notes:", + "For PC and Phone Emulator", + "ENJOY!" + ], + "links": [ + { + "label": "Info / thread", + "url": "https://www.pokeharbor.com/2021/08/pokemon-delta-fusion/" + } + ] + }, + { + "stem": "Deserted", + "title": "Pokémon Deserted", + "platform": "PC", + "base": null, + "version": null, + "status": null, + "generation": null, + "release_date": "2022", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Deserted/TCjUt.qR4e-small-Pokemon-Deserted-A-Short--102745be5cc33d62.jpg", + "source": "https://www.pokeporto.com/pokemon-deserted/", + "library_path": "—", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Deserted", + "type": [ + "QoL" + ], + "tags": [ + "hack", + "platform/pc", + "type/qol", + "source/discord" + ], + "summary": "System: PC/RPGXP Last Updated: August 2, 2022", + "notability": "", + "story": "", + "features": [ + "> Collectables", + "> Puzzles", + "> Quality of life features", + "> Gen 1 -8 & Hisui Forms Included", + "> Boss Battles", + "> Game isn't strictly linear", + "> Hidden Surprises throughout story", + ":Download: Download [Here](https://www.pokeporto.com/pokemon-deserted/)" + ], + "links": [ + { + "label": "Link", + "url": "https://www.pokeporto.com/pokemon-deserted/" + } + ] + }, + { + "stem": "Divine Sword & Blessed Shield", + "title": "Pokémon Divine Sword & Blessed Shield", + "platform": null, + "base": null, + "version": null, + "status": null, + "generation": null, + "release_date": "2021", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Divine_Sword_Blessed_Shield/IMG_8880-4250c0dd96a72dd9.png", + "source": "https://drive.google.com/file/d/13hUyTpYdPV2FX4lGrPM_uuiUk2SFQhPt/view", + "library_path": "—", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Divine_Sword_Blessed_Shield", + "type": [ + "Difficulty", + "QoL" + ], + "tags": [ + "hack", + "type/difficulty", + "type/qol", + "source/discord" + ], + "summary": "Hack of: Pokemon Sword & Shield System: Nintendo Switch Last Updated: June 21, 2021", + "notability": "", + "story": "", + "features": [ + "> Completely reworked Raid rewards system", + "> All 600 Pokémon from Sword & Shield (including DLC) catchable outside of the Isle of Armor and Crown Tundra", + "> Overhauled boss battles", + "> Quality of life features such as purchasable EV reducers", + "> Shop overhauls in order to make competitive items easily accessible", + "> Healing items disabled during trainer battles (THIS IS OPTIONAL)", + "> Battle Items removed from the game (not optional, as X items are the new purchasable EV reducing items)", + "> Edited Adventure Guide for in game documentation.", + ":DownloadArrow: Download Files from here", + "[Installation Guide](https://drive.google.com/file/d/13hUyTpYdPV2FX4lGrPM_uuiUk2SFQhPt/view)" + ], + "links": [ + { + "label": "Download", + "url": "https://drive.google.com/file/d/13hUyTpYdPV2FX4lGrPM_uuiUk2SFQhPt/view" + } + ] + }, + { + "stem": "Doubles Fire Red", + "title": "Pokémon Doubles Fire Red", + "platform": "GBA", + "base": null, + "version": "of the game Firered that intro", + "status": null, + "generation": "Gen III", + "developer": "TheLastMudkip", + "release_date": "2023", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Doubles_Fire_Red/Pokemon-Doubles-FireRed-1-8cbca5de7f91592e.jpg", + "source": "https://www.mediafire.com/file/tky5454fuyhi4zt/Pokemon+-+Doubles+FireRed+1.0.gba/file", + "library_path": "/storage1/Emulation/roms/gba/Pokemon - Doubles FireRed 1.0.gba", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Doubles_Fire_Red", + "type": [ + "New Experience" + ], + "tags": [ + "hack", + "platform/gba", + "type/newexperience", + "source/discord" + ], + "summary": "Doubles Firered is an improved version of the game Firered that introduces exciting double battles from the third generation. This enhancement hack preserves all the original game mechanics, providing players with an opportunity to experience the distinctive features of double battles that were introduced in the first generation of Pokemon games.", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/tky5454fuyhi4zt/Pokemon+-+Doubles+FireRed+1.0.gba/file" + } + ] + }, + { + "stem": "Dreams", + "title": "Pokémon Dreams", + "platform": "GBA", + "base": null, + "version": null, + "status": null, + "generation": "Gen III", + "developer": "MonopolyRubix", + "release_date": "2021", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Dreams/FB_IMG_1705083511980-f17c96612595cac2.jpg", + "source": "https://www.mediafire.com/file/m8x06gnvpkbznly/U_FR_Dreams_v.1.5.1.gba.zip/file", + "library_path": "/storage1/Emulation/roms/gba/U_FR_Dreams_v.1.5.1.gba.zip", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Dreams", + "type": [ + "Expansion", + "New Experience" + ], + "tags": [ + "hack", + "platform/gba", + "type/expansion", + "type/newexperience", + "source/discord" + ], + "summary": "Pokémon Dreams is a hack set in a new region with a new story. The protagonist, a traveling trainer, arrives in the region of Solda. In the small community of Thicket Town, they meet a boy who seeks to live up to his brother, the local gym leader. This is their journey through the region as they meet new characters and strive for the Pokémon League.\n\nThis hack is designed with a focus on characters and worldbuilding. Though it tells a linear story, the map is sprinkled with optional areas containing useful items and pokémon to reward exploration.\n\nThis game is SCREAMING with features from the", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/m8x06gnvpkbznly/U_FR_Dreams_v.1.5.1.gba.zip/file" + } + ] + }, + { + "stem": "Dreamstone Mysteries", + "title": "Pokémon Dreamstone Mysteries", + "platform": "GBA", + "base": null, + "version": null, + "status": "Complete", + "generation": "Gen III", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Dreamstone_Mysteries/Screenshot-2025-06-19-at-11.53.15_PM-1600x-b64f701055936720.png", + "source": "https://www.mediafire.com/file/5bcf7p6lk569w9w/Pokemon+Dreamstone+Mysteries+", + "library_path": "/storage1/Emulation/roms/gba/Pokemon Dreamstone Mysteries (1).gba", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Dreamstone_Mysteries", + "type": [ + "Expansion", + "New Experience" + ], + "tags": [ + "hack", + "platform/gba", + "status/complete", + "type/expansion", + "type/newexperience", + "source/discord" + ], + "summary": "Explore the brand-new region of Cormoria with your trusted companions on an exciting journey through icy peaks, volcanic craters, marshy swamps, city sewers, and more. Your mission: find the missing Professor Tenebris and uncover the secrets of the mysterious Dreamstones she discovered. What makes these stones so powerful—and why is Team Somber so desperate to get their hands on them? It's up to you to stop their dark ambitions before it's too late.", + "notability": "", + "story": "", + "features": [ + "**Explore a Whole New Region**", + "Discover the never-before-seen land of Cormoria with a completely original storyline and setting.", + "**Fresh Gameplay Innovations**", + "Enjoy exciting new twists on the classic Pokémon formula that enhance and modernize the core experience.", + "**Mature Themes with Classic Charm**", + "Engaging sidequests and stories that explore deeper, more adult ideas—while keeping the fun and wonder of the Pokémon world alive.", + "**Handpicked Pokédex** (~300 Pokémon)", + "A thoughtfully curated selection from all generations, chosen for balance, variety, and the joy of finding something unexpected around every corner.", + "**Less Grind, More Play**", + "Early access to EXP Share, stat-boosting mints, bottle caps, and a brand-new EV editor to make training smoother and more fun.", + "**Visual Upgrades**", + "Beautifully updated tilesets, sleek new menus, and clean, minimalist textboxes for a modern look and feel.", + "## __Tons of Quality-of-Life Features__", + "Pokémon followers.", + "No HMs required—just use abilities freely!", + "Faster battles for smoother gameplay.", + "Unique encounters and interactive overworld Pokémon.", + "Built-in quest tracking system.", + "Mega Evolutions.", + "[Mediafire](https://www.mediafire.com/file/5bcf7p6lk569w9w/Pokemon+Dreamstone+Mysteries+(1).gba/file)" + ], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/5bcf7p6lk569w9w/Pokemon+Dreamstone+Mysteries+" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/5bcf7p6lk569w9w/Pokemon+Dreamstone+Mysteries+(1" + } + ] + }, + { + "stem": "Elaf Gold", + "title": "Pokémon Elaf Gold", + "platform": "GBA", + "base": "FireRed", + "version": null, + "status": null, + "generation": "Gen III", + "developer": "Elaf", + "release_date": "2024-01-17", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Elaf_Gold/FB_IMG_1708477814153-1-8a0351951acdb106.jpg", + "source": "https://www.mediafire.com/file/kp7uvywwtb4s3ph/ElafGold.zip/file", + "library_path": "/storage1/Emulation/roms/gba/ElafGold.zip", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Elaf_Gold", + "type": [ + "Difficulty", + "Expansion" + ], + "tags": [ + "hack", + "platform/gba", + "base/firered", + "type/difficulty", + "type/expansion", + "source/discord" + ], + "summary": "Pokemon Elaf Gold is a GBA ROM Hack by Elaf based on Pokemon Fire Red in English. And It is now available to download. It was last updated on January 17, 2024. Based on Fire Red and heavily based on Pokemon Gold and Liquid Crystal.", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/kp7uvywwtb4s3ph/ElafGold.zip/file" + } + ] + }, + { + "stem": "Elite Redux", + "title": "Pokémon Elite Redux", + "platform": "GBA", + "base": "Emerald", + "version": "2.65.3b", + "status": "Complete", + "generation": "Gen 1–8", + "developer": "Darky (Darkyy92x)", + "release_date": "2026-03-26", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Elite_Redux/081637-b499434b3fd35989.png", + "homepage": "https://eliteredux.net/", + "source": "https://www.hackdex.app/hack/elite-redux", + "library_path": "roms/gba/Hacks/Pokemon - Elite Redux (Hack).gba", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Elite_Redux", + "type": [ + "Difficulty", + "Expansion" + ], + "tags": [ + "hack", + "platform/gba", + "base/emerald", + "status/complete", + "type/difficulty", + "type/expansion", + "source/discord" + ], + "summary": "Pokémon Elite Redux is a multi-ability difficulty hack of Emerald by Darky, built around one wild mechanic: every Pokémon can run up to three switchable abilities plus up to three fixed 'innates' — effectively several abilities at once — opening completely new battle strategies. It pairs custom competitive trainer teams and smart AI with new Redux forms, fresh Mega Evolutions and modern quality-of-life.", + "notability": "A favourite of theory-crafters and competitive players — its multi-ability system makes team-building uniquely deep among difficulty hacks.", + "story": "", + "features": [ + "Up to ~6 simultaneous abilities per Pokémon (3 switchable + 3 innate)", + "Custom competitive movesets and smarter AI on every trainer", + "New Redux forms and brand-new Mega Evolutions", + "Multiple difficulty modes", + "Advanced DexNav, updated graphics, modern menus", + "Gen 1–7 fully implemented plus many Gen 8 Pokémon" + ], + "links": [ + { + "label": "Source / info", + "url": "https://www.hackdex.app/hack/elite-redux" + }, + { + "label": "Lookup", + "url": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Elite%20Redux%20rom%20hack" + } + ] + }, + { + "stem": "Elysium", + "title": "Pokémon Elysium", + "platform": "GBA", + "base": null, + "version": null, + "status": "Ongoing", + "generation": "Gen III", + "developer": "BIKaiser", + "release_date": "2024", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Elysium/IMG_6429-e5441f814e8a9f48.webp", + "source": "https://www.mediafire.com/file/h287k58i2z38v4b/Elysium+Part+A+", + "library_path": "/storage1/Emulation/roms/gba/Elysium Part B (v2.0).gba", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Elysium", + "type": [ + "New Experience" + ], + "tags": [ + "hack", + "platform/gba", + "status/ongoing", + "type/newexperience", + "source/discord" + ], + "summary": "This is a lore-focused Fire Red hack designed for casual players. It was developed several years ago, with ongoing content additions and fixes until recently. Therefore, don't anticipate modern features. It can be time-consuming, especially if you thoroughly explore everything and engage in various side quests. The game is divided into two parts, labeled A and B. You'll need to use save states to transition your progress from Part A to Part B\n\nWhen prompted by the game, you will need to use your most recent save file (saving state) to continue the story in Part B. Depending on your emulator, y", + "notability": "", + "story": "In terms of the story, the game comprises a prologue, four chapters, and a brief epilogue. In regards to difficulty, it offers a greater challenge compared to traditional Pokémon games, though most players should not encounter significant difficulty in completing it.\n\nThis game follows the journey of a 16-year-old girl hailing from the serene island of Crysta. Her aspiration is to attain the title of Pokémon Champion, vying for one of the coveted eight positions in the finals held on the enigmatic island of Elysium. Little does she know, an ancient malevolent force, orchestrating a scheme that has been in motion for over a century, threatens not just her and her companions but the entire world itself.", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/h287k58i2z38v4b/Elysium+Part+A+" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/aisbmyoa65z15zu/Elysium+Part+B+" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/h287k58i2z38v4b/Elysium+Part+A+(v2.0" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/aisbmyoa65z15zu/Elysium+Part+B+(v2.0" + } + ] + }, + { + "stem": "Emerald 20", + "title": "Pokémon Emerald 20", + "platform": "GBA", + "base": null, + "version": null, + "status": null, + "generation": "Gen III", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Emerald_20/Pokemon-Emerald-20-GBA-62ee0a28d13949e2.png", + "source": "https://www.mediafire.com/file/x6av3dm4bal5h6g/e20+v1.0.zip/file", + "library_path": "/storage1/Emulation/roms/gba/e20 v1.0.zip", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Emerald_20", + "type": [], + "tags": [ + "hack", + "platform/gba", + "source/discord" + ], + "summary": "Emerald 20 is a nostalgic, vanilla+ ROM hack of Pokémon Emerald created to celebrate the game's 20th anniversary. Inspired by a fan-made Gen 3 VGC-style format, it introduces more double battles, more references to Pokémon Colosseum and XD, and fresh battle challenges—all without straying far from the classic Emerald experience.", + "notability": "", + "story": "", + "features": [ + "Introduces two new types: Aural (sound/wave-based) and Astral (space-themed)", + "Aural-type is a special type that focuses primarily on sound waves but also extends to include other types of inaudible waves. Moves like UPROAR, GROWL, and SONICBOOM are Aural-type, of course, but so are moves like FOCUS BLAST, AURA SPHERE, and VACUUM WAVE.", + "Astral-type is a special type that focuses on Pokemon from \"out-of-town.\" This type is very rare, and it's worth going out of your way to catch some of these Pokemon. MOONBLAST, METEOR BEAM, and SWIFT are some examples of Astral-type moves.", + "Dragon-type is now physical, buffing classic Pokémon like Dragonite", + "Heavy focus on double battles and Gen 3 VGC-style gameplay", + "References and mechanics inspired by Pokémon Colosseum and XD: Gale of Darkness", + "New battle formats and unique strategic challenges", + "Early playable build; more event content to be added", + "[Download Link]()" + ], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/x6av3dm4bal5h6g/e20+v1.0.zip/file" + } + ] + }, + { + "stem": "Emerald Azure", + "title": "Pokémon Emerald Azure", + "platform": "GBA", + "base": "Emerald", + "version": "0.5.3", + "status": "Beta", + "generation": "Multi-gen", + "source": "https://www.hackdex.app/hack/pokemon-emerald-azure", + "library_path": "roms/gba/Hacks/Pokemon - Emerald Azure (Hack).gba", + "play_status": "Unplayed", + "type": [ + "New Experience", + "Expansion" + ], + "tags": [ + "hack", + "platform/gba", + "base/emerald", + "status/beta", + "type/newexperience", + "type/expansion" + ], + "summary": "An in-development new-region Emerald-expansion hack (early/beta).", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Source / info", + "url": "https://www.hackdex.app/hack/pokemon-emerald-azure" + }, + { + "label": "Lookup", + "url": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Emerald%20Azure%20rom%20hack" + } + ] + }, + { + "stem": "Emerald Extended Cut", + "title": "Pokémon Emerald Extended Cut", + "platform": "GBA", + "base": "Emerald", + "version": "Classic+ 1.3", + "status": "Complete", + "generation": "Gen 3", + "source": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Emerald%20Extended%20Cut%20rom%20hack", + "library_path": "roms/gba/Hacks/Pokemon - Emerald Extended Cut (Hack).gba", + "play_status": "Unplayed", + "type": [ + "Vanilla+", + "QoL" + ], + "tags": [ + "hack", + "platform/gba", + "base/emerald", + "status/complete", + "type/vanilla+", + "type/qol" + ], + "summary": "Emerald with restored/expanded content and QoL while staying close to the original Hoenn experience.", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Lookup", + "url": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Emerald%20Extended%20Cut%20rom%20hack" + } + ] + }, + { + "stem": "Emerald Imperium", + "title": "Pokémon Emerald Imperium", + "platform": "GBA", + "base": "Emerald", + "version": "1.3.1", + "status": "Complete", + "generation": "Multi-gen", + "developer": "Pokemon Radical Red", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Emerald_Imperium/images_5-f25d9aeebb34e9c9.jpg", + "source": "https://www.hackdex.app/hack/emerald-imperium", + "library_path": "roms/gba/Hacks/Pokemon - Emerald Imperium (Hack).gba", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Emerald_Imperium", + "type": [ + "Expansion", + "Difficulty" + ], + "tags": [ + "hack", + "platform/gba", + "base/emerald", + "status/complete", + "type/expansion", + "type/difficulty" + ], + "summary": "A content- and postgame-heavy Emerald-expansion hack with challenging fights and lots of endgame.", + "notability": "", + "story": "", + "features": [ + "Almost all Pokemon from Gens 1 - 9 are available (still need to add some Legendaries)", + "Vastly improved battle engine with modern mechanics and much smarter AI", + "Configurable Minimal Grinding Mode (MGM, described later)", + "Built-in Difficulty Modes: Easy and Normal for now, would definitely be open to adding more options if there is interest (described later)", + "Built-in Randomizer with configurable species and ability randomization (described later)", + "Built-in Level Caps", + "Mega Evolution", + "New custom Megas have been added for several Pokemon, including Gen 4 starters, and several Gigantamax forms converted to Megas", + "Several Gen 4 characters have been added", + "DexNav", + "Toggleable following Pokemon", + "Move power calculator in battle", + "Sleep Clause", + "Increased difficulty of trainer battles, with a focus on Gym Leaders/Elite 4, Rivals, Team Aqua/Magma battles, route Mini-Bosses, and optional Mini-Bosses", + "Several additional optional Boss Trainer battles", + "Balance updates for Pokemon to match Radical Red", + "Differences from the RR balance changes are explicitly noted in the documentation, but the goal for this was to be able to match the data on https://dex.radicalred.net/ and to be able to reuse the damage calculator at https://calc.radicalred.net/.", + "Some fairly small story tweaks", + "Post-game Legendary events including access to Mystery Gift", + "__**Download:**__", + "[Mediafire](https://www.mediafire.com/file/0m5y1aqdi0892uk/Imperium+(World)+(v1.3.1).zip/file)" + ], + "links": [ + { + "label": "Source / info", + "url": "https://www.hackdex.app/hack/emerald-imperium" + }, + { + "label": "Lookup", + "url": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Emerald%20Imperium%20rom%20hack" + } + ] + }, + { + "stem": "Emerald Kaizo", + "title": "Pokémon Emerald Kaizo", + "platform": "GBA", + "base": "Emerald", + "version": null, + "status": "Complete", + "generation": "Gen 3", + "developer": "SinisterHoodedFigure", + "release_date": "2020-03-14", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Emerald_Kaizo/kaizo_6-5f56c5a37975c4bb.png", + "source": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Emerald%20Kaizo%20rom%20hack", + "library_path": "roms/gba/Hacks/Pokemon - Emerald Kaizo (Hack).gba", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Emerald_Kaizo", + "type": [ + "Difficulty" + ], + "tags": [ + "hack", + "platform/gba", + "base/emerald", + "status/complete", + "type/difficulty" + ], + "summary": "The classic Emerald kaizo — every gym/E4 team is maxed-out and merciless.", + "notability": "", + "story": "", + "features": [ + "No need for excessive grinding", + "Cannot use items during battle", + "Gym leaders have six \"high quality\" pokemon", + "Catch all 386 pokemon", + "Altered movepools for majority of the Pokemon", + "Event tickets for legendary pokemon", + "Evolution stones can be bought at Fallarbor town", + "Slowking and Huntail evolve by Water Stone", + "Umbreon and Espeon evolve by Moon and Sun Stone", + "Hoenn starters in Evergrande city", + ":Download: [Mediafire](https://www.mediafire.com/file/6wtdj2pn4hj0v9i/PK_EMR_Kaizo_v2.0.zip/file)" + ], + "links": [ + { + "label": "Lookup", + "url": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Emerald%20Kaizo%20rom%20hack" + } + ] + }, + { + "stem": "Emerald Legacy", + "title": "Pokémon Emerald Legacy", + "platform": "GBA", + "base": "Emerald", + "version": "1.1.4", + "status": null, + "generation": null, + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Emerald_Legacy/Pokemon-Emerald-Legacy-5d9de5351013b8e3.webp", + "source": "https://drive.internxt.com/sh/file/03c44767-6c2a-4657-9306-0b7eca690178/0b450e48092c1f4acecb328a61ba5916d3431699b5923d45199d65cea8bce183", + "library_path": "—", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Emerald_Legacy", + "type": [ + "Difficulty", + "Expansion" + ], + "tags": [ + "hack", + "platform/gba", + "base/emerald", + "type/difficulty", + "type/expansion", + "source/discord" + ], + "summary": "Pokemon Emerald Legacy Release Date", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://drive.internxt.com/sh/file/03c44767-6c2a-4657-9306-0b7eca690178/0b450e48092c1f4acecb328a61ba5916d3431699b5923d45199d65cea8bce183" + } + ] + }, + { + "stem": "Emerald Party Randomizer Plus", + "title": "Pokémon Emerald Party Randomizer Plus", + "platform": "GBA", + "base": "Emerald", + "version": null, + "status": null, + "generation": "Gen III", + "developer": "Souma", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Emerald_Party_Randomizer_Plus/emerald2Bparty2Brandomizer-1-9988d81783ebdbf7.jpg", + "source": "https://www.mediafire.com/file/x7s10zv77m3whzv/PKMN_EMR_PARTY_RANDOMIZER.zip/file", + "library_path": "/storage1/Emulation/roms/gba/PKMN EMR PARTY RANDOMIZER.GBA", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Emerald_Party_Randomizer_Plus", + "type": [], + "tags": [ + "hack", + "platform/gba", + "base/emerald", + "source/discord" + ], + "summary": "A while ago, Googleben released a Pokemon Emerald Party Randomizer for the streamer Smallant, which randomizes all of the Pokemon of your party at the beginning of every battle. This mod gives the player gets a real sense of progression and can influence a bit what moves a Pokemon can receive.", + "notability": "", + "story": "", + "features": [ + "Every Pokemon is randomized into a random specie at the beginning of each battle", + "Pokemon preserve their EV points, IV points, contest conditions, current HP percentage, XP percentage, shiny, pokerus, and nickname", + "Each Pokemon receive their last 4 level-up moves for their moveset", + "Legendary Pokemons are rarer to get when low level", + "Every Pokemon has a chance to obtain an Egg move", + "Every Pokemon can learn moves from the TMs/HMs you currently have in your bag", + "HMs can be deposited into the PC", + "Support moves will never override an offensive move, and a Pokemon will always keep its strongest STAB moves", + "Smeargle gets an entirely randomized moveset" + ], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/x7s10zv77m3whzv/PKMN_EMR_PARTY_RANDOMIZER.zip/file" + } + ] + }, + { + "stem": "Emerald Rogue 2.0", + "title": "Pokémon Emerald Rogue 2.0", + "platform": "GBA", + "base": "how far you are into the journey", + "version": "v2.0.1a", + "status": "Complete", + "generation": null, + "release_date": "2024", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Emerald_Rogue_2.0/Pokemon-Emerald-Rogue-1024x683-2af2ee14cb5ef931.png", + "source": "https://gbacodes.com/pokemon-emerald-rogue/", + "library_path": "—", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Emerald_Rogue_2.0", + "type": [ + "Difficulty", + "Expansion" + ], + "tags": [ + "hack", + "platform/gba", + "base/howfaryouareintothejourney", + "status/complete", + "type/difficulty", + "type/expansion", + "source/discord" + ], + "summary": "**Creator**: Pokabbie **Version**: v2.0.1a **Base ROM**: Emerald **Updated**: July 05, 2024 [Source Website](https://gbacodes.com/pokemon-emerald-rogue/) ## __ Description__ > When you start an adventure, the paths you take, the encounters you have, and the items you find are randomly selected based on how far you are into the journey. After traveling a certain distance, you'll meet a random gym leader. Their team will be selected based on their type, and as you advance further, both gym leaders and other trainers will use stronger and more challenging Pokémon. > If you can reach the champion and defeat them, you'll complete the run! > Once you finish or fail a run, you'll return to a central hub where you can buy permanent items and catch new starter Pokémon for the next adventure. As you progress further, you'll unlock more buildings and NPCs in this hub to help you prepare for future runs. ## __Features__ - Pokemon from Generation 1 to 9, including DLC pokemons. - Tera & Dynamax. - Following pokemon System. - Mega Evolution and Z Moves. - Randomly chosen routes. - Procedural items, trainers & wild encounters. - Multiple game settings e.g. prevent over levelling, trainer difficulty, double battle mode. - Quest & reward system to guide you and see how you handle different challenges. - Rare legendary encounters. - Mart & Move tutor contents change as you progress. - Trade evolutions now just require the mon to be leveled up while holding the item (Link cable is for standard trade evos). - Friendship/Beauty evos are now just flat level 20 evos. - Shiny rate has been drastically increased (Now is 1/100). **Expanded (EX) Version** This is the recommended version. This version contains modern improvements e.g. new battle items, abilities, fairy type, physical/special split etc. **Vanilla Version** Just standard Pokemon Emerald battle mechanics with no changes other than those mentioned in Subtle Changes from base game.", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Link", + "url": "https://gbacodes.com/pokemon-emerald-rogue/" + } + ] + }, + { + "stem": "Emerald Rogue", + "title": "Pokémon Emerald Rogue", + "platform": "GBA", + "base": "Emerald", + "version": "2.1.2-EX", + "status": "Ongoing", + "generation": "Gen 1–9 (EX)", + "developer": "Pokabbie", + "release_date": "2024", + "homepage": "https://www.pokecommunity.com/threads/pokemon-emerald-rogue.479406/", + "source": "https://github.com/Pokabbie/pokeemerald-rogue", + "library_path": "roms/gba/Hacks/Pokemon - Emerald Rogue (Hack).gba", + "play_status": "Unplayed", + "type": [ + "Roguelite", + "Difficulty" + ], + "tags": [ + "hack", + "platform/gba", + "base/emerald", + "status/ongoing", + "type/roguelite", + "type/difficulty" + ], + "summary": "Pokémon Emerald Rogue reimagines Emerald as a roguelite. Made by Pokabbie, every run sends you through procedurally chosen routes, encounters and items toward a gauntlet of randomised gym leaders and a final champion; clear or fail and you return to a hub to spend permanent currency and pick new starters. The recommended EX version layers in Gen 1–9 Pokémon, Mega/Z/Dynamax/Tera, the Fairy type and the physical/special split.", + "notability": "The standout roguelite hack — run-based, endlessly replayable, and a frequent recommendation for players who've exhausted linear hacks.", + "story": "", + "features": [ + "Procedural runs — routes, encounters and items chosen each run", + "Randomised Gym-Leader gauntlet that escalates in difficulty", + "Hub meta-progression: permanent items and new 'starter' catches", + "Two builds: feature-rich EX or pared-back Vanilla", + "EX adds Gen 1–9, Mega/Z-Moves/Dynamax/Tera, Fairy type, phys/special split", + "Gym Leaders & Elite Four from all nine generations unlock after a first clear" + ], + "links": [ + { + "label": "Source / info", + "url": "https://github.com/Pokabbie/pokeemerald-rogue" + }, + { + "label": "Lookup", + "url": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Emerald%20Rogue%20rom%20hack" + } + ] + }, + { + "stem": "Emerald Seaglass", + "title": "Pokémon Emerald Seaglass", + "platform": "GBA", + "base": "Emerald", + "version": "3.0", + "status": "Complete", + "generation": "Multi-gen", + "developer": "Nemo622", + "release_date": "2024", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Emerald_Seaglass/image-3e8a29001d34c834.png", + "source": "https://www.hackdex.app/hack/pokemon-emerald-seaglass", + "library_path": "roms/gba/Hacks/Pokemon - Emerald Seaglass (Hack).gba", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Emerald_Seaglass", + "type": [ + "Vanilla+", + "QoL", + "Expansion" + ], + "tags": [ + "hack", + "platform/gba", + "base/emerald", + "status/complete", + "type/vanilla+", + "type/qol", + "type/expansion" + ], + "summary": "Emerald modernized via the expansion — physical/special split, new species/forms, and heavy QoL while keeping Hoenn's story.", + "notability": "", + "story": "", + "features": [ + "The Player Characters are now Brendan and May, with original sprites by goncas!", + "Gym Leaders, Elite Four Members, Frontier Brains, and a few key NPCs now have dedicated sprites reflecting their true appearance! No more Steven with a cape! .", + "All Gen 1-3 Pokémon: Cross-generation evolutions - Roserade, Mamoswine, & Farigiraf.", + "Tweaks to Underrated Pokémon: (e.g., Ghost/Flying Noctowl, Grass/Dragon Sceptile, Water/Fire Octillery) to enhance their viability.", + "Minigames & Events: Participate in a Scuba Diving competition in Pacifidlog Town & Pinball games that unlock rare items & Alolan Eggs.", + "Rustboro City Wishing Well: Use Wishing Stars in a gacha-like system to obtain random Pokémon, adding an element of surprise to your playthroughs.", + "In-Game Cheat Codes: Access cheat codes directly through the Player's GameCube, offering customization options.", + "Adjustable Difficulty & Settings: Toggle Hard Mode, Soft Level Cap, & more by interacting with a book on the Player's desk." + ], + "links": [ + { + "label": "Source / info", + "url": "https://www.hackdex.app/hack/pokemon-emerald-seaglass" + }, + { + "label": "Lookup", + "url": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Emerald%20Seaglass%20rom%20hack" + } + ] + }, + { + "stem": "Emerald Squared", + "title": "Pokémon Emerald Squared", + "platform": "GBA", + "base": "Emerald", + "version": "2.6.2", + "status": "Complete", + "generation": "Gen 3", + "source": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Emerald%20Squared%20rom%20hack", + "library_path": "roms/gba/Hacks/Pokemon - Emerald Squared (Hack).gba", + "play_status": "Unplayed", + "type": [ + "Difficulty", + "Vanilla+" + ], + "tags": [ + "hack", + "platform/gba", + "base/emerald", + "status/complete", + "type/difficulty", + "type/vanilla+" + ], + "summary": "An enhanced, harder Emerald — rebalanced trainers and availability for a tougher Hoenn run.", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Lookup", + "url": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Emerald%20Squared%20rom%20hack" + } + ] + }, + { + "stem": "Empyrean", + "title": "Pokémon Empyrean", + "platform": "PC", + "base": null, + "version": "1.1", + "status": "Complete", + "generation": "Joiplay/RPGXP", + "developer": "Stochastic", + "release_date": "2023", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Empyrean/Screenshot_20250920_131340_Discord-d70831c5a3545190.png", + "source": "https://drive.google.com/file/d/1V5_IsqxybL7ZsHCBpXjcST0MXWbsmzNH/view", + "library_path": "/storage1/labdata/romhacks/library/Pokemon_Empyrean/", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Empyrean", + "type": [ + "Expansion", + "New Experience" + ], + "tags": [ + "hack", + "platform/pc", + "status/complete", + "type/expansion", + "type/newexperience", + "source/discord" + ], + "summary": "Catalogued from the Discord ROM-hack archive. See links below.", + "notability": "", + "story": "Takes place in the Omuran Region, after the latest evil team, \"Vordev Group\" has been defeated by a Pokemon agent team led by your father, Hal. Although the Group was defeated, some of its core members escaped. Present day, you and your father arrive in Selene Town for vacation, but soon, Hal is notified that the remains of the Group were found, and he runs off.\n\nUnfortunately, things do not go well, and Hal is captured by the remnants of the Group,\nthat joined forces with a mysterious entity. Your quest will be twofold, to become the best Pokemon trainer, and to rescue your father.", + "features": [ + "Custom Mega Evolutions.", + "Completely new storyline.", + "Built-in cheat mode (Shift + Space).", + "Post-game content.", + "New characters.", + "Updated visuals.", + "Regional Variants.", + "## :Download: [Download Launcher](https://drive.google.com/file/d/1V5_IsqxybL7ZsHCBpXjcST0MXWbsmzNH/view)" + ], + "links": [ + { + "label": "Download", + "url": "https://drive.google.com/file/d/1V5_IsqxybL7ZsHCBpXjcST0MXWbsmzNH/view" + } + ] + }, + { + "stem": "Energized Emerald", + "title": "Pokémon Energized Emerald", + "platform": "GBA", + "base": null, + "version": null, + "status": null, + "generation": "Gen III", + "developer": "Land0fChocolate", + "release_date": "2024", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Energized_Emerald/download_3-1307dcaa5428f2e1.jpg", + "source": "https://www.mediafire.com/file/hn1t5ksqwoozq5o/Energized+v1.0.21.zip/file", + "library_path": "/storage1/Emulation/roms/gba/Energized v1.0.21.gba", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Energized_Emerald", + "type": [ + "New Experience", + "QoL" + ], + "tags": [ + "hack", + "platform/gba", + "type/newexperience", + "type/qol", + "source/discord" + ], + "summary": "Pokemon Energized Emerald is a revamp of Pokemon Emerald that offers an enhanced and expanded experience in gameplay, story, and graphics while remaining faithful to the original game's theme. The objective of my changes is to amplify the game's enjoyment factor while simultaneously delivering a satisfying and balanced challenge.\n\nChanges:\nThe most significant gameplay modification in Energized Emerald introduces the ability for Pokemon to possess up to three concurrent abilities, resulting in more dynamic and captivating battles. Players will encounter an array of additional mechanics during", + "notability": "", + "story": "The story has been revised with more ORAS elements, and it also continues after beating the Pokemon League with a brand new story!\nThe overworld has been updated so players will see more bustling urban areas, more labyrinthian dungeons, and also brand new areas containing Pokemon not found in the wild in vanilla Emerald.\nAll gen 1-3 Pokemon are available in this game", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/hn1t5ksqwoozq5o/Energized+v1.0.21.zip/file" + } + ] + }, + { + "stem": "Ephemerald", + "title": "Pokémon Ephemerald", + "platform": "GBA", + "base": "Emerald", + "version": "v1.2", + "status": "Complete", + "generation": "Gen III", + "developer": "u/Player_15", + "release_date": "2023", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Ephemerald/DCFuDmb-62ec75ef38358b7f.png", + "source": "https://www.pokeharbor.com/2022/05/pokemon-ephemerald/", + "library_path": "/storage1/Emulation/roms/gba/Ephemerald v1.2.zip", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Ephemerald", + "type": [ + "New Experience" + ], + "tags": [ + "hack", + "platform/gba", + "base/emerald", + "status/complete", + "type/newexperience", + "source/discord" + ], + "summary": "## Details: • Creator: u/Player_15 • Version: v1.2 • Hack of: Emerald • Updated: January 27, 2023 • Language: English • Status: Completed", + "notability": "", + "story": "", + "features": [ + "Tweaked type chart", + "Every type combination represented", + "Optional bosses with true rewards", + "And more", + "[PokéHarbor Link]()", + "[MediaFire Download]()" + ], + "links": [ + { + "label": "Info / thread", + "url": "https://www.pokeharbor.com/2022/05/pokemon-ephemerald/" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/5te5tgk4055hylh/Ephemerald+v1.2.zip/file" + } + ] + }, + { + "stem": "Eternal X & Wilting Y", + "title": "Pokémon Eternal X & Wilting Y", + "platform": null, + "base": null, + "version": null, + "status": null, + "generation": null, + "developer": "Buffel Saft", + "release_date": "2016", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Eternal_X_Wilting_Y/ezgif-5-7b83e698b6-2dbd1b0225fd40c7.gif", + "source": "https://drive.google.com/drive/u/0/mobile/folders/1K8KcX7E0f0H39TjQsUzk_mNb9_bMniL8?usp=sharing&pli=1", + "library_path": "—", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Eternal_X_Wilting_Y", + "type": [ + "Difficulty", + "QoL" + ], + "tags": [ + "hack", + "type/difficulty", + "type/qol", + "source/discord" + ], + "summary": "**Pokémon Eternal X & Wilting Y** is Hack of Pokémon X & Y. Made by Buffel Saft. It was released: 4th February 2016 and was last Updated: 27thApril 2021. **WARNING:** The Lumiose save glitch is still in the games; do NOT save in the North or South Boulevard. Saving inside a building is perfectly safe, however.", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://drive.google.com/drive/u/0/mobile/folders/1K8KcX7E0f0H39TjQsUzk_mNb9_bMniL8?usp=sharing&pli=1" + }, + { + "label": "Link", + "url": "https://3ds.guide/" + }, + { + "label": "Download", + "url": "https://smealum.github.io/3ds/" + } + ] + }, + { + "stem": "Evolved", + "title": "Pokémon Evolved", + "platform": "GBA", + "base": "LeafGreen", + "version": null, + "status": null, + "generation": "Gen III", + "developer": "AtSign8877 & Team", + "release_date": "2025-03-26", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Evolved/Pokemon-Evolved-GBA-4cdc1d4d86fb4ce0.jpg", + "source": "https://www.mediafire.com/file/ei285s2avp2fe3t/evolved.zip/file", + "library_path": "/storage1/Emulation/roms/gba/evolved.zip", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Evolved", + "type": [ + "Expansion" + ], + "tags": [ + "hack", + "platform/gba", + "base/leafgreen", + "type/expansion", + "source/discord" + ], + "summary": "Pokemon Evolved is a hack of Pokémon Leaf Green that expands the original 151 Pokémon with five or more evolution stages, increasing the total Pokédex to 354. Each new evolution features custom front and back sprites, unique cries, and shiny variants. Stats, moves, and evolution levels have been rebalanced to enhance the gameplay experience. Wild Pokémon encounters have been updated, ensuring that all Kanto Pokémon can be caught in a single playthrough.", + "notability": "", + "story": "", + "features": [ + "A new Pokédex with 354 Pokémon, including new species and evolutions.", + "Custom front and back sprites for all new Pokémon.", + "Infinite Rare Candies are available on the PC (they replenish upon exiting).", + "EXP All is always active.", + "Physical/Special split implemented for moves.", + "Select post-Gen 3 moves and abilities added.", + "All Pokémon evolve by leveling up or using evolution stones—no new evolutions require stones.", + "Trade evolutions now occur via level-up.", + "Friendship evolutions are now level-based.", + "Stone evolutions remain unchanged.", + "The Celadon Stone Seller stocks all necessary evolution stones.", + "HMs must be taught or carried by an \"HM intern.\"", + "Gym progression follows the intended badge order.", + "The Sevii Islands are not a major focus.", + "Do not revisit the S.S. Anne after leaving." + ], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/ei285s2avp2fe3t/evolved.zip/file" + }, + { + "label": "Download", + "url": "https://mega.nz/file/dKkT0Y5B#XiKrm7X0bWmKu_-rmi0qagm9FT3IG9-bC5TRaUKA9vs" + } + ] + }, + { + "stem": "Exceeded", + "title": "Pokémon Exceeded", + "platform": "GBA", + "base": null, + "version": null, + "status": null, + "generation": "Gen III", + "developer": "Beniboy", + "release_date": "2024", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Exceeded/IMG_6559-0aa47e0be60dcbe8.jpg", + "source": "https://www.mediafire.com/file/fr2y73i7xhn95cr/Exceeded+v11.5.zip/file", + "library_path": "/storage1/Emulation/roms/gba/Exceeded v11.5.gba", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Exceeded", + "type": [ + "Difficulty", + "Expansion" + ], + "tags": [ + "hack", + "platform/gba", + "type/difficulty", + "type/expansion", + "source/discord" + ], + "summary": "Pokémon Exceeded is a new emerald decompilation hack. One major feature is Innate (a relatively rare feature among Hack Roms), which functions as a Pokémon ability, but the Pokémon can have up to three Innates. Some effects interact with Innates, such as Mold Breaker abilities and Gastro Acid, while others, such as Neutralizing Gas, have no impact on them. And some Pokémon can be unlocked via level, friendship, evolution, or even quests!", + "notability": "", + "story": "The basic plot is virtually identical to that of the original Pokémon Emerald, albeit it diverges at one point so that the player can wander wherever they wish. As a post-game, there are new Pokémon and strategies in Pokémon Battle Frontier.", + "features": [ + "Pokemon gen 1-8", + "Side quests", + "New map", + "New abilities, moves and items", + "Mega Evolutions included", + "A lot of customization, you can choose if you want to activate:", + "Nuzlocke mode", + "Randomization", + "Optional challenges", + "AI choose your actions in battle", + "Mirror mode", + "And much more", + ":Download: [**Download Link**](https://www.mediafire.com/file/fr2y73i7xhn95cr/Exceeded+v11.5.zip/file)" + ], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/fr2y73i7xhn95cr/Exceeded+v11.5.zip/file" + } + ] + }, + { + "stem": "Factory Adventure", + "title": "Pokémon Factory Adventure", + "platform": null, + "base": null, + "version": null, + "status": null, + "generation": null, + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Factory_Adventure/IMG_0137-4835dcf2d8bc5c4b.jpg", + "source": "https://raw.githubusercontent.com/vbaemulator/GBC-Roms/main/Pokemon%20Factory%20Adventure%20v3.2.zip", + "library_path": "—", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Factory_Adventure", + "type": [ + "New Experience" + ], + "tags": [ + "hack", + "type/newexperience", + "source/discord" + ], + "summary": "Pokemon Factory Adventure Dev:CameruptQDX", + "notability": "", + "story": "", + "features": [ + "Gameplay from Roaming Red", + "Selectable starting town", + "Scaling levels based on your team", + "Built-in randomizer options", + "A fully open-world Kanto to explore in any order", + "An all-new story about an imperiled Kanto", + "190 Pokemon to collect, created by kids in the 90s", + "New locations to explore", + "New moves", + "New Gym Leaders and other event battles", + "The return of the Battle Tent from Pokemon Anniversary Red", + "## Download Links", + "[Download Link](https://raw.githubusercontent.com/vbaemulator/GBC-Roms/main/Pokemon%20Factory%20Adventure%20v3.2.zip)" + ], + "links": [ + { + "label": "Download", + "url": "https://raw.githubusercontent.com/vbaemulator/GBC-Roms/main/Pokemon%20Factory%20Adventure%20v3.2.zip" + } + ] + }, + { + "stem": "Fakemon Fire Red", + "title": "Pokémon Fakemon Fire Red", + "platform": "GBA", + "base": "FireRed", + "version": "2.0", + "status": "Complete", + "generation": "Gen III", + "developer": "me", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Fakemon_Fire_Red/IMG_9462-e9e74750828ac98d.jpg", + "source": "https://www.mediafire.com/file/efva86w9tq535rb/Pokemon+Fakemon+FireRed+v2.0.zip/file?fbclid=IwVERDUAQETzJleHRuA2FlbQIxMABzcnRjBmFwcF9pZAo2NjI4NTY4Mzc5AAEe1wmsi0sOfr-wEC5jCr3phJ7hFYLg_hifqMcDse8W3z3PiXO622LGDS2OD1c_aem_r7VVSL7KxnuVhYXhwfFC5Q", + "library_path": "/storage1/Emulation/roms/gba/Pokemon Fakemon FireRed v2.0.zip", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Fakemon_Fire_Red", + "type": [ + "Expansion", + "New Experience" + ], + "tags": [ + "hack", + "platform/gba", + "base/firered", + "status/complete", + "type/expansion", + "type/newexperience", + "source/discord" + ], + "summary": "Fakemon FireRed is a ROM hack of Pokémon FireRed, which does exactly what the name implies - completely rids the game of official Pokémon and replaces the roster with a full national dex of only \"Fakemon\" - that is, fan-made Pokémon designs made by me. The game world and story still largely follow the original Pokémon FireRed. I've also added two new types, (Cosmic and Digital) the Fairy-type, Mega Evolution, the physical/special split, modern \"quality of life\"-features, newer items, a few changes and additions to the Kanto region, and much more. -Rom link : https://www.mediafire.com/file/efva86w9tq535rb/Pokemon+Fakemon+FireRed+v2.0.zip/file?fbclid=IwVERDUAQETzJleHRuA2FlbQIxMABzcnRjBmFwcF9pZAo2NjI4NTY4Mzc5AAEe1wmsi0sOfr-wEC5jCr3phJ7hFYLg_hifqMcDse8W3z3PiXO622LGDS2OD1c_aem_r7VVSL7KxnuVhYXhwfFC5Q - wiki : https://fakemonfirered.fandom.com/wiki/Main_Page", + "notability": "", + "story": "", + "features": [ + "Original Cries for All Fakemon: Every single one of the 386 Fakemon has its own unique, original cry.", + "➡️New Custom Moves & Items: The game includes completely new moves and items, mostly to support the new Cosmic and Digital types, complete with original move animations.", + "➡️Synchronize Works 100% of the Time: Fakemon with the Synchronize ability have a 100% chance to find a wild Pokémon with the same Nature.", + "And so much more …" + ], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/efva86w9tq535rb/Pokemon+Fakemon+FireRed+v2.0.zip/file?fbclid=IwVERDUAQETzJleHRuA2FlbQIxMABzcnRjBmFwcF9pZAo2NjI4NTY4Mzc5AAEe1wmsi0sOfr-wEC5jCr3phJ7hFYLg_hifqMcDse8W3z3PiXO622LGDS2OD1c_aem_r7VVSL7KxnuVhYXhwfFC5Q" + }, + { + "label": "Link", + "url": "https://fakemonfirered.fandom.com/wiki/Main_Page" + } + ] + }, + { + "stem": "Fire Red 898", + "title": "Pokémon Fire Red 898", + "platform": "GBA", + "base": null, + "version": "1.2.3", + "status": null, + "generation": "Gen III", + "developer": "Greenphx", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Fire_Red_898/IMG_9783-fe920923cae7a77f.jpg", + "source": "https://www.mediafire.com/file/4ojll19w024q2m0/Pokemon+Fire+Red+898+Randomizer+v1.2.3.zip/file", + "library_path": "/storage1/Emulation/roms/gba/Pokemon Fire Red 898 Randomizer v1.2.3.gba", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Fire_Red_898", + "type": [ + "Expansion" + ], + "tags": [ + "hack", + "platform/gba", + "type/expansion", + "source/discord" + ], + "summary": "Catalogued from the Discord ROM-hack archive. See links below.", + "notability": "", + "story": "", + "features": [ + "All 898, forms, and variants coded into the game, allowing you to get them with the randomizer", + "Pokemon, Learnset, and Ability randomizer at the start of the game, allowing you to enable / disable any of them", + "Oak gives you National Dex, Dexnav, Mega Ring, Z Ring, and Dynamax Band at the start of the game (Mega Stones, Z Crystals, and Dynamaxing aren't available yet)", + "Battle Engine updated to Generation 8", + "Other changes and additions from Generation 4-8 provided by the CFRU", + "[Download Link](https://www.mediafire.com/file/4ojll19w024q2m0/Pokemon+Fire+Red+898+Randomizer+v1.2.3.zip/file)" + ], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/4ojll19w024q2m0/Pokemon+Fire+Red+898+Randomizer+v1.2.3.zip/file" + } + ] + }, + { + "stem": "Fire Red Extended", + "title": "Pokémon Fire Red Extended", + "platform": "GBA", + "base": "FireRed", + "version": "3.5.6", + "status": "Ongoing", + "generation": "Multi-gen", + "developer": "building upon the original game and adding new features", + "release_date": "2024", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_FireRed_Extended/IMG_6452-9819a1f44f5fe42f.webp", + "source": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Fire%20Red%20Extended%20rom%20hack", + "library_path": "roms/gba/Hacks/Pokemon - Fire Red Extended (Hack).gba", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_FireRed_Extended", + "type": [ + "Vanilla+", + "Expansion" + ], + "tags": [ + "hack", + "platform/gba", + "base/firered", + "status/ongoing", + "type/vanilla+", + "type/expansion" + ], + "summary": "FireRed extended with later-gen species and mechanics while preserving the Kanto journey.", + "notability": "", + "story": "> The story is basically same as in Pokémon Fire Red, but the features makes it a more interesting story. The Kanto region is now expanded, featuring new routes, towns, and dungeons that are not present in the original Fire Red. The game introduces new side quests and story arcs that delve deeper into the lore of the Kanto region.", + "features": [], + "links": [ + { + "label": "Lookup", + "url": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Fire%20Red%20Extended%20rom%20hack" + } + ] + }, + { + "stem": "Fire Red OK version", + "title": "Pokémon Fire Red OK version", + "platform": "GBA", + "base": "FireRed", + "version": "1.42", + "status": "Complete", + "generation": "Gen III", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Fire_Red_OK_version/IMG_9861-bc1207150436d50c.jpg", + "source": "https://drive.google.com/file/d/1-WfOHrba7xN57snLQU4csseDgzRPVO7g/view?usp=drivesdk", + "library_path": "/storage1/Emulation/roms/gba/Pokemon Fire Red Ok Version 1.42.gba", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Fire_Red_OK_version", + "type": [], + "tags": [ + "hack", + "platform/gba", + "base/firered", + "status/complete", + "source/discord" + ], + "summary": "Name: Pokemon Fire Red OK Hacked by: OKreations Version 1.42 Changes: - Gym Leaders/Elite Four teams have been buffed ever so slightly (not too difficult, think of it like the challenge mode in BW2) - Trainer Battles across the board have also been buffed similarly, in hopes of providing a bit more variety of Pokémon seen! - Encounter Tables have been reworked/updated to increase variety - Learnsets of every Pokémon have been reworked/buffed - Some Pokémon Types have been changed - Pokémon that received evolutions beyond gen 3 (EX: Tangela, Primeape) get a stat buff - All Pokémon that officially received stat buffs from Game Freak get them here - Moves have received modern upgrades with some exceptions (Rock Smash = 40 BP) - Rare Candies can be bought in all Poke Marts for 1 Pokedollar for easy leveling - Evolution Stones and TMs have been placed in the Celadon Department Store - The Rod Locations have been pushed up! The Old Rod is now accessible in Viridian City! - Trade Pokémon now evolve via a new item called the Link Cable (this includes cross gen evos like Steelix and Kingdra) - Only the original 151 and their cross gen evos are catchable before postgame - Link Cable can be found twice in the overworld and is purchasable on Two Island. - Some overworld locations have been touched up to improve visual variety in the region. - Natures actually tell the player what they are - Gym Leaders give 3 copies of TMs now (Except for Giovanni because he's evil) - LT. Surge's annoying gym puzzle has been removed - removed the free magikarp before Mt. Moon - Starters and Eevee can be caught in the Sevii Islands - and more! [Documentation](https://docs.google.com/spreadsheets/d/1x1ldDVickR-soL5xXKYaPATflia8bH6rxsXexgtYYUw/edit?usp=sharing) [Google Drive Link](https://drive.google.com/file/d/1-WfOHrba7xN57snLQU4csseDgzRPVO7g/view?usp=drivesdk)", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://drive.google.com/file/d/1-WfOHrba7xN57snLQU4csseDgzRPVO7g/view?usp=drivesdk" + }, + { + "label": "Guide / docs", + "url": "https://docs.google.com/spreadsheets/d/1x1ldDVickR-soL5xXKYaPATflia8bH6rxsXexgtYYUw/edit?usp=sharing" + } + ] + }, + { + "stem": "Fire of Sky", + "title": "Pokémon Fire of Sky", + "platform": "GBA", + "base": null, + "version": "1.0.3", + "status": "Complete", + "generation": "Multi-gen", + "source": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Fire%20of%20Sky%20rom%20hack", + "library_path": "roms/gba/Hacks/Pokemon - Fire of Sky (Hack).gba", + "play_status": "Playing", + "type": [ + "New Experience" + ], + "tags": [ + "hack", + "platform/gba", + "base/unknown", + "status/complete", + "type/newexperience" + ], + "summary": "A story-focused new-adventure hack.", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Lookup", + "url": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Fire%20of%20Sky%20rom%20hack" + } + ] + }, + { + "stem": "FireRed & LeafGreen+ (FRLG+)", + "title": "Pokémon FireRed & LeafGreen+ (FRLG+)", + "platform": "GBA", + "base": "FireRed", + "version": "1.5.1", + "status": "Ongoing", + "generation": "Gen 1–3", + "source": "https://duckduckgo.com/?q=Pok%C3%A9mon%20FireRed%20%26%20LeafGreen%2B%20%28FRLG%2B%29%20rom%20hack", + "library_path": "roms/gba/Hacks/Pokemon - FireRed & LeafGreen+ (FRLG+) (Hack).gba", + "play_status": "Unplayed", + "type": [ + "Vanilla+", + "QoL" + ], + "tags": [ + "hack", + "platform/gba", + "base/firered", + "status/ongoing", + "type/vanilla+", + "type/qol" + ], + "summary": "A faithful 'plus' enhancement of FR/LG — availability fixes, split, and QoL with minimal change to the feel.", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Lookup", + "url": "https://duckduckgo.com/?q=Pok%C3%A9mon%20FireRed%20%26%20LeafGreen%2B%20%28FRLG%2B%29%20rom%20hack" + } + ] + }, + { + "stem": "FireRed Deluxe", + "title": "Pokémon FireRed Deluxe", + "platform": "GBA", + "base": "FireRed", + "version": "20.5", + "status": "Ongoing", + "generation": "Multi-gen", + "source": "https://duckduckgo.com/?q=Pok%C3%A9mon%20FireRed%20Deluxe%20rom%20hack", + "library_path": "roms/gba/Hacks/Pokemon - FireRed Deluxe (Hack).gba", + "play_status": "Unplayed", + "type": [ + "Vanilla+", + "Expansion", + "QoL" + ], + "tags": [ + "hack", + "platform/gba", + "base/firered", + "status/ongoing", + "type/vanilla+", + "type/expansion", + "type/qol" + ], + "summary": "FireRed loaded with all obtainable species, modern mechanics, and QoL — a 'complete dex' enhanced Kanto.", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Lookup", + "url": "https://duckduckgo.com/?q=Pok%C3%A9mon%20FireRed%20Deluxe%20rom%20hack" + } + ] + }, + { + "stem": "FireRed Distorted", + "title": "Pokémon FireRed Distorted", + "platform": "GBA", + "base": null, + "version": null, + "status": "Complete", + "generation": "Gen III", + "developer": "someone above", + "release_date": "2023", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_FireRed_Distorted/4epyB4g-fe9eed88475a4b44.jpg", + "source": "https://www.mediafire.com/file/s96pb6186g0jla8/Pokémon+FireRed+Distorted+Complete.zip/file", + "library_path": "/storage1/Emulation/roms/gba/Pokémon FireRed Distorted Complete.zip", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_FireRed_Distorted", + "type": [ + "New Experience" + ], + "tags": [ + "hack", + "platform/gba", + "status/complete", + "type/newexperience", + "source/discord" + ], + "summary": "It is a Horror ROM Hack with a new story, map, and characters. Red, the protagonist of Pokémon FireRed, lives his life quietly. One day he discovers that the Pokémon world is not what he thought: its very existence is illusory and imposed by someone above.", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/s96pb6186g0jla8/Pokémon+FireRed+Distorted+Complete.zip/file" + } + ] + }, + { + "stem": "FireRed Multiverse", + "title": "Pokémon FireRed Multiverse", + "platform": "GBA", + "base": null, + "version": null, + "status": null, + "generation": "Gen III", + "developer": "different Pokemon fan games", + "release_date": "2024", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_FireRed_Multiverse/IMG_6421-e9d40e1b6252f067.webp", + "source": "https://www.mediafire.com/file/lxd0kfvgpahze4v/fr+multiverse+v1.6.zip/file", + "library_path": "/storage1/Emulation/roms/gba/fr multiverse v1.6.gba", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_FireRed_Multiverse", + "type": [ + "Expansion", + "QoL" + ], + "tags": [ + "hack", + "platform/gba", + "type/expansion", + "type/qol", + "source/discord" + ], + "summary": "Pokemon FireRed Multiverse is a unique rom hack inspired by different Pokemon fan games, enthralls players with its multiverse concept, where characters from various games unite for a common goal.", + "notability": "", + "story": "The storyline unwinds with accidental creation of Mew causing trainers from generation 1 to 7 to appear and the appearance of the legendary Pokemon, Arceus. Alongside Brendan, players confront Team Magma and Team Rocket, aiming to control Arceus.", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/lxd0kfvgpahze4v/fr+multiverse+v1.6.zip/file" + } + ] + }, + { + "stem": "FireRed Reignited LeafGreen Regrown", + "title": "Pokémon FireRed Reignited / LeafGreen Regrown", + "platform": "GBA", + "base": "FireRed", + "version": "1.4", + "status": null, + "generation": null, + "release_date": "2025", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_FireRed_Reignited_LeafGreen_Regrown/Pokemon-Fire-Red-Reignited-Leaf-Green-Regr-146457a57c91a5e4.jpg", + "source": "https://secure.internxt.com/sh/file/rb-roqSuQAavZGzfEvoH8g/qQmusSYj", + "library_path": "—", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_FireRed_Reignited_LeafGreen_Regrown", + "type": [ + "Expansion", + "QoL" + ], + "tags": [ + "hack", + "platform/gba", + "base/firered", + "type/expansion", + "type/qol", + "source/discord" + ], + "summary": "Hack of: FireRed Updated: March 26, 2025 Hack of: Fire Red and Leaf Green", + "notability": "", + "story": "", + "features": [ + "All Kanto and Johto Pokémon available in both versions.", + "Main Dex: 181 Pokémon (151 original + 30 new).", + "⅔ are cross-gen evolutions and pre-evolutions.", + "⅓ are added Johto Pokémon to improve type diversity.", + "Some additional Pokémon obtainable through secret means.", + "Map improvements to make areas feel less empty (e.g., Cinnabar Island, Mt. Moon).", + "New areas**", + "Mt. Moon Square", + "Additional Rock Tunnel floor (accessible with Rock Smash).", + "Expanded postgame with more battles and activities.**", + "Gym Leader rematches.", + "Roaming Pokémon made easier to catch:", + "After beating the Elite Four, additional roamers spawn once the previous one is caught.", + "Nat Dex Postgame changes**", + "QOL**", + "Faster Nurse Joy interactions.", + "Bag sorting for easier item management.", + "EV & IV Checkers available on Pokémon Center 2F.", + "EXP Share replaces Running Shoes (Running Shoes now obtained at Oak's Lab).", + "Repels automatically reuse when they run out.", + "Price adjustments to make items more balanced.", + "Unique Team Rocket battle theme (from Crystal Dust).", + "Easier access to the Truck area (no need for trading).", + "No Mew, but a useful surprise awaits." + ], + "links": [ + { + "label": "Download", + "url": "https://secure.internxt.com/sh/file/rb-roqSuQAavZGzfEvoH8g/qQmusSYj" + } + ] + }, + { + "stem": "FireRed Reignited", + "title": "Pokémon FireRed Reignited", + "platform": "GBA", + "base": "FireRed", + "version": "1.55", + "status": "Ongoing", + "generation": "Gen 1+", + "source": "https://duckduckgo.com/?q=Pok%C3%A9mon%20FireRed%20Reignited%20rom%20hack", + "library_path": "roms/gba/Hacks/Pokemon - FireRed Reignited (Hack).gba", + "play_status": "Unplayed", + "type": [ + "Vanilla+", + "QoL" + ], + "tags": [ + "hack", + "platform/gba", + "base/firered", + "status/ongoing", + "type/vanilla+", + "type/qol" + ], + "summary": "A modern QoL remaster of FireRed.", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Lookup", + "url": "https://duckduckgo.com/?q=Pok%C3%A9mon%20FireRed%20Reignited%20rom%20hack" + } + ] + }, + { + "stem": "FireRed Rocket Edition", + "title": "Pokémon FireRed Rocket Edition", + "platform": "GBA", + "base": "FireRed", + "version": "Final v1.0.2", + "status": null, + "generation": "Gen III", + "developer": "colonelsalt", + "release_date": "2021", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_FireRed_Rocket_Edition/fr-rocket-edition-e235e7e691ba46db.png", + "source": "https://www.mediafire.com/file/b8jmf6x96gg317o/Pokemon+Fire+Red+Rocket+Edition+", + "library_path": "/storage1/Emulation/roms/gba/Pokemon Fire Red Rocket Edition (v1.02).zip", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_FireRed_Rocket_Edition", + "type": [], + "tags": [ + "hack", + "platform/gba", + "base/firered", + "source/discord" + ], + "summary": "Catalogued from the Discord ROM-hack archive. See links below.", + "notability": "", + "story": "One fateful morning in Pallet Town, a newborn hero takes his first steps along his journey to becoming a Pokémon Master. With a love for Pokemon battle, and a burning desire to be the very best, he takes on the region's Gym Leaders and eventually conquers the Pokémon League. A well-trodden tale if there ever was one… but it is far from the whole story.\n\nBehind Red's seemingly simplistic Pokémon adventures lies a darker, more sinister plot - one that its original hero never hears of, but which holds significance for both him and the fate of the Kanto region. Sociopathic scientists, revenge-hungry nurses, and corrupt Gym Leaders are just a few of the characters who show their true colors once Red turns his back, and the very people who appeared most friendly and considerate through his naïve eyes may in fact be secretly harboring the most malicious of intentions.", + "features": [ + "Steal Pokémon from every single Trainer in the game", + "Experience the true story behind Red's adventures", + "Morality system and branching sidequests", + "Gen. VI-style mechanics and presentation", + "Overall improved interface and gameplay" + ], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/b8jmf6x96gg317o/Pokemon+Fire+Red+Rocket+Edition+" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/b8jmf6x96gg317o/Pokemon+Fire+Red+Rocket+Edition+(v1.02" + } + ] + }, + { + "stem": "Flora Sky", + "title": "Pokémon Flora Sky", + "platform": "GBA", + "base": "Emerald", + "version": "Complete", + "status": "Complete", + "generation": "Gen 3–4 mons", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Flora_Sky/pokemon-flora-sky_1-a586ddbdc7f6db71.png", + "source": "https://www.pokecommunity.com/threads/pokemon-flora-sky.179365/", + "library_path": "roms/gba/Hacks/Pokemon - Flora Sky (Hack).gba", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Flora_Sky", + "type": [ + "New Experience" + ], + "tags": [ + "hack", + "platform/gba", + "base/emerald", + "status/complete", + "type/newexperience" + ], + "summary": "A classic complete Emerald hack with a new region, Gen 4 additions, and a sky/Distortion-World-flavored plot.", + "notability": "", + "story": "", + "features": [ + "New story", + "New events For Legendary Pokemon", + "New characters", + "386 Pokemon in the hack with new sprites", + "New moves, maps, items, HM's", + "New minigame", + "Day Night System with daily events", + "Main Legendaries: Shaymin, Giratina, Dialga. After beat E4: Groudon, Kyogre, Rayquza, Mew, Arceus", + "__**Changes in Complement Dex:**__", + "All missing Pokemon in the main version", + "All Trio Pokemon with 580 base stat and Heatran will decrease to 520", + "Fixed Magmar's Shiny Palette, Uxie's stats, decrease the base stats of Darmanitan", + "Increase the level of trainers after the Pokemon League" + ], + "links": [ + { + "label": "Source / info", + "url": "https://www.pokecommunity.com/threads/pokemon-flora-sky.179365/" + }, + { + "label": "Lookup", + "url": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Flora%20Sky%20rom%20hack" + } + ] + }, + { + "stem": "Following Renegade Platinum", + "title": "Pokémon Following Renegade Platinum", + "platform": "NDS", + "base": "Platinum", + "version": "2.0", + "status": "Complete", + "generation": "Gen 1–4 mons", + "source": "https://www.reddit.com/r/PokemonROMhacks/comments/s4fbhi/", + "library_path": "roms/nds/Hacks/Pokemon - Following Renegade Platinum (Hack).nds", + "play_status": "Unplayed", + "type": [ + "Difficulty", + "Vanilla+", + "QoL" + ], + "tags": [ + "hack", + "platform/nds", + "base/platinum", + "status/complete", + "type/difficulty", + "type/vanilla+", + "type/qol" + ], + "summary": "Renegade Platinum with following Pokémon added — the acclaimed enhanced Sinnoh plus an HGSS-style walking partner.", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Source / info", + "url": "https://www.reddit.com/r/PokemonROMhacks/comments/s4fbhi/" + }, + { + "label": "Lookup", + "url": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Following%20Renegade%20Platinum%20rom%20hack" + } + ] + }, + { + "stem": "Fool's Gold", + "title": "Pokémon Fool's Gold", + "platform": "GB", + "base": "Crystal", + "version": "v1.3.2", + "status": "Complete", + "generation": "Gen II", + "developer": "celadonk", + "release_date": "2024", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Fool_s_Gold/Cover_front-1-059249bcb0b39c92.png", + "source": "https://www.pokeharbor.com/2021/05/pokemon-fools-gold/", + "library_path": "/storage1/Emulation/roms/gb/foolsgold v1.3.2.zip", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Fool_s_Gold", + "type": [], + "tags": [ + "hack", + "platform/gb", + "base/crystal", + "status/complete", + "source/discord" + ], + "summary": "• Creator: celadonk • Version: v1.3.2 • Hack of: Crystal • Updated: August 2, 2024 • Language: English • Status: Completed", + "notability": "", + "story": "", + "features": [ + "All 251 Pokémon redesigned, with new types and movesets to fit", + "All wild encounter data changed, to better fit the new designs to the environments", + "All Pokémon available without trading, including trade evolutions and starters", + "A variety of aesthetic changes to the overworld", + "A few new optional areas to explore", + "Shiny rate raised to 1/1028… we wanted everyone to at least run into one shiny throughout their playthrough", + "A few new moves, both from other Pokémon games and original moves", + "[PokéHarbor Link]()", + "[MediaFire Download]()" + ], + "links": [ + { + "label": "Info / thread", + "url": "https://www.pokeharbor.com/2021/05/pokemon-fools-gold/" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/6ycysgr0r781rwj/foolsgold+v1.3.2.zip/file" + } + ] + }, + { + "stem": "Frigo returns", + "title": "Pokémon Frigo returns", + "platform": "GBA", + "base": null, + "version": "0.2", + "status": "Complete", + "generation": "Gen III", + "developer": "FRIGO", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Frigo_returns/IMG_0107-fdfcf1faf02a9d8d.jpg", + "source": "https://raw.githubusercontent.com/vbaemulator/GBA-Roms/main/Pokemon%20Frigo%20Returns%20v0.2.zip", + "library_path": "/storage1/Emulation/roms/gba/Pokemon Frigo Returns v0.2.zip", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Frigo_returns", + "type": [], + "tags": [ + "hack", + "platform/gba", + "status/complete", + "source/discord" + ], + "summary": "You have an adventure, and your mission is to find the answers to two questions: Who is Frigo? Where did he return? Professor Oak will help you to complete those tasks. Embark on a Pokemon adventure with new events and improved overall gameplay. Good luck with your game.\nRules: Faint = Release. First Mon a route.", + "notability": "", + "story": "", + "features": [ + "New Graphics", + "New title screen", + "Great Gameplay", + "New Events", + "New Scripts", + "Small game", + "## Download Links", + "[Download Link](https://raw.githubusercontent.com/vbaemulator/GBA-Roms/main/Pokemon%20Frigo%20Returns%20v0.2.zip)" + ], + "links": [ + { + "label": "Download", + "url": "https://raw.githubusercontent.com/vbaemulator/GBA-Roms/main/Pokemon%20Frigo%20Returns%20v0.2.zip" + } + ] + }, + { + "stem": "Fused┬áDimensions", + "title": "Pokémon Fused Dimensions", + "platform": "GBA", + "base": "FireRed", + "version": null, + "status": null, + "generation": "Gen III", + "developer": "DanteZ.35", + "release_date": "2022-09-24", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Fused_Dimensions/pokemon-fused-dimensions-2-266a3cb15a107abe.jpg", + "source": "https://www.mediafire.com/file/jhluxcewlojzor6/Pokemon+Fused+Dimensions+", + "library_path": "/storage1/Emulation/roms/gba/Pokemon Fused Dimensions (v2.3) (1).zip", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Fused_Dimensions", + "type": [ + "Expansion" + ], + "tags": [ + "hack", + "platform/gba", + "base/firered", + "type/expansion", + "source/discord" + ], + "summary": "Pokemon Fused Dimensions is a mod of Pokemon FireRed featuring a dex replaced with fusions.", + "notability": "", + "story": "", + "features": [ + "A dex full of fusions, 226 to be more precise, all of them obtainable.", + "Mega evolution added", + "Custom Dex entries for every fusion, as well as the base stats on it.", + "Some of the HMs have different typing and effect", + "Forgettable HMs", + "Infinite TMs", + "Physical/Special split", + "Fairy-type", + "Increased Shiny odds", + "Added the Link Cable item to evolve Trade Pokemon", + "All the wild Pokemon changed due to their design or lore" + ], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/jhluxcewlojzor6/Pokemon+Fused+Dimensions+" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/jhluxcewlojzor6/Pokemon+Fused+Dimensions+(v2.3" + }, + { + "label": "Link", + "url": "https://onedrive.live.com/?authkey=%21ALHgXW7Qoxnl21s&id=65F48F421B14634F%21637&cid=65F48F421B14634F&parId=root&parQt=sharedby&o=OneUp" + }, + { + "label": "Guide / docs", + "url": "https://docs.google.com/spreadsheets/u/0/d/1Rkxo4l3bYedKTVCq0iEBoaVSc5kvYM4Qp4Y2yU-ITqM/htmlview?pli=1#gid=0" + } + ] + }, + { + "stem": "Fusion Origins", + "title": "Pokémon Fusion Origins", + "platform": "GBA", + "base": "FireRed", + "version": "3.8", + "status": null, + "generation": "Gen III", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Fusion_Origins/4EEFAABF-1078-4FC3-9377-E95835714A21-e5848a77eebc30c0.jpg", + "source": "https://raw.githubusercontent.com/vbaemulator/GBA-Roms/main/Pokemon%20Fusion%20Origins%20Ver%203.8.zip", + "library_path": "/storage1/Emulation/roms/gba/Pokemon Fusion Origins Ver 3.8.gba", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Fusion_Origins", + "type": [ + "Expansion", + "New Experience" + ], + "tags": [ + "hack", + "platform/gba", + "base/firered", + "type/expansion", + "type/newexperience", + "source/discord" + ], + "summary": "Catalogued from the Discord ROM-hack archive. See links below.", + "notability": "", + "story": "", + "features": [ + "New Pokemon fusion designs", + "New plot", + "Physical/Special split", + "Modified maps", + "Reusable TMs", + "EV/IV checker in the first town", + "Custom moves and abilities", + "Fairy type", + "Decapitalization", + "How do you fuse Pokemon in Pokemon Fusion Origins?", + "Pokemon can be fused together by using a fusing item on them. Using a fusion item on an already fused Pokemon will unfuse it, losing some experience in the process. The first Pokemon selected with fusion items will become the Body part of the fusion, while the other part becomes the Head.", + "[Download](https://raw.githubusercontent.com/vbaemulator/GBA-Roms/main/Pokemon%20Fusion%20Origins%20Ver%203.8.zip)" + ], + "links": [ + { + "label": "Download", + "url": "https://raw.githubusercontent.com/vbaemulator/GBA-Roms/main/Pokemon%20Fusion%20Origins%20Ver%203.8.zip" + } + ] + }, + { + "stem": "GS 97 Reforged", + "title": "Pokémon GS 97 Reforged", + "platform": "GBC", + "base": null, + "version": null, + "status": "Beta", + "generation": null, + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_GS_97_Reforged/Pokemon-Gold-97-Reforged-1-31e90be9611c528e.webp", + "library_path": "—", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_GS_97_Reforged", + "type": [ + "New Experience" + ], + "tags": [ + "hack", + "platform/gbc", + "status/beta", + "type/newexperience", + "source/discord" + ], + "summary": "## __ Description__ ** ** > Explore the Nihon region with an entirely new story and cast of beta Pokemon entirely done up in the style of Crystal's GBC graphics. > Based on lvl3's original Gold 97 hack, the game has been entirely re-balanced and remastered as well > > Go on a grand adventure catching Pokemon and taking down Team Rocket nationwide in this alternate sequel to the original Red and Blue! > > Reforged comes in two versions, Gold and Silver, featuring differing sprites and encounter tables just like the real game. All Pokemon are still catchable in each version! ## __Features__ - The overworld is now in color - Gold and Silver versions with different sprites and differing encounter rates - Lugia has been added back for Silver's version - Recreated title screen from Spaceworld '97 - Pokemon movesets have been altered for the better - Added more trainers to improve Gen 2's level curve - Edited Trainers' Pokemon - Added Female Player functionality back - Edited Spaceworld maps to make more sense (Kanto especially)", + "notability": "", + "story": "", + "features": [], + "links": [] + }, + { + "stem": "GS Chronicles", + "title": "Pokémon GS Chronicles", + "platform": "GBA", + "base": "FireRed", + "version": "2.7.6", + "status": "Complete", + "generation": "Gen 1–7 mons", + "developer": "~Ruki!", + "release_date": "2024", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_GS_Chronicles/pokemon-gs-chronicles-d9df478fcf342d15.png", + "source": "https://www.pokecommunity.com/threads/pokemon-gs-chronicles.346730/", + "library_path": "roms/gba/Hacks/Pokemon - GS Chronicles (Hack).gba", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_GS_Chronicles", + "type": [ + "New Experience", + "Demake" + ], + "tags": [ + "hack", + "platform/gba", + "base/firered", + "status/complete", + "type/newexperience", + "type/demake" + ], + "summary": "A HeartGold/SoulSilver-style Johto remake on GBA with modern mechanics and a rich postgame.", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Source / info", + "url": "https://www.pokecommunity.com/threads/pokemon-gs-chronicles.346730/" + }, + { + "label": "Lookup", + "url": "https://duckduckgo.com/?q=Pok%C3%A9mon%20GS%20Chronicles%20rom%20hack" + } + ] + }, + { + "stem": "Gadir Deluxe", + "title": "Pokémon Gadir Deluxe", + "platform": "PC", + "base": null, + "version": null, + "status": null, + "generation": "Joiplay/RPGXP", + "developer": "PKMario & AlekZ", + "release_date": "2025-12-12", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Gadir_Deluxe/G7wqQb3XgAAD3aj-9a2a9076687e3791.png", + "source": "https://drive.google.com/drive/u/2/mobile/folders/1U1B-RczjZy-rkQGcElDcGp_Dhr50TNV7", + "library_path": "/storage1/labdata/romhacks/library/Pokemon_Gadir_Deluxe/", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Gadir_Deluxe", + "type": [ + "New Experience", + "Roguelite" + ], + "tags": [ + "hack", + "platform/pc", + "type/newexperience", + "type/roguelite", + "source/discord" + ], + "summary": "The big day has arrived in the Gadir region. Set out on the Trainers' Challenge and explore a brand-new region. Along the way, a group known as Team Tectonic causes trouble across the island, and you will have to stop them while earning all eight badges and claiming the title of Gadir Champion.", + "notability": "", + "story": "", + "features": [ + "A completely new region inspired by the province of Cádiz", + "1,078 Pokemon, including every existing species and brand-new Pokemon from the Gadir region", + "All moves, items, abilities, and mechanics up to the latest generation", + "Unique mechanics such as Pokémon Linking and a roguelike-style mode in the Hole", + "A solid postgame featuring an explorable island, rematches, legendary items, and an additional story chapter." + ], + "links": [ + { + "label": "Download", + "url": "https://drive.google.com/drive/u/2/mobile/folders/1U1B-RczjZy-rkQGcElDcGp_Dhr50TNV7" + }, + { + "label": "Download", + "url": "https://drive.google.com/drive/u/2/mobile/folders/18OCn2mJ2mWBuQlpiurGW-Rpx6Z9BJIjD" + } + ] + }, + { + "stem": "Gaia", + "title": "Pokémon Gaia", + "platform": "GBA", + "base": "FireRed", + "version": "3.2", + "status": "Complete", + "generation": "Gen 1–6 mons", + "developer": "Spherical Ice", + "release_date": "2018-11-08", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Gaia/IMG_9759-a786223593d3ccea.webp", + "source": "https://www.pokecommunity.com/threads/pokemon-gaia.336982/", + "library_path": "roms/gba/Hacks/Pokemon - Gaia (Hack).gba", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Gaia", + "type": [ + "New Experience" + ], + "tags": [ + "hack", + "platform/gba", + "base/firered", + "status/complete", + "type/newexperience" + ], + "summary": "Widely considered one of the best hacks ever: the Orbtus region, Gen 6 mechanics/Fairy type, an archaeology mystery, and Nintendo-grade polish.", + "notability": "", + "story": "The storied Orbtus region was once populated by a prosperous civilization. They created several monuments for their gods and guardians. Their untimely demise was brought about by a series of disastrous earthquakes; all that remains of their society are their temples, idols, and story, as relics of the past.\nIn the present day, local archaeologist and Pokémon Professor, Professor Redwood, has noticed an increase in the region's seismic activity. Propelled by a growing concern for Orbtus' safety, he seeks the assistance of new Pokemon Trainers with a flair for adventure in the rural Celanto Town, a seaside town near the mysterious Totem Poles, and your home! Will you, along with the help of the Professor and your rival, be able to prevent the earth from consuming the region once more?", + "features": [ + "Pokemon from Kanto, Johto, Hoenn, Sinnoh, Unova and Kalos", + "Updated move sets, accurate to OmegaRuby and AlphaSapphire", + "Modern competitive items- Choice Specs, Assault Vest, Ability Pill, etc.", + "Modern abilities- Mega Launcher, Sheer Force, etc.", + "Physical/Special split", + "In-battle Mega Evolution", + "Fairy-type and the new type chart", + "Updated Pokemon sprites", + "Updated Trainer sprites", + "Original songs", + "Rock Climb-able walls", + "Dive and underwater maps", + "Hidden Grottoes and Secret Temples", + "The Bug-Catching Contest", + "The Battle Marsh", + "B2/W2 Repel system", + "Reusable TMs", + "EXP capture system" + ], + "links": [ + { + "label": "Source / info", + "url": "https://www.pokecommunity.com/threads/pokemon-gaia.336982/" + }, + { + "label": "Lookup", + "url": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Gaia%20rom%20hack" + } + ] + }, + { + "stem": "Giratina Strikes Back", + "title": "Pokémon Giratina Strikes Back", + "platform": "GBA", + "base": "FireRed", + "version": null, + "status": null, + "generation": "Gen III", + "release_date": "2017", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Giratina_Strikes_Back/pokemon-giratina-strikes-back-efd99b614659b4a5.png", + "source": "https://www.mediafire.com/file/3rojwlf24n32ak7/Giratina_Strikes_Back_Full.zip/file", + "library_path": "/storage1/Emulation/roms/gba/Giratina Strikes Back Full.gba", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Giratina_Strikes_Back", + "type": [ + "New Experience" + ], + "tags": [ + "hack", + "platform/gba", + "base/firered", + "type/newexperience", + "source/discord" + ], + "summary": "Catalogued from the Discord ROM-hack archive. See links below.", + "notability": "", + "story": "You are a 13-year-old boy/girl whose father owns a large company called EDGE Co. in the Lunoh Region. One morning your father asks you to meet him at his office. There he asks you to fulfill his childhood dream of becoming a Pokemon Master because he never had the chance when he was younger. You accept and receive your very first Pokemon and Eevee!\nAnd so your adventure begins! On the way, you will meet many unique people, and face many challenges including the evil Team Genesis who plan to release Giratina from the Distortion World and use his power for world domination. Of course, it's up to you you to stop them, you are the protagonist after all.", + "features": [ + "Eevee as your starter;", + "Eevee evolves to Espeon and Umbreon with a Sunstone and Moonstone respectively;", + "All evolution stones can be purchased (at Drallia Town);", + "Trade evolutions evolve by Moonstone now:", + "11 gyms;", + "Run indoors;", + "New regions;", + "Fancy new tiles;", + "Fancy new story with twists and turns along the way." + ], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/3rojwlf24n32ak7/Giratina_Strikes_Back_Full.zip/file" + } + ] + }, + { + "stem": "Glazed Randomizer", + "title": "Pokémon Glazed Randomizer", + "platform": "GBA", + "base": "Emerald", + "version": null, + "status": null, + "generation": "Gen III", + "developer": "Pokemon who know Grass-type moves", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Glazed_Randomizer/Screenshot_20241108-1723232-c92470fe62764b99.png", + "source": "https://www.mediafire.com/file/zpfz66di7uqb4fa/Pokemon_Glazed_Randomized.gba/file/", + "library_path": "/storage1/Emulation/roms/gba/Pokemon Glazed Randomized.gba", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Glazed_Randomizer", + "type": [ + "Expansion" + ], + "tags": [ + "hack", + "platform/gba", + "base/emerald", + "type/expansion", + "source/discord" + ], + "summary": "Each Pokemon in it has a unique method of capture. Pokemon such as Pikachu, Meowth, Hitmonlee, and Hitmonchan cannot be caught with standard Poke Balls. You must obtain corresponding Pokemon balls for them, such as Great, Ultra, and so on. Viridian City Gym Leader can only be fought by Pokemon who know Grass-type moves, whereas Ecruteak City Gym Leader can only be fought by Pokemon who know Water-type moves. Furthermore, Pokemon Gyms in Pokemon Glazed Randomizer is more difficult than in Pokemon Emerald, but the rewards include Mega Stones, so battling for rank 1 is worthwhile! Also, take a look at Pokemon Moon Emerald Extreme Randomizer Furthermore, Pokemon Glazed Randomizer includes a plethora of additional features for players who enjoy challenges and variety!", + "notability": "", + "story": "", + "features": [ + "Gym leaders have decrease level pokemon", + "3 Regions (Tunod, Johto & Rankor)", + "All battle sprites have been updated to their newer sprites", + "Mega Evolution has been implemented as much as it will be in Glazed", + "Mega Evolution is a permanent change", + "Bulbasaur no longer has a catch rate of 0", + "All Pokemon now have their proper cry", + "Manaphy and Arceus have a proper sprite icon", + "The Froakie in Sprout Tower now acts as a Froakie, instead of as a Bellsprout", + "Added the Power Shack to Trainer Isle, to purchase type-boosting held items", + "Rankor Leaders and Mixed Leaders are enabled upon defeating the Rankor League", + "Trainer Isle's Tough Doubles, Rankor Gym Leaders, Mixed Gym Leaders, and Special Singles are available", + "TMs, HMs, and move tutors will not work for a Mega Evolved Pokemon. Mega Lucario has the same learnset as Lucario, while the other Mega Evolutions only learn one move, at level 1. This move differs between each Pokemon and should be able to be taught by using any.", + "[Download Here](https://www.mediafire.com/file/zpfz66di7uqb4fa/Pokemon_Glazed_Randomized.gba/file/)" + ], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/zpfz66di7uqb4fa/Pokemon_Glazed_Randomized.gba/file/" + } + ] + }, + { + "stem": "Glazed", + "title": "Pokémon Glazed", + "platform": "GBA", + "base": "Emerald", + "version": "9.2.0", + "status": "Complete", + "generation": "Gen 1–6 mons", + "developer": "redriders180", + "release_date": "2022-06-09", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Glazed/pokemon-glazed-6ff59e3322461a23.png", + "source": "https://www.pokecommunity.com/threads/pokemon-glazed.291376/", + "library_path": "roms/gba/Hacks/Pokemon - Glazed (Hack).gba", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Glazed", + "type": [ + "New Experience" + ], + "tags": [ + "hack", + "platform/gba", + "base/emerald", + "status/complete", + "type/newexperience" + ], + "summary": "A long-beloved new region (Tunod) crossing into Johto, with multiple starters incl. later gens. This is the polished modern build.", + "notability": "", + "story": "", + "features": [ + "Gym leaders have lower level pokemon", + "All battle sprites have been updated to their newer sprites", + "Mega Evolution has been implemented as much as it will be in Glazed", + "Mega Evolution is a permanent change", + "Bulbasaur no longer has a catch rate of 0", + "All Pokemon now have their proper cry", + "Manaphy and Arceus have a proper sprite icon", + "The Froakie in Sprout Tower now acts as a Froakie, instead of as a Bellsprout", + "Added the Power Shack to Trainer Isle, to purchase type-boosting held items", + "Ranker Leaders and Mixed Leaders are enabled upon defeating the Ranker League", + "Trainer Isle's Tough Doubles, Rankor Gym Leaders, Mixed Gym Leaders, and Special Singles are available", + "TMs, HMs, and move tutors will not work for a Mega Evolved Pokemon. Mega Lucario has the same learnset as Lucario, while the other Mega Evolutions only learn one move, at level 1. This move differs between each Pokemon and should be able to be taught by using any Move Relearner", + "The Pokedex displays the correct map, and (generally) the correct locations for each Pokemon. Some are slightly off, but a great majority are completely accurate", + "Pokemon capable of Mega Evolving are Venusaur, Charizard, Blastoise, Lucario, Salamence, Absol, and Manectric. The Mega Stone will Mega Evolve them all, while the Mega Stone X only works on Charizard", + "[8.6.3](https://www.mediafire.com/file/dyxr11wvrkie5ys/Glazed+v8.6.3.zip/file)", + "[9.1.0 Unofficial](https://www.mediafire.com/file/gjp0twn6voyy44a/Pokemon+Glazed+(Unofficial+v9.1.0).zip/file)" + ], + "links": [ + { + "label": "Source / info", + "url": "https://www.pokecommunity.com/threads/pokemon-glazed.291376/" + }, + { + "label": "Lookup", + "url": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Glazed%20rom%20hack" + } + ] + }, + { + "stem": "Glimmering Emerald", + "title": "Pokémon Glimmering Emerald", + "platform": "GBA", + "base": null, + "version": null, + "status": null, + "generation": null, + "release_date": "2023", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Glimmering_Emerald/FB_IMG_1703866257327-7bbd947ade22aa6e.jpg", + "source": "https://www.pokeharbor.com/2023/04/pokemon-glimmering-emerald/", + "library_path": "—", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Glimmering_Emerald", + "type": [ + "Expansion", + "Demake" + ], + "tags": [ + "hack", + "platform/gba", + "type/expansion", + "type/demake", + "source/discord" + ], + "summary": "**Creator:** paccy **Type:** GBA **Last Updated:** April 24, 2023", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Info / thread", + "url": "https://www.pokeharbor.com/2023/04/pokemon-glimmering-emerald/" + } + ] + }, + { + "stem": "Glowing Garnet Remix", + "title": "Pokémon Glowing Garnet Remix", + "platform": "GBA", + "base": "Ruby", + "version": null, + "status": "Ongoing", + "generation": null, + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Glowing_Garnet_Remix/151FBA54-CFC4-4DB0-99E4-FF4644E47B9F-d5a443093d21989d.jpg", + "source": "https://1fichier.com/?3el1819ti8fvs1ds45jh&af=2885774", + "library_path": "—", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Glowing_Garnet_Remix", + "type": [ + "Difficulty", + "QoL" + ], + "tags": [ + "hack", + "platform/gba", + "base/ruby", + "status/ongoing", + "type/difficulty", + "type/qol", + "source/discord" + ], + "summary": "Pokemon Glowing Garnet Remix Pokémon Glowing Garnet remix is a romhack of Pokémon Omega Ruby which changes the colors of every single obtainable shiny in the game and increased shiny odds to 1/100. Though this is the primary feature it also includes many Delta Pokémon forms which, like modern regional forms, change not only their color palette but also their typing, move set, stats etc. Other notable features include changes to trainer teams, edited wild encounters and various shiny hunting quality-of-life features such as honey being sold in the Pokémart. Q. What's the difference between Pokémon glowing garnet and Pokémon glowing garnet REMIX?
A. REMIX is a harder version with different Pokémon encounters mean to be played after the normal glowing garnet Q. so which do I play, REMIX or the original?
A. play the original first then REMIX Q. will this version be getting any updates?
A. only if major bugs or issues are discovered, there will be no new content Q. does REMIX have different shinies?
A. no, just the difficulty and encounters are different Q. is there anything new?
A. no, there is no new content, it's remixed but nothing is added Q. what are the shiny odds?
A. 1/50 Q. where can I get sweet scent early
A. same place, route 102 surskit [Download Link- 1 Fichier](https://1fichier.com/?3el1819ti8fvs1ds45jh&af=2885774)", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Link", + "url": "https://1fichier.com/?3el1819ti8fvs1ds45jh&af=2885774" + } + ] + }, + { + "stem": "Glowing Garnet", + "title": "Pokémon Glowing Garnet", + "platform": "GBA", + "base": "Ruby", + "version": null, + "status": "Complete", + "generation": null, + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Glowing_Garnet/IMG_9860-eb41d338f9d489db.png", + "source": "https://sto.romsfast.com/Mods/3DS/Pokemon%20Glowing%20Garnet%20Patch%208.0r4.7z?token=cyVZdVszClFCGyJ0XHFbNV9SRRtzIFoiWzNaVEYbeHMNdVtiWFZCXXBzXnFUYFxZQxc%3D", + "library_path": "—", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Glowing_Garnet", + "type": [ + "QoL" + ], + "tags": [ + "hack", + "platform/gba", + "base/ruby", + "status/complete", + "type/qol", + "source/discord" + ], + "summary": "Name: Pokemon Glowing Garnet Hacked by: ecnoid Based on: Pokemon Omega Ruby", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Link", + "url": "https://sto.romsfast.com/Mods/3DS/Pokemon%20Glowing%20Garnet%20Patch%208.0r4.7z?token=cyVZdVszClFCGyJ0XHFbNV9SRRtzIFoiWzNaVEYbeHMNdVtiWFZCXXBzXnFUYFxZQxc%3D" + } + ] + }, + { + "stem": "Gold Sinnoh", + "title": "Pokémon Gold Sinnoh", + "platform": "GBC", + "base": "Gold", + "version": "v.3.0", + "status": "Complete", + "generation": null, + "release_date": "2020", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Gold_Sinnoh/FB_IMG_1707158821361-1-d0c387afb5cd36bb.jpg", + "source": "https://www.mediafire.com/file/qafk0awdpx7fx1v/Pokemon_Gold_Sinnoh_%28Final%29.gbc/file", + "library_path": "—", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Gold_Sinnoh", + "type": [ + "Cosmetic" + ], + "tags": [ + "hack", + "platform/gbc", + "base/gold", + "status/complete", + "type/cosmetic", + "source/discord" + ], + "summary": "**Creator:** ericgall23 **Version:** v.3.0 **Status:** Completed **Last Update:** Nov. 7, 2020", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/qafk0awdpx7fx1v/Pokemon_Gold_Sinnoh_%28Final%29.gbc/file" + } + ] + }, + { + "stem": "Golden Glazed", + "title": "Pokémon Golden Glazed", + "platform": "GBA", + "base": null, + "version": null, + "status": null, + "generation": "Gen III", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Golden_Glazed/pokemon-golden-glazed-1-fc2231f8d8af5ab5.jpg", + "source": "https://www.mediafire.com/file/z6mor0kxgq1s326/Golden+Glazed+", + "library_path": "/storage1/Emulation/roms/gba/Golden Glazed (v2.6).gba", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Golden_Glazed", + "type": [ + "Expansion", + "New Experience" + ], + "tags": [ + "hack", + "platform/gba", + "type/expansion", + "type/newexperience", + "source/discord" + ], + "summary": "This is an unofficial modification of Pokémon Glazed, updated with Pokémon from newer generations and enhanced gameplay mechanics. Dive into a revamped experience featuring a fresh story, a new region, and additional surprises!\n\nPokemon Glazed Features\n\nFairy-type included\nChoose from five starters instead of three!\nTravel across the regions of Tunod, Johto, and Rankor\nDream World Pokémon\nPokémon from the Sinnoh, Unova, and Kalos regions\nTravel in the Pokémon World and the Real World\nCapture all five starters\nRematches with trainers, as well as all Gym Leaders\nAll legendaries from Kanto to Sin", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/z6mor0kxgq1s326/Golden+Glazed+" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/z6mor0kxgq1s326/Golden+Glazed+(v2.6" + } + ] + }, + { + "stem": "Golden Shield", + "title": "Pokémon Golden Shield", + "platform": "NDS", + "base": "HeartGold", + "version": null, + "status": null, + "generation": "Gen IV", + "developer": "cos_mino", + "release_date": "2025-11-15", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Golden_Shield/Pokemon-Golden-Shield-6a5154d6c1cb7a37.png", + "source": "https://mega.nz/file/uYUQALaC#Dht0tSd50ofRQHQVPZyw0TyNpc1O3xM6-UNw7ZJ0QHI", + "library_path": "/storage1/Emulation/roms/nds/goldenshield.nds", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Golden_Shield", + "type": [ + "Difficulty", + "Expansion" + ], + "tags": [ + "hack", + "platform/nds", + "base/heartgold", + "type/difficulty", + "type/expansion", + "source/discord" + ], + "summary": "**Pokémon Golden Shield** is an NDS ROM Hack by cos_mino based on Pokemon Heart Gold. It was last updated on November 15, 2025.", + "notability": "", + "story": "", + "features": [ + "Built on the hg-engine battle engine, including new moves, items, and abilities up to Generation 9", + "New Johto Pokédex built around the Sword & Shield Pokédex", + "Gen 8 wild encounters, plus updated trades, gifts, and eggs featuring Galar Pokémon", + "All trainers now use Pokémon from the Galar regional dex", + "Full [documentation](https://docs.google.com/spreadsheets/u/0/d/1luyayPeiLtratsoB8lgeZkRp0PLAbK0q/htmlview#gid=1276876334) covering Pokédex changes, encounter locations, boss trainer teams, headbutt encounters, items, and more", + "Native hardware compatible — play Pokémon Golden Shield on real 3DS hardware", + "Reusable TMs for easier team building", + "HM removal (only Surf and Fly are required), with early access to Rock Climb", + "Story faithfully preserved, with script adjustments to fit the new Pokédex; fully playable through post-game", + "Aesthetic upgrades inspired by Gen 8 UI for a modern look and feel" + ], + "links": [ + { + "label": "Download", + "url": "https://mega.nz/file/uYUQALaC#Dht0tSd50ofRQHQVPZyw0TyNpc1O3xM6-UNw7ZJ0QHI" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/zbd0rq0r201wnsm/goldenshield.zip/file" + }, + { + "label": "Download", + "url": "https://mega.nz/file/uYUQALaC" + }, + { + "label": "Guide / docs", + "url": "https://docs.google.com/spreadsheets/u/0/d/1luyayPeiLtratsoB8lgeZkRp0PLAbK0q/htmlview#gid=1276876334" + } + ] + }, + { + "stem": "Grand Colosseum", + "title": "Pokémon Grand Colosseum", + "platform": null, + "base": null, + "version": null, + "status": "Ongoing", + "generation": null, + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Grand_Colosseum/GC6E01_2022-04-08_05-40-34.png.b95646acd8e-e46456b7c9a93d82.png", + "source": "https://drive.google.com/file/d/1vvDQCw5v5iECA5sC06zcdLAyazzJ-EC0/view?usp=sharing", + "library_path": "—", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Grand_Colosseum", + "type": [ + "Difficulty", + "Expansion" + ], + "tags": [ + "hack", + "status/ongoing", + "type/difficulty", + "type/expansion", + "source/discord" + ], + "summary": "**Pokémon Grand Colosseum** not only acts as a difficulty hack to one of the hardest Pokemon games out there, but brings a host of QOL changes, including but not limited to: . Physical/Special split . Fairy type . 65 New moves . Stat/type/Ability updates and changes (In line with Drayano's hacks) . Revamped TM list with 8 new TMs . Infinite TM use . New shadow encounters . Gym themed Colosseum battles . Higher difficulty . Alolan Ninetales and Marowak . Paldean Tauros . Ability to access the PC anywhere by pressing R .Revamped UI **Creators Comment:** This post isn't as long as I'd like, but This is a simple hack in terms of features.", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://drive.google.com/file/d/1vvDQCw5v5iECA5sC06zcdLAyazzJ-EC0/view?usp=sharing" + } + ] + }, + { + "stem": "Greninja Z", + "title": "Pokémon Greninja Z", + "platform": "GBA", + "base": "Emerald", + "version": "1.0", + "status": "Complete", + "generation": "Gen III", + "developer": "Septianaditya070997", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Greninja_Z/IMG_9832-fab551d75190888a.jpg", + "source": "https://raw.githubusercontent.com/vbaemulator/GBA-Roms/main/Pokemon%20Greninja-Z%20Version.zip", + "library_path": "/storage1/Emulation/roms/gba/Pokemon Greninja-Z Version.zip", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Greninja_Z", + "type": [ + "Expansion" + ], + "tags": [ + "hack", + "platform/gba", + "base/emerald", + "status/complete", + "type/expansion", + "source/discord" + ], + "summary": "Greninja is the main protagonist of this hack. It is a large, frog-like Pokemon. With a body containing a dark blue color and some white large bubbles on its legs and arms, its appearance is a little bit weird. We have known that this Pokemon has a special and close relationship with Ash Ketchum, he obtained it in the Kalos Region and much later it became one of his strongest partners.\nGreninja has a strong skill called Water Shuriken, this can cause heavy damage to his opponents with the water element (of course, he is a ninja so his skill is related to Shuriken). This hack of Pokemon Greninj", + "notability": "", + "story": "", + "features": [ + "300 Catchable Pokemon From Generation 1-6", + "Starters from Gen VI.", + "All Mega Evolutions", + "Mega Stones can be bought In Lilcove Departmental Store", + "New Abilities And Moves", + "You can buy Mega Stones in the Lilycove City Department Store.", + "Greninja can be Mega Evolved.", + "[Download Link](https://raw.githubusercontent.com/vbaemulator/GBA-Roms/main/Pokemon%20Greninja-Z%20Version.zip)" + ], + "links": [ + { + "label": "Download", + "url": "https://raw.githubusercontent.com/vbaemulator/GBA-Roms/main/Pokemon%20Greninja-Z%20Version.zip" + } + ] + }, + { + "stem": "Heart and Soul", + "title": "Pokémon Heart and Soul", + "platform": "GBA", + "base": "FireRed", + "version": "1.2.1", + "status": "Ongoing", + "generation": "Johto", + "developer": "lildill01", + "release_date": "2025-09-27", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Heart_and_Soul/Pokemon-Heart-Soul-GBA-1600x1066-2e22d420f213b981.png", + "source": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Heart%20and%20Soul%20rom%20hack", + "library_path": "roms/gba/Hacks/Pokemon - Heart and Soul (Hack).gba", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Heart_and_Soul", + "type": [ + "New Experience", + "Demake" + ], + "tags": [ + "hack", + "platform/gba", + "base/firered", + "status/ongoing", + "type/newexperience", + "type/demake" + ], + "summary": "A Johto-focused adventure inspired by the Gen 2/HGSS games.", + "notability": "", + "story": "", + "features": [ + "Generation 1-3 Pokémon, plus their later gen evolutions (excluding the Regis and Jirachi)", + "Full Johto story and Kanto postgame from HGSS, including the Kimono Girls and Eusine", + "Following Pokémon", + "Overworld background Pokémon allow you to easily see the notable encounters on each route", + "Day/Night System with variable encounters", + "Dynamic overworld palettes", + "HGSS Music", + "Highly varied trainer teams and encounters, based on Crystal Legacy", + "HMs do not need to be taught to a Pokémon in order for it to be used", + "Apricons replaced with berries, Kurt will use them to make unique Pokéballs", + "Timekeeping does not track days of the week, Everything is progression based", + "16 Gym leader rematches", + "Two Safari Zones", + "Unique surfing Pokémon sprites", + "Customizable shiny rate", + "Physical/special split is toggleable", + "Fairy type is toggleable", + "AutoRun and FastSurf are toggleable", + "Quick run from wild battles using button combination", + "Ball prompts for quick catching", + "… and much more!" + ], + "links": [ + { + "label": "Lookup", + "url": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Heart%20and%20Soul%20rom%20hack" + } + ] + }, + { + "stem": "HeartGold Generation", + "title": "Pokémon HeartGold Generation", + "platform": "NDS", + "base": null, + "version": "s of the hack for those who pr", + "status": "Ongoing", + "generation": "Gen IV", + "release_date": "2025", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_HeartGold_Generation/Pokemon-HeartGold-Generations-6c037be06a9f4c27.png", + "source": "https://www.pokeharbor.com/2025/08/pokemon-heartgold-generations/", + "library_path": "/storage1/Emulation/roms/nds/Pokemon Heart Gold Generations Full Version 05AUG2025.nds", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_HeartGold_Generation", + "type": [ + "Expansion", + "QoL" + ], + "tags": [ + "hack", + "platform/nds", + "status/ongoing", + "type/expansion", + "type/qol", + "source/discord" + ], + "summary": "This hack is built using the hg-engine, a Gen 4 upgrade that brings many modern improvements to the HeartGold base.\nWhile Gen 4 hacking is often seen as lagging behind Gen 3, the goal with this project is to show what's possible and encourage more creators to explore it. HeartGold Generations includes Pokémon from Generations 1 through 9, quality-of-life updates like nature changing, and modern gameplay mechanics, all built into a familiar yet fresh experience.", + "notability": "", + "story": "", + "features": [ + "~835 Pokémon from over 400 families, across all 9 generations are available", + "All Trade-Evolutions and Cross-Generation Evolutions are available", + "Free Rare Candies to raise weaker wild pokemon", + "Buyable Nature Mints and Ability Capsules", + "Free Heart Scales after 7 Gyms for relearning moves", + "Level-Cap in place to prevent overleveling", + "Fully functional Mega Evolution", + "Level curve adjusted slightly to make Gym leaders more relevant", + "Gym Leaders have slightly altered teams to promote more Johto Pokémon use", + "Amount of Pokémon and general difficulty/moveset power are identical (Falkner's Pidgey to Hoothoot for example)", + "Some generic late-game trainers have had their levels boosted to be less irrelevant", + "Three versions of the hack for those who prefer different features (See download section)", + "[PokéHarbor Link]()" + ], + "links": [ + { + "label": "Info / thread", + "url": "https://www.pokeharbor.com/2025/08/pokemon-heartgold-generations/" + }, + { + "label": "Download", + "url": "https://drive.google.com/file/d/1P7HC6KeD3spiZ5OwZZ-XYG-4HHw8bjzB/view?usp=drivesdk" + } + ] + }, + { + "stem": "HeartGold Reloaded", + "title": "Pokémon HeartGold Reloaded", + "platform": "GBC", + "base": "Gold", + "version": null, + "status": "Complete", + "generation": null, + "release_date": "2024", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_HeartGold_Reloaded/Pokemon-Heart-Gold-Reloaded-9b7d16d17a1cdf16.jpg", + "source": "https://www.pokeharbor.com/2024/10/pokemon-heart-gold-reloaded/", + "library_path": "—", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_HeartGold_Reloaded", + "type": [ + "Expansion" + ], + "tags": [ + "hack", + "platform/gbc", + "base/gold", + "status/complete", + "type/expansion", + "source/discord" + ], + "summary": "https://www.pokeharbor.com/2024/10/pokemon-heart-gold-reloaded/ Pokémon HeartGold Reloaded is an enhanced version of Pokémon HeartGold, introducing new features like Generation 9 starters, a following Pokémon feature, a day-and-night cycle, and a fully explorable Johto region, with more to come. The game is still at an early stage of development, and a complete feature list hasn't been shared yet. If you've played and discovered additional features, please share them in the comments to help expand our list!", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Info / thread", + "url": "https://www.pokeharbor.com/2024/10/pokemon-heart-gold-reloaded/" + } + ] + }, + { + "stem": "Hearth", + "title": "Pokémon Hearth", + "platform": "GBA", + "base": "Emerald", + "version": "0.1.27", + "status": "Beta", + "generation": "Multi-gen", + "source": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Hearth%20rom%20hack", + "library_path": "roms/gba/Hacks/Pokemon - Hearth (Hack).gba", + "play_status": "Unplayed", + "type": [ + "New Experience", + "Expansion" + ], + "tags": [ + "hack", + "platform/gba", + "base/emerald", + "status/beta", + "type/newexperience", + "type/expansion" + ], + "summary": "An early-beta new-region expansion hack.", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Lookup", + "url": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Hearth%20rom%20hack" + } + ] + }, + { + "stem": "Hisui Red", + "title": "Pokémon Hisui Red", + "platform": "GBA", + "base": null, + "version": "completed 1.3", + "status": "Complete", + "generation": "Gen III", + "developer": "Slowbroth3r", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Hisui_Red/IMG_9934-3802175c92de57af.jpg", + "source": "https://raw.githubusercontent.com/vbaemulator/GBA-Roms/main/Pokemon%20Hisui%20Red%201.3.zip", + "library_path": "/storage1/Emulation/roms/gba/Hisui Red.gba", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Hisui_Red", + "type": [ + "Expansion", + "QoL" + ], + "tags": [ + "hack", + "platform/gba", + "status/complete", + "type/expansion", + "type/qol", + "source/discord" + ], + "summary": "Pokemon Hisui Red is a Fire Red hack with quality of life changes and features the Hisui region Pokemon, newly introduced in the new main franchise game, Pokemon Legends Arceus.", + "notability": "", + "story": "", + "features": [ + "Physical/Special Split", + "Colored Natures", + "BW Repel System", + "Poison Survival", + "Exp Catch", + "Level Cap(Disable)", + "Buy 10 pokeballs and get a Premier", + "Reusable TMs", + "Deletable HMs", + "Disable medicine Items battle usage", + "Some Abilities from gen VI", + "Some Moves from gen VI", + "Every Hisui Pokémon(in progress)", + "DPPT font(removed)", + "Starters Learnsets update to Legends Arceus Updates", + "New Sword And Shield type icons", + "v1.3 Changelog", + "Added Ursaluna.", + "Added Sneasler.", + "Added Hisui Pokeballs.", + "Added New Sprites.", + "Added Exp all.", + "Added New Hp Bars.", + "Evolution Methods:" + ], + "links": [ + { + "label": "Download", + "url": "https://raw.githubusercontent.com/vbaemulator/GBA-Roms/main/Pokemon%20Hisui%20Red%201.3.zip" + } + ] + }, + { + "stem": "Hoenn White 2", + "title": "Pokémon Hoenn White 2", + "platform": "NDS", + "base": "White 2", + "version": "beta 2.2", + "status": "Beta", + "generation": "Gen V", + "developer": "KingDrapion", + "release_date": "2019", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Hoenn_White_2/11BC1296-F8AC-424C-A8B0-65A7480623C7-3f5ff8b495cfff7d.jpg", + "source": "https://www.mediafire.com/file/v2mm94er581qfv9/HoennWB2d2.rar", + "library_path": "/storage1/Emulation/roms/nds/HoennWB2d2.rar", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Hoenn_White_2", + "type": [ + "Difficulty", + "New Experience" + ], + "tags": [ + "hack", + "platform/nds", + "base/white2", + "status/beta", + "type/difficulty", + "type/newexperience", + "source/discord" + ], + "summary": "Catalogued from the Discord ROM-hack archive. See links below.", + "notability": "", + "story": "", + "features": [ + "A whole new storyline never has seen before on a B2W2 hack! Travel through a new Unova region and take on the challenges that await you!", + "An upgraded Hoenn Pokedex. All Pokemon from the Hoenn dex will be in the game as well as selected non-Hoenn Pokemon for balancing reasons.", + "Hoenn Starters: Torchic, Treecko, and Mudkip. Which one will you choose for your journey?", + "The difficulty is increased drastically. Gym leaders as well as trainers will certainly test your skills as a Pokemon trainer!", + "Edited Pokémon Stats and abilities (For balancing reasons). Now you can choose your favorite Pokemon and not worry about its stats!", + "Edited Pokémon Movesets. The move sets for Pokemon are similar to those in Drayano Blaze Black 2 / Volt White 2.", + "Revamped Hoenn sprites. See the beauty of animated Hoenn sprites.", + "Challenge the Hoenn Gym Leaders (Like you can in Drayano Blaze B2 Volt W2). A bonus feature of the hack, the Hoenn Gym leaders are much harder than the Unova leaders.", + "https://www.mediafire.com/file/v2mm94er581qfv9/HoennWB2d2.rar" + ], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/v2mm94er581qfv9/HoennWB2d2.rar" + } + ] + }, + { + "stem": "Hoenn's Last Wish", + "title": "Pokémon Hoenn's Last Wish", + "platform": "GBA", + "base": "Emerald", + "version": "0.4.7", + "status": "Beta", + "generation": "Multi-gen", + "source": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Hoenn%27s%20Last%20Wish%20rom%20hack", + "library_path": "roms/gba/Hacks/Pokemon - Hoenn's Last Wish (Hack).gba", + "play_status": "Unplayed", + "type": [ + "New Experience", + "Expansion" + ], + "tags": [ + "hack", + "platform/gba", + "base/emerald", + "status/beta", + "type/newexperience", + "type/expansion" + ], + "summary": "An in-development Hoenn-set adventure on the Emerald expansion (early/beta).", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Lookup", + "url": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Hoenn%27s%20Last%20Wish%20rom%20hack" + } + ] + }, + { + "stem": "Hollow Woods", + "title": "Pokémon Hollow Woods", + "platform": "PC", + "base": null, + "version": null, + "status": null, + "generation": "Joiplay/RPGXP", + "developer": "Nineage", + "release_date": "2024-03-02", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Hollow_Woods/Screenshot_20240714_080223_Chrome-36f87753f40ccc3e.jpg", + "source": "https://www.mediafire.com/file/aiv0eb3jxbih5ti/Hollow+Woods+v1.0.8.zip/file", + "library_path": "/storage1/labdata/romhacks/library/Pokemon_Hollow_Woods/", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Hollow_Woods", + "type": [ + "Difficulty" + ], + "tags": [ + "hack", + "platform/pc", + "type/difficulty", + "source/discord" + ], + "summary": "**Summary** Welcome to Oblar, a Pokémon region split between two factions. Your mother, the leader of the Lavender Faction, tasks you with researching Oblar's unique Pokémon species. But you find much more: an ancient and mysterious Pokémon, an organization with questionable motives, tales from Oblar's past, and plenty of intrigue… …all centered around Oblar's Great Forest, where a powerful force is said to lurk.", + "notability": "", + "story": "", + "features": [ + "Regional Pokédex, featuring Pokémon and moves from the first **8 generations**.", + "Balanced experience**", + "37 regional forms** of existing Pokémon currently obtainable, more planned for future.", + "39 formal side quests**, variety of smaller content unlockable.", + "\"Secret Spots\"** areas accessible with special item.", + "\"Super trainers\"** extra-challenging trainers that will challenge you only if you battle every other trainer on a route.", + "New game options** (Nuzlocke, level caps, infinite rare candies and auto heal).", + "Exp. Share options**", + "In-game time cycles**" + ], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/aiv0eb3jxbih5ti/Hollow+Woods+v1.0.8.zip/file" + }, + { + "label": "Download", + "url": "https://mega.nz/file/hmFTjL7J#sDVmklZLZ9bFzk1sTg9ZzZOQbbdz_x0KyrPL_tjAeUw" + }, + { + "label": "Download", + "url": "https://mega.nz/file/hmFTjL7J" + }, + { + "label": "Link", + "url": "https://onedrive.live.com/?authkey=%21AE2ojUay70Zt_a0&id=65F48F421B14634F%211066&cid=65F48F421B14634F&parId=root&parQt=sharedby&o=OneUp" + } + ] + }, + { + "stem": "Horror White", + "title": "Pokémon Horror White", + "platform": "NDS", + "base": "White", + "version": "v1", + "status": "Complete", + "generation": "Gen V", + "developer": "Crash469", + "release_date": "2020", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Horror_White/IMG_8740-9887bbbe5ddd5e14.webp", + "source": "https://www.mediafire.com/file/7ujhzfvgvldc9dq/Pokemon_Horror_White_Completed_v1.zip/file", + "library_path": "/storage1/Emulation/roms/nds/Pokemon Horror White v1.nds", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Horror_White", + "type": [ + "Expansion" + ], + "tags": [ + "hack", + "platform/nds", + "base/white", + "status/complete", + "type/expansion", + "source/discord" + ], + "summary": "Pokemon Horror White is an NDS Rom Hack by Crash469 using Pokemon White in English. And It is now available to download", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/7ujhzfvgvldc9dq/Pokemon_Horror_White_Completed_v1.zip/file" + } + ] + }, + { + "stem": "Hydro Bliss", + "title": "Pokémon Hydro Bliss", + "platform": "PC", + "base": null, + "version": null, + "status": "Complete", + "generation": "Joiplay/RPGXP", + "developer": "5PastPoliwag", + "release_date": "2025-10-27", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Hydro_Bliss/Screenshot-2025-10-29-002331_1-67ba917fa8af8e08.png", + "source": "https://drive.google.com/drive/u/0/mobile/folders/11bsGLUlGuSu_NYeAb_BvKgOo0Jv8-DnF?pli=1", + "library_path": "/storage1/labdata/romhacks/library/Pokemon_Hydro_Bliss/", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Hydro_Bliss", + "type": [], + "tags": [ + "hack", + "platform/pc", + "status/complete", + "source/discord" + ], + "summary": "Pokemon Hydro Bliss is an ambitious open-world Pokemon adventure featuring two massive regions and over 900 custom maps to explore. Your existing Pokémon knowledge will only take you so far. It introduces 300 new moves, a complete mechanics overhaul, and a rebalance of every species, ensuring that both veterans and newcomers face new challenges at every turn.", + "notability": "", + "story": "", + "features": [ + "All species from gens 1-9 excluding some legendaries and paradox forms", + "3 Difficulty modes", + "Level Cap option", + "Adjusted stats and movesets for most species", + "Route design that makes wild battles optional", + "Multiple save files", + "Transfer Pokémon between save files", + "Dozens of original songs", + "Pacifist Battle format (no direct damage allowed!)", + "More informations**", + "[Documentation](https://drive.google.com/drive/u/0/mobile/folders/11bsGLUlGuSu_NYeAb_BvKgOo0Jv8-DnF?pli=1)" + ], + "links": [ + { + "label": "Download", + "url": "https://drive.google.com/drive/u/0/mobile/folders/11bsGLUlGuSu_NYeAb_BvKgOo0Jv8-DnF?pli=1" + }, + { + "label": "Download", + "url": "https://mega.nz/folder/WIVjjAjI#fJ-d_P5dBzaaoO91QCDOfg" + }, + { + "label": "Download", + "url": "https://drive.google.com/file/d/1aJoeIstme1uOisL9KdJNVI9pxCE5_-tL/view" + }, + { + "label": "Download", + "url": "https://mega.nz/folder/WIVjjAjI" + } + ] + }, + { + "stem": "Hyper Emerald Lost Artifact", + "title": "Pokémon Hyper Emerald Lost Artifact", + "platform": "GBA", + "base": "Emerald", + "version": "5.7", + "status": "Complete", + "generation": "Gen III", + "developer": "Destvol & Others", + "release_date": "2024", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Hyper_Emerald_Lost_Artifact/Pokemon-Hyper-Emerald-v5.5-Lost-Artifacts-2f94a478bd4eff23.webp", + "source": "https://www.pokeharbor.com/2024/03/pokemon-hyper-emerald-v5-5-lost-artifacts/", + "library_path": "/storage1/Emulation/roms/gba/Hyper EMR LA v5.7 bugfix 2.gba", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Hyper_Emerald_Lost_Artifact", + "type": [ + "Difficulty", + "Expansion" + ], + "tags": [ + "hack", + "platform/gba", + "base/emerald", + "status/complete", + "type/difficulty", + "type/expansion", + "source/discord" + ], + "summary": "[Source Website](https://www.pokeharbor.com/2024/03/pokemon-hyper-emerald-v5-5-lost-artifacts/) [Cheat Codes](https://www.pokeharbor.com/2024/07/pokemon-hyper-emerald-cheats/)", + "notability": "", + "story": "", + "features": [ + "Strengthened AI across generations.", + "Enhanced original storyline.", + "Includes all 898 Pokémon up to Sword and Shield.", + "Incorporates some original Pokémon.", + "Completed features such as mirror armor and chemical gases.", + "Completed moves from all 8 generations.", + "Finished skill animations.", + "Completed props for all 8 generations.", + "Introduced characteristic capsules and plasters for modification.", + "Mega Evolution, Z Moves & Gigantamax:", + "Pokémon receive experience in battle and training.", + "Includes Hoenn, Sinnoh, and Ultimate Cave.", + "16 gyms and three major alliances to challenge.", + "Sinnoh region offers town-to-town transport.", + "Real-time battle calculations.", + "Introduction of player trainer training levels.", + "Displays character bonuses.", + "Specific backgrounds for major venues and final battles.", + "Moved to earlier gameplay stages.", + "Improved egg hatching process.", + "Added riding devices and news searchers.", + "Price optimizations for items.", + "and much more ..", + "https://www.mediafire.com/file/svn1qavwsd9asts/Hyper+EMR+LA+v5.7+bugfix+2.zip/file" + ], + "links": [ + { + "label": "Info / thread", + "url": "https://www.pokeharbor.com/2024/03/pokemon-hyper-emerald-v5-5-lost-artifacts/" + }, + { + "label": "Info / thread", + "url": "https://www.pokeharbor.com/2024/07/pokemon-hyper-emerald-cheats/" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/svn1qavwsd9asts/Hyper+EMR+LA+v5.7+bugfix+2.zip/file" + }, + { + "label": "Download", + "url": "https://mega.nz/file/7YlwXI6Z#Z2PTvnlAVTE6Pno1kgHxlB-HpXRGQPPUq-1p74FrDRk" + }, + { + "label": "Download", + "url": "https://mega.nz/file/7YlwXI6Z" + } + ] + }, + { + "stem": "Inclement Emerald", + "title": "Pokémon Inclement Emerald", + "platform": "GBA", + "base": "Emerald", + "version": "1.13", + "status": "Ongoing", + "generation": "Gen 1–7 (+Gen 8 planned)", + "developer": "Buffel Salt", + "release_date": "2024", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Inclement_Emerald/RlPB2bR-3bcac470c478e5ca.webp", + "homepage": "https://www.pokecommunity.com/threads/pok%C3%A9mon-inclement-emerald-a-decomp-difficulty-hack-version-1-13.457039/", + "source": "https://www.hackdex.app/hack/inclement-emerald", + "library_path": "roms/gba/Hacks/Pokemon - Inclement Emerald (Hack).gba", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Inclement_Emerald", + "type": [ + "Difficulty", + "Expansion" + ], + "tags": [ + "hack", + "platform/gba", + "base/emerald", + "status/ongoing", + "type/difficulty", + "type/expansion", + "source/discord" + ], + "summary": "Pokémon Inclement Emerald is a decomp-based difficulty hack of Emerald by Buffel Salt (also behind Eternal X/Wilting Y and Photonic Sun/Prismatic Moon). It layers Normal, Hard and Challenge modes onto Hoenn with vastly improved AI that plays to win — punishing super-effective STAB, smart switching — alongside an expanded dex from Gen 1–7 and a full suite of quality-of-life features.", + "notability": "One of the most respected decomp difficulty hacks — a staple of the hardcore Nuzlocke scene alongside Radical Red.", + "story": "> The story is mainly the same as Pokémon Emerald. Not many changes to the story, with some slight differences caused by the new game-play and game mechanics", + "features": [ + "Three difficulty modes: Normal, Hard, Challenge", + "Greatly improved, less-forgiving battle AI", + "Challenge mode disables Shift style and bag use in trainer battles", + "Expanded dex across Gen 1–7 (Gen 8 support planned)", + "Modern moves and abilities", + "Extensive quality-of-life options" + ], + "links": [ + { + "label": "Source / info", + "url": "https://www.hackdex.app/hack/inclement-emerald" + }, + { + "label": "Lookup", + "url": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Inclement%20Emerald%20rom%20hack" + } + ] + }, + { + "stem": "Infernal Legend", + "title": "Pokémon Infernal Legend", + "platform": "GBA", + "base": null, + "version": "Completed 2.1", + "status": "Complete", + "generation": "Gen III", + "developer": "Pokepal17", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Infernal_Legend/IMG_9979-88173f1dfa93b344.jpg", + "source": "https://raw.githubusercontent.com/vbaemulator/GBA-Roms/main/Pokemon%20Infernal%20Legend%20v2.1.zip", + "library_path": "/storage1/Emulation/roms/gba/Pokemon_Infernal_Legend_beta_2.1.GBA", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Infernal_Legend", + "type": [], + "tags": [ + "hack", + "platform/gba", + "status/complete", + "source/discord" + ], + "summary": "10,000 years ago Mew created the universe and the world we live in. Mew created the common Pokemon we all see, but also made \"legendary\" Pokemon to balance out the events in the world. One of the \"legendary\" Pokemon was Ho-oh. Ho-oh held great power, and amazing agility and was as fast as a jet. It was known as the \"Infernal Legend\", a legend of fire so powerful, it could wipe out the entire human race if it desired.\n\nHo-oh had an adversary called Lugia, who it hated with all its heart. Ho-oh and Lugia waged a war that lasted 5000 years. During that time, Ho-oh, using its God-like power, creat", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://raw.githubusercontent.com/vbaemulator/GBA-Roms/main/Pokemon%20Infernal%20Legend%20v2.1.zip" + } + ] + }, + { + "stem": "Infinite Black 2", + "title": "Pokémon Infinite Black 2", + "platform": "NDS", + "base": "Black 2", + "version": null, + "status": "Complete", + "generation": "Gen V", + "developer": "Frost Falcon", + "release_date": "2025-12-05", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Infinite_Black_2/Pokemon-Infinite-Black-2-7df43d3f57a4d913.jpg", + "source": "https://mega.nz/file/XB8z1LwS#dL83e7blJ69QXNWxOT91P1VxWZ_kt6Rp8soTrvsvF1k", + "library_path": "/storage1/Emulation/roms/nds/ib2 v28.zip", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Infinite_Black_2", + "type": [ + "Difficulty", + "New Experience" + ], + "tags": [ + "hack", + "platform/nds", + "base/black2", + "status/complete", + "type/difficulty", + "type/newexperience", + "source/discord" + ], + "summary": "Welcome to Pokémon Infinite Black 2, a ROM hack designed to enhance variety, replayability, and explore fresh ideas. It features greatly expanded encounter tables and unique reworks to many Pokémon, giving underused species a chance to shine. The game is especially well-suited for Nuzlockes and other challenge runs, offering new strategic options and surprises throughout.", + "notability": "", + "story": "", + "features": [ + "Massive and diverse encounter pools, with at least 8 unique pokemon on most routes", + "Every non-legendary/mythical pokemon is obtainable by the end of the game", + "Balance changes to bring weak and redundant pokemon to new viability", + "Every pokemon has been revised with new moves, stat changes, and complete reworks", + "Weaker moves have been buffed, and brand new moves have been added to enhance some pokemon's specific playstyles", + "Trade evolutions are gone, and evolutions have been carefully balanced around the game's difficulty curve", + "A hand made webpage has been made to document balance and encounter changes", + "Redesigned trainer battles for a tough, but fair, challenge", + "Adjustments to the core battle mechanics, including the fairy typing and a slightly altered matchup chart to strengthen weaker types", + "The main story is unchanged, so you can still progress through the game just like in vanilla, however…", + "Optional story content has been added and some new areas are freely available to explore", + "Exp yields are incresed significantly and dedicated exp farms have been added to reduce the time spent grinding", + "More informations**", + "[Encounters](https://frostfalcon.github.io/NCB2/Pages/Encounters.html)", + "[Pokédex](https://frostfalcon.github.io/NCB2/Pages/Pokedex.html)" + ], + "links": [ + { + "label": "Download", + "url": "https://mega.nz/file/XB8z1LwS#dL83e7blJ69QXNWxOT91P1VxWZ_kt6Rp8soTrvsvF1k" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/zthzmq7cfae5f5q/ib2+v28.zip/file" + }, + { + "label": "Download", + "url": "https://mega.nz/file/XB8z1LwS" + }, + { + "label": "Download", + "url": "https://frostfalcon.github.io/NCB2/Pages/Encounters.html" + }, + { + "label": "Download", + "url": "https://frostfalcon.github.io/NCB2/Pages/Pokedex.html" + } + ] + }, + { + "stem": "Infinite Fusion", + "title": "Pokémon Infinite Fusion", + "platform": "PC", + "base": null, + "version": "6.7.2", + "status": "Complete", + "generation": "Gen 1–7 + fusions", + "developer": "Schrroms", + "release_date": "2025-09-29", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Infinite_Fusion/FB_IMG_1709754195267-745fda0d8b7fee05.jpg", + "homepage": "https://infinitefusion.fandom.com/", + "source": "https://www.pokeharbor.com/2023/03/pokemon-infinite-fusion/", + "library_path": "—", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Infinite_Fusion", + "type": [ + "New Experience" + ], + "tags": [ + "hack", + "platform/pc", + "status/complete", + "type/newexperience", + "source/discord" + ], + "summary": "Pokémon Infinite Fusion is a community-driven RPG Maker XP fangame built around one radical idea: fuse any two Pokémon with DNA Splicers to create one of 250,000+ unique hybrids, each with its own sprite, typing, stats, movepool and Pokédex entry. Begun by Schrroms in 2015 and still actively updated, it wraps a full Kanto/Johto adventure around an ever-growing library of community-made fusion sprites.", + "notability": "One of the most popular Pokémon fangames ever made. Its fusion system spawned an enormous spriting community and is frequently named alongside Reborn and Rejuvenation as an essential fan project.", + "story": "", + "features": [ + "Fuse any two Pokémon — 250,000+ unique combinations", + "DNA Splicers available from any PokéMart at the very start", + "20,000+ hand-made custom fusion sprites from the community", + "Full Kanto adventure plus a Johto post-game set 3 years before Gold/Silver", + "Gen 1–2 with evolutions, plus 100+ Pokémon from Gen 3–7", + "All 16 Kanto/Johto Gym Leaders, 25 legendaries, 40+ sidequests", + "Classic / Random / Reversed run modes", + "Windows, Linux, macOS and Android (via launchers)" + ], + "links": [ + { + "label": "Info / thread", + "url": "https://www.pokeharbor.com/2023/03/pokemon-infinite-fusion/" + } + ] + }, + { + "stem": "Infinity", + "title": "Pokémon Infinity", + "platform": "PC", + "base": null, + "version": null, + "status": null, + "generation": "Joiplay/RPGXP", + "source": "https://1fichier.com/?n6v1eej3pipn1ts9sx69&af=2885774", + "library_path": "/storage1/labdata/romhacks/library/Pokemon_Infinity/", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Infinity", + "type": [], + "tags": [ + "hack", + "platform/pc", + "source/discord" + ], + "summary": "RPGXP/Joiplay Fan Game Wiki and Download: https://p-infinity.fandom.com/wiki/Pokemon_Infinity_Wiki", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Link", + "url": "https://1fichier.com/?n6v1eej3pipn1ts9sx69&af=2885774" + }, + { + "label": "Link", + "url": "https://p-infinity.fandom.com/wiki/Pokemon_Infinity_Wiki" + } + ] + }, + { + "stem": "Inkwell", + "title": "Pokémon Inkwell", + "platform": "GBA", + "base": "Emerald", + "version": "1.04", + "status": "Ongoing", + "generation": "Multi-gen", + "source": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Inkwell%20rom%20hack", + "library_path": "roms/gba/Hacks/Pokemon - Inkwell (Hack).gba", + "play_status": "Unplayed", + "type": [ + "New Experience", + "Expansion" + ], + "tags": [ + "hack", + "platform/gba", + "base/emerald", + "status/ongoing", + "type/newexperience", + "type/expansion" + ], + "summary": "A new-adventure hack built on the Emerald expansion.", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Lookup", + "url": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Inkwell%20rom%20hack" + } + ] + }, + { + "stem": "Insurgence", + "title": "Pokémon Insurgence", + "platform": "PC", + "base": null, + "version": null, + "status": "Complete", + "generation": "Joiplay/RPGXP", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Insurgence/received_801409474975150-5171932232e8722f.jpg", + "source": "https://1fichier.com/?jhw4u35acs3wvrf2zg4f&af=2885774", + "library_path": "/storage1/labdata/romhacks/library/Pokemon_Insurgence/", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Insurgence", + "type": [ + "Difficulty", + "Expansion" + ], + "tags": [ + "hack", + "platform/pc", + "status/complete", + "type/difficulty", + "type/expansion", + "source/discord" + ], + "summary": "Handcrafted Easy, Normal & Hard difficulties to fit your playstyle! • A multitude of Challenge Modes such as Nuzlocke Mode, Solo Run, Iron Man, Randomizer, and many more! • Customize your character with different clothes, hairstyles, hats, backpacks , etc. • Catch all Pokemon up to 6th Generation, from Kanto pokemon to Kalos pokemon. • Create and customize your own secret base! Create obstacles and challenges for other players to experience! • New never-before-seen Mega Evolutions for both old and new Pokemon. • Brand new type of Held-Item, Armors will severely boost the defenses of a Pokemon and don't require a turn to activate! • No more need for a Pokemon with HMs learned in your party! Use HM items to use HMs without having the moves. • An extensive endgame with many quests to complete and locations to explore. https://p-insurgence.com/ [Download Link](https://1fichier.com/?jhw4u35acs3wvrf2zg4f&af=2885774)", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Link", + "url": "https://1fichier.com/?jhw4u35acs3wvrf2zg4f&af=2885774" + }, + { + "label": "Link", + "url": "https://p-insurgence.com/" + } + ] + }, + { + "stem": "Inverse Emerald", + "title": "Pokémon Inverse Emerald", + "platform": "GBA", + "base": "Emerald", + "version": "Final", + "status": null, + "generation": null, + "release_date": "2023", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Inverse_Emerald/Pokemon-Inverse-Emerald-GBA-1-8d86cef48669c2a6.jpg", + "source": "https://www.pokeharbor.com/2023/12/pokemon-inverse-emerald/", + "library_path": "—", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Inverse_Emerald", + "type": [ + "Expansion", + "QoL" + ], + "tags": [ + "hack", + "platform/gba", + "base/emerald", + "type/expansion", + "type/qol", + "source/discord" + ], + "summary": "# Details: Hack of: Emerald Updated: November 21, 2023", + "notability": "", + "story": "", + "features": [ + "Inverted Type Chart", + "Fairy Type", + "Physical/Special Split", + "Generation 7 Movesets", + "Update Catching UI", + "Modern Shiny Odds", + "Reusable TMs", + "All Pokémon that evolve through trade now evolve using the Linking Cord item and all Pokémon that evolve through trade while holding an item evolve with that item", + "Rare Candies can be purchased at any PokéMart after Petalburg City for $500.", + "All items used for evolution (stones, binding ropes, items that need to be held during trading) and Heart Scales can be purchased from the Lilycove Department Store", + "[PokéHarbor Link]()" + ], + "links": [ + { + "label": "Info / thread", + "url": "https://www.pokeharbor.com/2023/12/pokemon-inverse-emerald/" + } + ] + }, + { + "stem": "Ironmon Red Kaizo", + "title": "Pokémon Ironmon Red Kaizo", + "platform": "GBA", + "base": null, + "version": null, + "status": "Complete", + "generation": "Gen III", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Ironmon_Red_Kaizo/Pokemon-IRONeMON-Red-Kaizo-Edition-1-1-6129851b8883baa5.jpg", + "source": "https://www.mediafire.com/file/i4rue9fvfba3wns/IroneMon+Red+", + "library_path": "/storage1/Emulation/roms/gba/IroneMon Red (v1.2b).zip", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Ironmon_Red_Kaizo", + "type": [ + "Difficulty", + "New Experience" + ], + "tags": [ + "hack", + "platform/gba", + "status/complete", + "type/difficulty", + "type/newexperience", + "source/discord" + ], + "summary": "This is a Pokemon Ironmon ROM hack with the rules already implemented into the game's code! No need for self-imposement like you normally did in nuzlockes.", + "notability": "", + "story": "", + "features": [ + "Your adventure comes to an end when your pokemon passes out. You return to your mother, ready to begin your journey all over again!", + "Despite the fact that your journey may have resumed. Your attempts and playtime are both recorded. Everything is re-randomized with each retry!", + "The party can only have one pokemon. When you capture a new Pokemon, it automatically switches!", + "There is no way to use the pc at all. Only catching a pokemon allows you to pivot.", + "No more free heals, no more free treatment! Pokemon Centers now cost cash to heal.", + "There will be no more free heals or treatments! Pokemon Centers now charge money to heal.", + "Everything is a randomized! Wild Encounters, Trainer's Party, Evolutions, Learnable TM/HMs, Stat Spread, Abilities, and more…", + "Evolutions will always choose a pokemon of a similar type with higher overall stats. Special trainers will have their own parties from which they will select Pokemon at random. The original BST is retained in stat spreads.", + "Each area only allows you to catch one Pokemon. An area is a location in the game where you have met other players. This can include paths and caves.", + "Pokemon scale to the level of the party's current pokemon. Repels are always effective.", + "No need for HM slaves, you can use the HM once you have the badge.", + "Hehe, but only HMs required to complete the game. Fly and Flash aren't included…some caves are automatically lit.", + "Strong Pokemon will disobey you and obey when they feel like it.", + "Experience points are no longer awarded for wild encounters. Now you only get exp from battling trainers!", + "VS seeker also no longer works, therefore you can only fight trainers once!" + ], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/i4rue9fvfba3wns/IroneMon+Red+" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/i4rue9fvfba3wns/IroneMon+Red+(v1.2b" + } + ] + }, + { + "stem": "Jet Black", + "title": "Pokémon Jet Black", + "platform": "NDS", + "base": null, + "version": "1.6", + "status": "Complete", + "generation": "Gen V", + "developer": "Estreth", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Jet_Black/8943027F-988D-4AB1-8CFC-15BF3F89CB92-743c5dadff8d5baf.png", + "source": "https://drive.google.com/drive/folders/1E2Ojixt45zFXQA7mWJA70vagqOLqRYe2", + "library_path": "/storage1/Emulation/roms/nds/Pokemon JetBlack v1.6.nds", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Jet_Black", + "type": [ + "QoL" + ], + "tags": [ + "hack", + "platform/nds", + "status/complete", + "type/qol", + "source/discord" + ], + "summary": "It's QoL ROM Hack, increasing the availability of wild Pokemon, tweaking trainers, update Pokemon stats and learnsets, and more… It's complete in English. ADVERTISEMENT JetBlack was made with the goal of enhancing a playthrough of the first games in the 5th Generation of Pokemon (my favourite I should add, I'm a Gen 5 Slut) by increasing the availabilty of wild Pokemon, tweaking trainer rosters throughout the game while keeping the original spirit of the first instalments of Gen 5 intact such as, and this is the most important one, keeping the Main Campaign limited to the original Unova dex so only Gen 5 Pokemon are available.", + "notability": "", + "story": "", + "features": [ + "Wild Pokemon are more diverse throughout the game, with several species being added earlier to give more options during the early game. (Pidove in Route 2, Ducklett in Route 3 and a really elusive 1% Axew in Wellspring Cave to name a few). Post-Game areas also receive this change with as many Pokemon from previous Generations being added as possible.", + "[Game Docs & Infos](https://drive.google.com/drive/folders/1E2Ojixt45zFXQA7mWJA70vagqOLqRYe2)", + "[Download Link](https://drive.google.com/file/d/1VAZNkic60MdrgZKmhA5Vm7HdW6Lh6czG/view?usp=drivesdk)" + ], + "links": [ + { + "label": "Download", + "url": "https://drive.google.com/drive/folders/1E2Ojixt45zFXQA7mWJA70vagqOLqRYe2" + }, + { + "label": "Download", + "url": "https://drive.google.com/file/d/1VAZNkic60MdrgZKmhA5Vm7HdW6Lh6czG/view?usp=drivesdk" + } + ] + }, + { + "stem": "Johto Legends", + "title": "Pokémon Johto Legends", + "platform": "GBC", + "base": "Crystal", + "version": null, + "status": null, + "generation": null, + "developer": "Ferropexola", + "release_date": "2023-03-29", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Johto_Legends/Screenshot_20241108-1750362-1a1f54f8f9be2cf9.png", + "source": "https://www.mediafire.com/file/z1h2i3t2cxygd81/Pokemon+Johto+Legends+", + "library_path": "—", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Johto_Legends", + "type": [ + "Expansion" + ], + "tags": [ + "hack", + "platform/gbc", + "base/crystal", + "type/expansion", + "source/discord" + ], + "summary": "**Pokémon Johto Legends** is a GBC ROM Hack by Ferropexola based on Pokemon Crystal. It was last updated on March 29, 2023. **Descriptions:** Travel through the Johto region 15 years before Gold and Kris' Pokémon adventure. You'll see both new and familiar faces. As starters, choose between Dratini and Larvitar! Aim to collect all eight badges, face off against the Pokémon League, and record all known Pokémon in your Journal! Be on the lookout for a conspiracy! Strange black people have been poaching and kidnapping Pokémon all over the region! It might be up to you to solve this puzzle! The current version allows you to earn 7 badges.", + "notability": "", + "story": "", + "features": [ + "311 Pokémon from Gen 1-4 (Sylveon, Cursola, and the Fakémon Skarmini, a pre-evolution to Skarmory).", + "395 moves from across all Generations.", + "Physical/Special Split.", + "Fairy Type has been added.", + "Steel no longer resists Dark and Ghost.", + "Stat Experience has been replaced with EVs, with a max of 510.", + "Stat pages now updated.", + "Moves updated.", + "Movepools similar to Gen 7.", + "New items are available at the Battle Tower in exchange for BP.", + "New evolution methods (Link Cable item for the Trade Evolutions, and other evolution items).", + "HMs have been replaced by Key Items.", + "Running Shoes are available by default.", + "Multiple glitches have been fixed.", + "Fast Ball now has an increased catch rate against faster Pokémon.", + "The swarm system has been upgraded, and there is an increased shiny chance for the Pokémon swarming. There are 10 swarms.", + "You can find up to 5 berries per tree.", + "Separate pouch for berries (they have their modern names).", + "Smashing rocks can now give items (fossils revive).", + "Gym Leaders can be re-battled.", + "AI status moves no longer fail 25% of the time, and other minor AI fixes.", + "Exp.Share now act like they do in Generation 6. Exp.Share is optional.", + ":Download: [Mediafire](https://www.mediafire.com/file/z1h2i3t2cxygd81/Pokemon+Johto+Legends+(v0.3.5).zip/file/)" + ], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/z1h2i3t2cxygd81/Pokemon+Johto+Legends+" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/z1h2i3t2cxygd81/Pokemon+Johto+Legends+(v0.3.5" + } + ] + }, + { + "stem": "Kanto Black", + "title": "Pokémon Kanto Black", + "platform": "GBA", + "base": "FireRed", + "version": "2.0.8", + "status": "Complete", + "generation": "Gen III", + "developer": "Mystery Man", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Kanto_Black/IMG_9831-82a0ec8ac60ff562.webp", + "source": "https://raw.githubusercontent.com/vbaemulator/GBA-Roms/main/Pokemon%20Kanto%20Black%20v2.08.zip", + "library_path": "/storage1/Emulation/roms/gba/Pokemon Kanto Black v2.08.zip", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Kanto_Black", + "type": [ + "Expansion" + ], + "tags": [ + "hack", + "platform/gba", + "base/firered", + "status/complete", + "type/expansion", + "source/discord" + ], + "summary": "Mostly unchanged Kanto and Sevii Islands with a few new additions and different Pokemon. A world of the only 5th and 6th generation Pokemon, the only exception being Eevee. The 5th generation Pokemon are all in Kanto while the 6th generation Pokemon are all in the Sevii Islands. I thought it would make for an interesting experience playing through Kanto with Unova Pokemon.\nSuch includes battle facilities (i.e. battle factory equivalent) and small mini-games that net you rare items. Finally, and I would say one of its most salient points, the Pokemon in this hack have far more options available", + "notability": "", + "story": "", + "features": [ + "A world of only 5th and 6th generation Pokemon, the only exception being Eevee. The 5th generation Pokemon are all in Kanto while the 6th generation Pokemon are all in the Sevii islands.", + "There are probably more move tutor moves than TMs in this hack. They're intended to open up more strategies.", + "Difficulty rating system. What it does is rate your difficulty according to the settings you have picked. The settings you can toggle are: bosses with EVs and boss strategy levels. For now, it only encompasses bosses, but it is intended to be more expansive in the future.", + "Physical/special split", + "new generation moves, abilities, and battle items.", + "Sevii Islands! This time, you could visit them after defeating Lt. Surge! They contain the 6th generation Pokémon." + ], + "links": [ + { + "label": "Download", + "url": "https://raw.githubusercontent.com/vbaemulator/GBA-Roms/main/Pokemon%20Kanto%20Black%20v2.08.zip" + }, + { + "label": "Link", + "url": "https://discord.com/invite/8sjzNbFxNK" + } + ] + }, + { + "stem": "Kanto Complete", + "title": "Pokémon Kanto Complete", + "platform": "GBA", + "base": null, + "version": null, + "status": "Complete", + "generation": "Gen III", + "developer": "PurpleSpectre", + "release_date": "2024", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Kanto_Complete/Pokemon-Kanto-Complete-GBA-f430d4f6195bf046.jpg", + "source": "https://www.mediafire.com/file/9mkka2u7lr66nq6/Kanto+Complete.zip/file", + "library_path": "/storage1/Emulation/roms/gba/Kanto Complete.zip", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Kanto_Complete", + "type": [ + "Difficulty", + "Expansion" + ], + "tags": [ + "hack", + "platform/gba", + "status/complete", + "type/difficulty", + "type/expansion", + "source/discord" + ], + "summary": "## Notable changes Changes from Pokemon Fire Red Routes have been heavily modified in Kanto for a fresh experience as well as to provide access to all Pokémon on the National Dex All legendary/mythical Pokémon are accessible in the post-game Locations are detailed in the useful stuff section Town/City areas have minor modification Trainers have been added and modified to have a wide range of Pokémon from the National Dex Multi-battles, where you fight multiple trainers in succession, have been added Gym trainers, gym leaders, rival encounters, and elite four matches are all updated for challenging gameplay Elite trainers from other regions added, with their teams evocative of their instances in other games Post-game areas added: Champions Lounge MT Silver Dark Grove is a secret area off Route 1 that has an exorbitant entry fee, so while not technically post-game content access will be blocked for most players until end-game play Quality-of-Life changes: Some tutorial events have been removed to speed early gameplay All inaccessible Pokémon evolutions have been made possible in-game Oak's Starter Sanctuary makes all gen I, II, and III starters available from the beginning of the game Quality of Life Changes Access Oak's Starter Sanctuary by speaking to NPCs in Oak's Lab Fishing rods are available on Route 1, Celadon City, and Vermilion City Move Tutor added to Lavender Town HM02 Fly accessible in Vermilion City Lava Cookie vendor added to Route 13 Vanilla Game Aspects Retained Prologue, Story Arc, and Post-game remain intact Pokémon typing, move sets, and leveling/evolutions (except for the cases described in \"quality-of-life changes\")", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/9mkka2u7lr66nq6/Kanto+Complete.zip/file" + } + ] + }, + { + "stem": "Kanto Origins", + "title": "Pokémon Kanto Origins", + "platform": "GBA", + "base": null, + "version": null, + "status": null, + "generation": "Gen III", + "developer": "DragonsDen/Eric.CC", + "release_date": "2021", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Kanto_Origins/FB_IMG_1704227966419-80c4e2ddf3cb9bc0.jpg", + "source": "https://www.mediafire.com/file/zcikkd65q84et7w/kanto+origins.zip/file", + "library_path": "/storage1/Emulation/roms/gba/kanto origins.zip", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Kanto_Origins", + "type": [ + "Difficulty", + "Expansion" + ], + "tags": [ + "hack", + "platform/gba", + "type/difficulty", + "type/expansion", + "source/discord" + ], + "summary": "Explore a much darker Kanto, face new tougher challenges, and become the conqueror of the region.", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/zcikkd65q84et7w/kanto+origins.zip/file" + } + ] + }, + { + "stem": "Keishou", + "title": "Pokémon Keishou", + "platform": "PC", + "base": null, + "version": "1.12b", + "status": "Complete", + "generation": "Joiplay/RPGXP", + "developer": "OkunoShio", + "release_date": "2024", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Keishou/Screenshot_20250920_131850_Discord-5a16d65605c4e20b.png", + "source": "https://www.mediafire.com/file/fy587stn9pjh4h9/Pokemon+Keishou+v1.12b.zip/file", + "library_path": "/storage1/labdata/romhacks/library/Pokemon_Keishou/", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Keishou", + "type": [ + "Expansion" + ], + "tags": [ + "hack", + "platform/pc", + "status/complete", + "type/expansion", + "source/discord" + ], + "summary": "## The Story The Elder Lord is feeble and advanced in years, lacking the strength to lead and safeguard the lands. The Land Spirits are in turmoil, with the once dormant Kazan Mountain showing signs of eruption, and the snowfall on Shimo Mountain intensifying. The valley teeters on the brink of chaos, torn between ice and fire. The Elder Four are also in disarray. Restoring tranquility requires both leadership and composure. As the Elder Cycle nears its conclusion, it is customary to send the youthful descendants of Shison Village on a quest to seek a new Keishou-sha - a successor to the throne. Among them, the most formidable will ascend to become the new Lord of the Elder and restore peace to Kyujitsu Island. Only one who surpasses all eight Clan Leaders can claim the title of Lord, yet the Path of Ascension holds even more mysteries.", + "notability": "", + "story": "", + "features": [ + "Full story (10-15 hours of gameplay)", + "8 Clan Leaders and the Elder Four!", + "670+ Pokémon from gen 9!", + "Unique Wild Encounters & Trainer Battles utilizing Mid-Battle Dialogue!", + "Gather resources & craft supplies to improve your team & catch them all!", + "Terastallization, Dynamaxing & Evolution!", + "Max Raid Dens", + "Automatic Level Scaling.", + "Modern Quest System.", + "Visible Overworld Encounters.", + "Berry Pots. Easy on-the-go berry planting to stock up on important crafting supplies!", + "Speed Up.", + "Unreal Time System.", + "New Poké Ball Capabilities.", + "4 Difficulty Settings.", + "Resistor Charm - Reduces damage from super effective attacks by 25%.", + "STAB Charm - Increases Same-Type Attack Bonus by 25%.", + "## :Download: [Download Here](https://www.mediafire.com/file/fy587stn9pjh4h9/Pokemon+Keishou+v1.12b.zip/file)" + ], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/fy587stn9pjh4h9/Pokemon+Keishou+v1.12b.zip/file" + } + ] + }, + { + "stem": "Kosmo", + "title": "Pokémon Kosmo", + "platform": "GBA", + "base": "FireRed", + "version": null, + "status": null, + "generation": "Gen III", + "developer": "WeslyFG", + "release_date": "2024", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Kosmo/IMG_8730-d0e63a5af236821b.png", + "source": "https://www.mediafire.com/file/81owle5hek6a32s/kosmo.zip/file", + "library_path": "/storage1/Emulation/roms/gba/kosmo.zip", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Kosmo", + "type": [ + "New Experience", + "Cosmetic" + ], + "tags": [ + "hack", + "platform/gba", + "base/firered", + "type/newexperience", + "type/cosmetic", + "source/discord" + ], + "summary": "Pokemon Kosmo is a GBA Rom Hack by WeslyFG based on Pokemon FireRed in English. And it is now available to download.", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/81owle5hek6a32s/kosmo.zip/file" + } + ] + }, + { + "stem": "Lavender Tales", + "title": "Pokémon Lavender Tales", + "platform": "GBA", + "base": null, + "version": null, + "status": null, + "generation": "Gen III", + "developer": "EXCMOJACK", + "release_date": "2023", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Lavender_Tales/FB_IMG_1704768602122-71c16f04540436e8.jpg", + "source": "https://www.mediafire.com/file/m4284xg9kt7znj4/Pokemon+lavender+tales.gba/file", + "library_path": "/storage1/Emulation/roms/gba/Pokemon lavender tales.gba", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Lavender_Tales", + "type": [ + "New Experience" + ], + "tags": [ + "hack", + "platform/gba", + "type/newexperience", + "source/discord" + ], + "summary": "Begin your journey in Lavender Tower, a thrilling gameplay with a compelling storyline! Immerse yourself in a sequence of tasks that will push you to your limits while exploring the haunting and enigmatic ambiance. Confront formidable ghost Pokémon in battles, showing your strategic prowess.", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/m4284xg9kt7znj4/Pokemon+lavender+tales.gba/file" + } + ] + }, + { + "stem": "Lazarus", + "title": "Pokémon Lazarus", + "platform": "GBA", + "base": "Emerald (TrashMan)", + "version": "v2", + "status": "Ongoing", + "generation": "Multi-gen", + "developer": "Nemo622", + "release_date": "2025-02-12", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Lazarus/pokemon-lazarus-header-38d76bd76490a0d3.jpg", + "source": "https://ko-fi.com/nemo622", + "library_path": "roms/gba/Hacks/Pokemon - Lazarus (Hack).gba", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Lazarus", + "type": [ + "New Experience", + "Expansion" + ], + "tags": [ + "hack", + "platform/gba", + "base/emeraldtrashman", + "status/ongoing", + "type/newexperience", + "type/expansion" + ], + "summary": "The Ilios region — a story-rich expansion hack by Nemo622 with new mechanics and detailed documentation.", + "notability": "", + "story": "", + "features": [ + "A brand new region based on the Aegean Sea (mainland Greece + surrounding islands)", + "A new story, with new characters and a spooky new evil team to defeat", + "Charming GBC-style graphics for just about every menu, Pokémon, and object in the overworld", + "9 Starters Options", + "400+ Pokemon from generations 1 to 9.", + "A variety of exciting new features, such as overworld Pokémon encounters and a dynamic Day/Night system", + "2 Difficulty Modes - Normal & Hard", + "Side Quests with Rewards", + "In-game Cheats Function", + "Following Pokemon.", + "Improved Berry System", + "Difficulty Modes**", + "Pokémon Lazarus has a Difficulty Mode setting, which can be changed on the second page of the Options menu alongside various other settings!", + "Normal Mode: Soft Level Caps, Standard Gym Leader Teams. Can likely beat the game with most Pokémon teams, with a few battles requiring extra planning.", + "Hard Mode: Hard Level Caps, Modified Gym Leaders to be more difficult fights. Opponents gain extra levels as the game progresses, ending in a +5 level bonus to opponents. Planning before Gym battles is key, as their Pokémon have stronger moves and more coverage.", + "Downlaod**", + ":Download: [Mega](https://mega.nz/file/aOJ3QByR#TdsP56ApbRO_zgGTtApLLOYz3-lrNVVVlhhuxRfaNfk)", + ":Download: [Mediafire](https://www.mediafire.com/file/spjxd7cti01kpye/Pokemon+Lazarus+v2.0.zip/file?fbclid=Iwb21leAP-iQNjbGNrA_6I_2V4dG4DYWVtAjExAHNydGMGYXBwX2lkDDM1MDY4NTUzMTcyOAABHi1ESZS2lRrScgcTeZcCitp4pf8wyry3gtyxGUHftGVAdbvzMr5sk1fwNKi2_aem_NZnrCqYlqKx9hP_wryCnFQ)" + ], + "links": [ + { + "label": "Source / info", + "url": "https://ko-fi.com/nemo622" + }, + { + "label": "Lookup", + "url": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Lazarus%20rom%20hack" + } + ] + }, + { + "stem": "Lazy Green", + "title": "Pokémon Lazy Green", + "platform": "GBA", + "base": null, + "version": "of FireRed/LeafGreen with thou", + "status": "Ongoing", + "generation": "Gen III", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Lazy_Green/Pokemon-Lazy-Green-GBA-e898b8b5ffe027d1.png", + "source": "https://www.mediafire.com/file/2g02tzsz8s2x362/lazygreen+v1.1.15.gba/file", + "library_path": "/storage1/Emulation/roms/gba/lazygreen v1.1.15.gba", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Lazy_Green", + "type": [ + "Expansion" + ], + "tags": [ + "hack", + "platform/gba", + "status/ongoing", + "type/expansion", + "source/discord" + ], + "summary": "Try Pokémon Lazy Green—an enhanced version of FireRed/LeafGreen with thoughtful updates for a smoother, more enjoyable gaming experience!", + "notability": "", + "story": "", + "features": [ + "Gain 1 to 3 levels per battle, making grinding faster and more efficient.", + "You can change the level cap to the lowest mon Pokemon from the remaining bosses. Just talk to the NPC in Route 2 near Pewter City", + "Trade evolutions are removed; you can use the Linking Cord from the Celadon Department Store.", + "All Starters Available: Charmander is on Route 24, Bulbasaur in Cerulean City, and Squirtle in Vermilion City.", + "The stats screen now shows each Pokémon's IVs.", + "EVs are disabled in battles by default. Speak with an NPC in Pallet Town to re-enable them, and once you reach Celadon, you have full EV control with cheaper vitamins and EV-reducing berries.", + "Optional Badge Boost: Defaulted off, but can be activated by an NPC in Pewter City to enable badge-based stat boosts.", + "Full Regional Dex Access: All version-exclusive Pokémon are catchable in Lazy Green. Refer to the documentation for route changes.", + "Infinite Eevees in Celadon: You can have a team full of Vaporeons!", + "Safari Zone Overhaul", + "All TMs for Sale: TMs in Celadon's store unlock progressively as you advance.", + "1 NPC allows you to reuse move tutors anytime.", + "Cheaper Game Corner: Coins and prizes are more affordable, making rare Pokémon.", + "Shiny chance boosted to 5%.", + "An NPC in Celadon enables cross-gen evolutions temporarily, allowing access to Pokémon like Espeon and Crobat before the Elite Four.", + "Route 22 NPC grants IV-maxing items after you defeat their randomized team.", + "For added difficulty, an NPC on Route 2 offers a Challenge Mode tailored just for you!", + "Note:", + "Pokémon Lazy Green keeps things simple—no Physical/Special split or Pokémon beyond Gen 3, with some added conveniences!", + "[Mediafire](https://www.mediafire.com/file/2g02tzsz8s2x362/lazygreen+v1.1.15.gba/file)" + ], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/2g02tzsz8s2x362/lazygreen+v1.1.15.gba/file" + } + ] + }, + { + "stem": "Leaf Green Extreme Randomizer", + "title": "Pokémon Leaf Green Extreme Randomizer", + "platform": "GBA", + "base": null, + "version": null, + "status": "Complete", + "generation": "Gen III", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Leaf_Green_Extreme_Randomizer/maxresdefault_2-98610fb390f39bbc.jpg", + "source": "https://www.mediafire.com/file/wjcp641j81hpdln/Leaf_Green_Extreme_Randomizer.zip/file/", + "library_path": "/storage1/Emulation/roms/gba/Leaf Green Extreme Randomizer.gba", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Leaf_Green_Extreme_Randomizer", + "type": [ + "Difficulty" + ], + "tags": [ + "hack", + "platform/gba", + "status/complete", + "type/difficulty", + "source/discord" + ], + "summary": "What's been Randomized? Wild Pokemon Trainer's parties Pokemon Types/Moves/Abilities Evolutions I wanted to randomize the color palettes as well but, I couldn't find a program that would allow me to do that. I'll continue the search for it, and when I find it, I'll make another Leaf Green Randomizer. Nuzlocke Rules (If you want to try) All Pokemon that you catch must be nicknamed. Only the first Pokemon you encounter on a new route or area can be caught. If a Pokemon passes out, it is considered dead and cannot be used again. The silent protagonist of Leaf Green is a young boy who lives in Pallet Town, a small town. A voice warns players to stop after they embark on a journey and venture alone into the tall grass. Professor Oak, a well-known Pokémon researcher, informs the player that such grass is frequently the habitat of wild Pokémon and that encountering them alone can be extremely dangerous. He takes the player to his laboratory, where they meet Oak's grandson, a fellow Pokémon Trainer. Both the player and their opponent are instructed to choose a starter Pokémon for their journey. The opponent then challenges them to a Pokémon battle with their newly acquired Pokémon and continues to battle the player at various points throughout the game. When the player arrives in the next city, he or she is tasked with delivering a parcel to Professor Oak. When they return to the laboratory, they are given a Pokédex, a high-tech encyclopedia that records the entries of any captured Pokémon. Oak then asks the player to help him realize his dream of compiling a complete list of all Pokémon in the game. [Download Here]()", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/wjcp641j81hpdln/Leaf_Green_Extreme_Randomizer.zip/file/" + } + ] + }, + { + "stem": "Legends - Kingdom Hearts", + "title": "Pokémon Legends - Kingdom Hearts", + "platform": "Patch", + "base": "Emerald", + "version": "3.5 and was last updated on Ja", + "status": "Complete", + "generation": "Gen III", + "developer": "FedJumperGaming", + "release_date": "2025-01-02", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Legends_-_Kingdom_Hearts/FB_IMG_1769089257013-43ec338751bbd2bd.jpg", + "source": "https://www.mediafire.com/file/gf20u9u5hwor787/Kingdom_Hearts_3.5-_Princess_Of_Hearts_v2.5_%2528Vanitas_added%2529.ips/file", + "library_path": "/storage1/labdata/romhacks/library/Pokemon_Legends_-_Kingdom_Hearts/", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Legends_-_Kingdom_Hearts", + "type": [ + "New Experience" + ], + "tags": [ + "hack", + "platform/patch", + "base/emerald", + "status/complete", + "type/newexperience", + "source/discord" + ], + "summary": "Pokemon Legends - Kingdom Hearts introduces a massive crossover featuring Kingdom Hearts items, Final Fantasy moves, and a fully redesigned Heartless/Nobody Pokédex. A new era of crossover chaos is unfolding. Your Pokémon Emerald hack is evolving into a full‑scale fusion of two legendary universes, and the results are nothing short of spectacular.\n\nThe world is becoming darker, deeper, and more magical as both universes collide. Pokémon Legends: Kingdom Hearts is expanding in a big way. Sora now has Heart Drive Forms (Blazeheart, Aethermind, Bondflare), Heartless Torchic (Ashclaw) can be purif", + "notability": "", + "story": "", + "features": [ + "New Region", + "New Story", + "Unique lore", + "Heartless, Nobodies, Kingdom Hearts‑inspired Pokemon and moves.", + "A fully redesigned Heartless/Nobody Pokédex.", + "New items", + "A lineup of Kingdom Hearts characters joining the adventure.", + "Sora now has Heart Drive Forms (Blazeheart, Aethermind, Bondflare).", + "Kingdom Hearts items", + "Final Fantasy moves", + "A Legendary Heartless Pokémon from the Kanto Region.", + "Every trainer class has been replaced and become Organization XIII", + "Discover never‑before‑seen locations.", + "Evolution Through Keyblades - Fire Stone → Hidden Dragon Keyblade.", + "Weapon Shops - Weapon choice becomes a strategic layer of progression.", + "Smart TV Integration -Smart TVs now act as PC access point." + ], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/gf20u9u5hwor787/Kingdom_Hearts_3.5-_Princess_Of_Hearts_v2.5_%2528Vanitas_added%2529.ips/file" + }, + { + "label": "Download", + "url": "https://share.ue.internxt.com/sh/file/AaI2zNugTB6BiJKwy_fwsA/7EzGEskh" + } + ] + }, + { + "stem": "Legends X", + "title": "Pokémon Legends X", + "platform": null, + "base": null, + "version": null, + "status": null, + "generation": null, + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Legends_X/IMG_9960-d4f791ff90348f47.webp", + "source": "https://secure.eu.internxt.com/sh/file/QEW2CLKMQpSkQrZwT50HCQ/Zj3kmex8", + "library_path": "—", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Legends_X", + "type": [ + "New Experience" + ], + "tags": [ + "hack", + "type/newexperience", + "source/discord" + ], + "summary": "Pokemon Legends X", + "notability": "", + "story": "", + "features": [ + "15+ brand‑new items", + "151+ Xeon regional variants", + "2 completely new towns to explore", + "Completely reworked all typings", + "Introduced dual typings", + "Added 500+ new items to deepen strategy and exploration", + "Frequent Team Rocket encounters with valuable item rewards", + "Dynamic weather across most routes and cities", + "Unique NPCs", + "Themed trainers", + "New shops", + "Fly access", + "[Download Link](https://secure.eu.internxt.com/sh/file/QEW2CLKMQpSkQrZwT50HCQ/Zj3kmex8)" + ], + "links": [ + { + "label": "Download", + "url": "https://secure.eu.internxt.com/sh/file/QEW2CLKMQpSkQrZwT50HCQ/Zj3kmex8" + } + ] + }, + { + "stem": "Let's Go Peerless Pikachu & Exquisite Eevee", + "title": "Pokémon Let's Go: Peerless Pikachu & Exquisite Eevee", + "platform": null, + "base": null, + "version": "1.0", + "status": null, + "generation": "Gen VII", + "developer": "RihannaRTT", + "release_date": "2026", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Let_s_Go_Peerless_Pikachu_Exquisite_Eevee/FB_IMG_1773851746282-b8034d6c41c4724f.jpg", + "source": "https://drive.google.com/drive/folders/15r2AOf5GLndqo0qGD7rgLLwoYE4d_WiC?usp=sharing", + "library_path": "/storage1/labdata/romhacks/library/Pok_mon_Let_s_Go_Peerless_Pikachu_Exquisite_Eevee/", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Let_s_Go_Peerless_Pikachu_Exquisite_Eevee", + "type": [ + "Difficulty" + ], + "tags": [ + "hack", + "type/difficulty", + "source/discord" + ], + "summary": "Hack: Pokémon Let's Go: Pikachu & Eevee Release: March 18, 2026", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://drive.google.com/drive/folders/15r2AOf5GLndqo0qGD7rgLLwoYE4d_WiC?usp=sharing" + }, + { + "label": "Link", + "url": "https://gamebanana.com/mods/661332" + }, + { + "label": "Link", + "url": "https://www.youtube.com/watch?v=2NebA6y3aIk" + }, + { + "label": "Link", + "url": "https://ibb.co/album/nqLMmG" + } + ] + }, + { + "stem": "Let's Go Lugia", + "title": "Pokémon Let's Go Lugia", + "platform": "GBA", + "base": "FireRed", + "version": null, + "status": null, + "generation": "Gen III", + "developer": "Ricardo Stone Team", + "release_date": "2020", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Let_s_Go_Lugia/Pokemon-Lets-Go-Lugia-d63f4ef31e2bcdcb.jpg", + "source": "https://www.mediafire.com/file/lewchb3r3x04wpf/Pokémon+Lets+Go+Lugia+English+", + "library_path": "/storage1/Emulation/roms/gba/Pokémon Lets Go Lugia English (1).zip", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Let_s_Go_Lugia", + "type": [], + "tags": [ + "hack", + "platform/gba", + "base/firered", + "source/discord" + ], + "summary": "A hack based on Fire Red, its story is based on Soul Silver with slight changes. Let's go Lugia aims to make the user go back in time and play a hack, only with Pokémon from Johto and their evolutions.\n\nSome from Kanto were added due to GYM leaders or ELITE 4 using these Pokémon. We want to allow you to use the best of each Pokémon and assemble your dream team with just 199 Pokémon.\n\nThe difficulty of the game is NORMAL even so we activate the EXP.ALL for those trainers who are not very fond of training each Pokémon individually, the game allows you to use. Infinite TMs and all evolutionary st", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/lewchb3r3x04wpf/Pokémon+Lets+Go+Lugia+English+" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/lewchb3r3x04wpf/Pokémon+Lets+Go+Lugia+English+(1" + } + ] + }, + { + "stem": "LetΓÇÖs Beat Mew", + "title": "Pokémon Let’s Beat Mew", + "platform": "GBA", + "base": null, + "version": "1.0 Completed", + "status": "Complete", + "generation": "Gen III", + "developer": "Ken mahim", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Let_s_Beat_Mew/IMG_0110-e99536b181777c12.jpg", + "source": "https://raw.githubusercontent.com/vbaemulator/GBA-Roms/main/Pokemon%20Let’s%20Beat%20Mew.zip", + "library_path": "/storage1/Emulation/roms/gba/Pokemon Let’s Beat Mew.zip", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Let_s_Beat_Mew", + "type": [ + "Expansion" + ], + "tags": [ + "hack", + "platform/gba", + "status/complete", + "type/expansion", + "source/discord" + ], + "summary": "Pokemon Let's Beat Mew is a Pokemon Fire Red Hack with Mega Evolution, Improved Graphics & Updated Moves!", + "notability": "", + "story": "", + "features": [ + "Improved outdoor graphics", + "Mega Evolution", + "New moves from generations 4 & 5", + "Based loosely on the switch games", + "& much more!", + "## Download Links", + "[Download Link](https://raw.githubusercontent.com/vbaemulator/GBA-Roms/main/Pokemon%20Let's%20Beat%20Mew.zip)" + ], + "links": [ + { + "label": "Download", + "url": "https://raw.githubusercontent.com/vbaemulator/GBA-Roms/main/Pokemon%20Let’s%20Beat%20Mew.zip" + }, + { + "label": "Download", + "url": "https://raw.githubusercontent.com/vbaemulator/GBA-Roms/main/Pokemon%20Let" + } + ] + }, + { + "stem": "Light Platinum", + "title": "Pokémon Light Platinum", + "platform": "GBA", + "base": "Ruby", + "version": "1.1", + "status": "Complete", + "generation": "Gen 1–4 mons", + "developer": "Wesley FG", + "release_date": "2017", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Light_Platinum/IMG_6453-8691036ac3997ccb.webp", + "source": "https://www.pokecommunity.com/threads/pokemon-light-platinum.171377/", + "library_path": "roms/gba/Hacks/Pokemon - Light Platinum (Hack).gba", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Light_Platinum", + "type": [ + "New Experience" + ], + "tags": [ + "hack", + "platform/gba", + "base/ruby", + "status/complete", + "type/newexperience" + ], + "summary": "A classic: the Zhery region with two leagues, Gen 4 mons, and a globe-trotting plot. Hugely popular older hack.", + "notability": "", + "story": "> You wake up in a mysterious place and witness a fight between Arceus, Dialga, Palkia, and Giratina. \"It must be a nightmare,\" you think. Where are you and what is going on? When the dream ends, you appear to be in your house but you get a message that the Professor needs your help. Only you know the secret language of Alpha, a language passed down by your father. It is the only key to solving the problem. Did that dream have any effect on your world? Get a Pokémon, travel across the world, and save it before it's too late!", + "features": [], + "links": [ + { + "label": "Source / info", + "url": "https://www.pokecommunity.com/threads/pokemon-light-platinum.171377/" + }, + { + "label": "Lookup", + "url": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Light%20Platinum%20rom%20hack" + } + ] + }, + { + "stem": "Liquid Crystal", + "title": "Pokémon Liquid Crystal", + "platform": "GBA", + "base": "FireRed", + "version": "3.3", + "status": "Complete", + "generation": "Gen 1–4 mons", + "release_date": "2020-09-13", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Liquid_Crystal/IMG_9770-df61e21d6465b46e.jpg", + "source": "https://www.pokecommunity.com/threads/pokemon-liquid-crystal.158473/", + "library_path": "roms/gba/Hacks/Pokemon - Liquid Crystal (Hack).gba", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Liquid_Crystal", + "type": [ + "New Experience", + "Demake" + ], + "tags": [ + "hack", + "platform/gba", + "base/firered", + "status/complete", + "type/newexperience", + "type/demake" + ], + "summary": "A Johto (Crystal) remake on GBA with the Orange Islands postgame and modern conveniences.", + "notability": "", + "story": "", + "features": [ + "Updated graphics,maps and music", + "Day and night system", + "Includes Johto, Kanto and the Orange Islands", + "Real season based weather effects", + "Explore new & hidden areas", + "[Download](https://raw.githubusercontent.com/vbaemulator/GBA-Roms/main/Pokemon%20Liquid%20Crystal%20(v3.3.00512).zip)" + ], + "links": [ + { + "label": "Source / info", + "url": "https://www.pokecommunity.com/threads/pokemon-liquid-crystal.158473/" + }, + { + "label": "Lookup", + "url": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Liquid%20Crystal%20rom%20hack" + } + ] + }, + { + "stem": "Low Budget Crystal", + "title": "Pokémon Low Budget Crystal", + "platform": "GBC", + "base": "Crystal", + "version": null, + "status": "Complete", + "generation": "Gen 2", + "source": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Low%20Budget%20Crystal%20rom%20hack", + "library_path": "roms/gbc/Hacks/Pokemon - Low Budget Crystal (Hack).gbc", + "play_status": "Unplayed", + "type": [ + "Vanilla+", + "QoL" + ], + "tags": [ + "hack", + "platform/gbc", + "base/crystal", + "status/complete", + "type/vanilla+", + "type/qol" + ], + "summary": "A light, faithful Crystal enhancement — quality-of-life tweaks and availability fixes without changing the core game.", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Lookup", + "url": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Low%20Budget%20Crystal%20rom%20hack" + } + ] + }, + { + "stem": "Luminescent Platinum", + "title": "Pokémon Luminescent Platinum", + "platform": "NDS", + "base": "Platinum", + "version": null, + "status": null, + "generation": null, + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Luminescent_Platinum/1-1685907215-99577833-1-0b2f7413ead7ed03.webp", + "source": "https://luminescent.team/docs/features", + "library_path": "—", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Luminescent_Platinum", + "type": [ + "Expansion" + ], + "tags": [ + "hack", + "platform/nds", + "base/platinum", + "type/expansion", + "source/discord" + ], + "summary": "Hack of: Pokemon Brilliant Daimond Hack Type: THE BEST KIND System: Nintendo Switch Pokémon Changes Gift, Static, and Legendary Pokémon All Renegade Platinum Gift Pokémon have been included. Lumi has some new gifts for players, too! You can save before receiving every starter for shiny hunting. All Renegade Platinum static encounters have been included. We have added a few of our own, as well! All Renegade Platinum Legendary events are now included. All static encounters and legendaries can be repeated until caught. This means if you faint them or run away, they will remain in place. This allows for fast shiny hunting as well. There is an NPC in the Pokémon League who will allow you to release a legendary/special Pokémon to return them to their spawn point. Extra notes All egg hatch cycles have been reduced to their minimum. This means that all eggs will hatch within a couple steps. Riolu evolution method changed: level up while knowing Aura Sphere. All trade evolutions can now be achieved via level-up or using trade items as evolution stones. Trainer Changes You will now receive the running shoes immediately, and the bike, National Dex, PokéRadar, following Pokémon, IV Judge, DS Sounds, and every Pokétch app before Roark Most cut trees, strength boulders and rock smash rocks have been removed. Underground All Grand Underground encounters available from the start Doccumentation for the Hack (Because what I covered here is JUST the tip of the Iceberg):https://luminescent.team/docs/features Download Link: https://www.nexusmods.com/pokemonbdsp/mods/1 Installation Guide CFW Switch:https://luminescent.team/docs/installation/atmosphere Installation Guide Ryujinx:https://luminescent.team/docs/installation/ryujinx", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Link", + "url": "https://luminescent.team/docs/features" + }, + { + "label": "Link", + "url": "https://www.nexusmods.com/pokemonbdsp/mods/1" + }, + { + "label": "Link", + "url": "https://luminescent.team/docs/installation/atmosphere" + }, + { + "label": "Link", + "url": "https://luminescent.team/docs/installation/ryujinx" + } + ] + }, + { + "stem": "MasterSilver WoofGold", + "title": "Pokémon MasterSilver / WoofGold", + "platform": "NDS", + "base": null, + "version": null, + "status": null, + "generation": null, + "release_date": "2025", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_MasterSilver_WoofGold/IMG_6876-843943eab6ce7d15.jpg", + "source": "https://www.mediafire.com/file/vwbb5e5hfdkafjg/WoofGold+Simple+Version.zip/file", + "library_path": "—", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_MasterSilver_WoofGold", + "type": [], + "tags": [ + "hack", + "platform/nds", + "source/discord" + ], + "summary": "**Creator:** woofmasterarf **Type:** NDS **Last Updated:** February 01, 2025", + "notability": "", + "story": "> The story is primarily the same as in Pokémon HeartGold & SoulSilver. There's many vanillafriendly changes in this romhack to improve the storyline, but in it's entirety it follows the same storyline as in the original games.", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/vwbb5e5hfdkafjg/WoofGold+Simple+Version.zip/file" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/41arlw0ppy4juhy/WoofGold+Hard+Mode.zip/file" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/20mtpdbyoymcjcl/MasterSilver+Simple.zip/file" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/tx4olkbrdstdzfq/MasterSilver+Hard+Mode.zip/file" + } + ] + }, + { + "stem": "Mega Blue", + "title": "Pokémon Mega Blue", + "platform": "GBA", + "base": null, + "version": null, + "status": null, + "generation": "Gen III", + "developer": "STikER", + "release_date": "2020", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Mega_Blue/pokemon-mega-blue-d07aca97ec1b522f.png", + "source": "https://www.mediafire.com/file/8al4axjp55iva6u/U_Pokemon_Mega_Blue_v1.1.4_Classic.gba.zip/file", + "library_path": "/storage1/Emulation/roms/gba/U_Pokemon_Mega_Blue_v1.1.4_Classic.gba.zip", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Mega_Blue", + "type": [ + "Expansion" + ], + "tags": [ + "hack", + "platform/gba", + "type/expansion", + "source/discord" + ], + "summary": "Catalogued from the Discord ROM-hack archive. See links below.", + "notability": "", + "story": "Essentially, it's still the same FireRed and LeafGreen with an unchanged storyline (except for an addition of Ariana and Archer), but updated mechanics, Alola Forms, and Mega Evolutions (the latter two are mostly in the post-game, though). Aimed to create a counterpart game for Pokemon Delta Emerald.", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/8al4axjp55iva6u/U_Pokemon_Mega_Blue_v1.1.4_Classic.gba.zip/file" + } + ] + }, + { + "stem": "Mega Power", + "title": "Pokémon Mega Power", + "platform": "GBA", + "base": "Ruby", + "version": "5.62", + "status": "Complete", + "generation": "Gen 1–6 mons", + "developer": "Wind1158", + "release_date": "2024-03-22", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Mega_Power/pokemon-mega-power_1-3ae5f3369c034988.png", + "source": "https://www.pokecommunity.com/threads/pokemon-mega-power.330510/", + "library_path": "roms/gba/Hacks/Pokemon - Mega Power (Hack).gba", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Mega_Power", + "type": [ + "New Experience" + ], + "tags": [ + "hack", + "platform/gba", + "base/ruby", + "status/complete", + "type/newexperience" + ], + "summary": "By the Light Platinum-adjacent team — a new region with Mega Evolution, custom villains, and a 'build the strongest Pokémon' plot.", + "notability": "", + "story": "", + "features": [ + "Three New regions - Ivara, Lande, Sevii Islands", + "All mega evolutions", + "Some gen 4, 5, 6, and 7 Pokemon", + "Some new tiles", + "New Sprites" + ], + "links": [ + { + "label": "Source / info", + "url": "https://www.pokecommunity.com/threads/pokemon-mega-power.330510/" + }, + { + "label": "Lookup", + "url": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Mega%20Power%20rom%20hack" + } + ] + }, + { + "stem": "Meissa Moon", + "title": "Pokémon Meissa Moon", + "platform": null, + "base": null, + "version": null, + "status": "Complete", + "generation": "Gen VII", + "developer": "AlbabImam04", + "release_date": "2024-06-30", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Meissa_Moon/IMG_6995-2-73c728387d26b01c.jpg", + "source": "https://drive.google.com/drive/mobile/folders/1UlUAqWY8wq0VbGPlDQTR7s3-Gnn0Pfkf?pli=1", + "library_path": "/storage1/labdata/romhacks/library/Pok_mon_Meissa_Moon/", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Meissa_Moon", + "type": [ + "Difficulty" + ], + "tags": [ + "hack", + "status/complete", + "type/difficulty", + "source/discord" + ], + "summary": "Pokémon Meissa Moon is a Pokémon Moon ROM hack by AlbabImam04, released on June 30, 2024. It features rebalanced Pokémon with buffed stats, types, and abilities, making the game more challenging, especially late-game battles like Ultra Space Lusamine. The hack includes unique changes such as faster Alolan Pokémon, revamped Totem battles, and major trainers with full teams and EV-trained Pokémon. Some Pokémon have new types, and wild Pokémon levels are adjusted for better gameplay. The hack includes 600 Pokémon, with additional ones planned for future updates.", + "notability": "", + "story": "The story in this romhack is primarely the same as in Pokemon Sun and Moon. You walk through the alolan region, try to catch all pokemon, confront the evil teams and try to become champion. The romhack is more meant for a nuzlock experience and focuses more on tweaking the pokemon and challenges, but the storyline itself is the same as in the original games.\n\nNotable Features:\n- Over 600 catchable pokemon\n- Challenging totem pokemon\n- Faster Alola\n- Pokémons have other types\n- Low leveled wild pokemon\n- Trainers with a team of 6 pokemon\n- Increased EVs\n- Nuzlock-themed moveset\nAnd more\nDownload Link and Documentation:\n:DownloadArrow:[Google Drive](https://drive.google.com/drive/mobile/folders/1UlUAqWY8wq0VbGPlDQTR7s3-Gnn0Pfkf?pli=1)", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://drive.google.com/drive/mobile/folders/1UlUAqWY8wq0VbGPlDQTR7s3-Gnn0Pfkf?pli=1" + } + ] + }, + { + "stem": "Metal Red", + "title": "Pokémon Metal Red", + "platform": "GBA", + "base": null, + "version": "completed 2.04", + "status": "Complete", + "generation": "Gen III", + "developer": "Romsprid.xyz", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Metal_Red/IMG_9900-6fd3e3e1a19a0a37.jpg", + "source": "https://raw.githubusercontent.com/vbaemulator/GBA-Roms/main/Pokemon%20Metal%20Red-v2.04.zip", + "library_path": "/storage1/Emulation/roms/gba/Pokemon Metal Red-v2.04.zip", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Metal_Red", + "type": [ + "Expansion", + "QoL" + ], + "tags": [ + "hack", + "platform/gba", + "status/complete", + "type/expansion", + "type/qol", + "source/discord" + ], + "summary": "Catalogued from the Discord ROM-hack archive. See links below.", + "notability": "", + "story": "", + "features": [ + "900+ Pokemon", + "Alolan Form", + "Galar Form", + "Gigantamax", + "Pokemon From Gen 1 to 8", + "Mega Evolution in Battle", + "Capture EXP system", + "Ash Greninja-z (give water stone to mega evolve in battle)", + "Mewtwo is replaced by Armored Mewtwo", + "Fairy Type", + "High difficulty", + "Reusable TMs", + "Reusable Pokeballs", + "New Rival (Brendan)", + "Some New Events", + "New Moves", + "New Abilities", + "Graphics Updated", + "Spirits Updated", + "Running shoes at the start", + "PSS System", + "Physical Special Split", + "Auto Repel System", + "All Legendaries in the safari zone for now" + ], + "links": [ + { + "label": "Download", + "url": "https://raw.githubusercontent.com/vbaemulator/GBA-Roms/main/Pokemon%20Metal%20Red-v2.04.zip" + } + ] + }, + { + "stem": "Minced Fusions", + "title": "Pokémon Minced Fusions", + "platform": "Patch", + "base": null, + "version": null, + "status": null, + "generation": "Gen III", + "developer": "Mincedmeadow", + "release_date": "2025", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Minced_Fusions/IMG_0496-a026631f7225ddcb.jpg", + "source": "https://www.mediafire.com/file/jjp2srpo9hxq4dq/Minced+Fusions+Alpha+2.5.ups/file", + "library_path": "/storage1/labdata/romhacks/library/Pokemon_Minced_Fusions/", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Minced_Fusions", + "type": [ + "Expansion", + "QoL" + ], + "tags": [ + "hack", + "platform/patch", + "type/expansion", + "type/qol", + "source/discord" + ], + "summary": "Pokémon Minced Fusions is a project that explores a Kanto region where the boundaries between species have mysteriously blurred. Pokémon are no longer found in their natural forms — instead, strange hybrid creatures roam the wild, the result of a mysterious \"fusion phenomenon\" spreading across the land.\nAs a young Trainer setting out from Pallet Town, you'll uncover the origin of these fusions and the power that binds them together. Each fusion has its own story — combinations of strength, instinct, and legacy — but not all are stable, and some hide abilities never seen before.\nNo one truly un", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/jjp2srpo9hxq4dq/Minced+Fusions+Alpha+2.5.ups/file" + } + ] + }, + { + "stem": "Mineral", + "title": "Pokémon Mineral", + "platform": "PC", + "base": null, + "version": null, + "status": "Complete", + "generation": "Joiplay/RPGXP", + "developer": "Shadow56bomb", + "release_date": "2024-08-20", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Mineral/Pokemon-Mineral-ec5606b071593753.jpg", + "source": "https://www.mediafire.com/file/0w2xo6sqhonmpj2/Mineral+v1.7.2.zip/file", + "library_path": "/storage1/labdata/romhacks/library/Pokemon_Mineral/", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Mineral", + "type": [], + "tags": [ + "hack", + "platform/pc", + "status/complete", + "source/discord" + ], + "summary": "Catalogued from the Discord ROM-hack archive. See links below.", + "notability": "", + "story": "You've signed up to work for Roark on a special mission: unearth fossils to be studied by Professor Rowan. With most existing fossils already claimed by others, it's your job to uncover new specimens that could lead to groundbreaking discoveries in the world of Pokémon. Dive into a unique adventure where science meets exploration, and every dig site could hold the key to Professor Rowan's next big breakthrough.\n\n**Rebirth Theme**\nThe Noble Pokémon you revive throughout the game and Torrant's actions depending on his opinion.", + "features": [ + "Play as a Cave Miner.", + "UNIQUE Starter.", + "Experience the OG mining system.", + "Complete the quests by Roark.", + "Collect & deliver fossils to Prof Rowan.", + "And Much More" + ], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/0w2xo6sqhonmpj2/Mineral+v1.7.2.zip/file" + }, + { + "label": "Download", + "url": "https://mega.nz/file/CY5nyLDA#qfG-9w1xB27tfhTbktUwWRh_rKUt_ClgyGZZJPyO574" + }, + { + "label": "Download", + "url": "https://mega.nz/file/CY5nyLDA" + } + ] + }, + { + "stem": "MioPidgey", + "title": "Pokémon MioPidgey", + "platform": "GBA", + "base": null, + "version": null, + "status": "Complete", + "generation": "Gen III", + "developer": "KomalaLesado", + "release_date": "2024", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_MioPidgey/Pokemon-ShortScyther-MioPidgey-GBA_1-c37d60c7b7d83657.png", + "source": "https://www.mediafire.com/file/l6yazy9jguchj3v/MioPidgey.zip/file", + "library_path": "/storage1/Emulation/roms/gba/MioPidgey.gba", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_MioPidgey", + "type": [ + "Expansion" + ], + "tags": [ + "hack", + "platform/gba", + "status/complete", + "type/expansion", + "source/discord" + ], + "summary": "Pokémon MioPidgey is a straightforward ROM Hack that eliminates 100% accuracy moves from the player's Pokémon while leaving them intact for opponents. This means bidding farewell to moves like Thunderbolt, Psychic, or Ice Beam for your team.", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/l6yazy9jguchj3v/MioPidgey.zip/file" + } + ] + }, + { + "stem": "Modern Emerald", + "title": "Pokémon Modern Emerald", + "platform": "GBA", + "base": "Emerald", + "version": "3.3.1", + "status": "Complete", + "generation": "Multi-gen", + "developer": "resetes12", + "release_date": "2024-08-02", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Modern_Emerald/Pokemon-Modern-Emerald-531b04088ab9b291.webp", + "source": "https://www.hackdex.app/hack/modern-emerald", + "library_path": "roms/gba/Hacks/Pokemon - Modern Emerald (Hack).gba", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Modern_Emerald", + "type": [ + "Vanilla+", + "QoL", + "Expansion" + ], + "tags": [ + "hack", + "platform/gba", + "base/emerald", + "status/complete", + "type/vanilla+", + "type/qol", + "type/expansion" + ], + "summary": "Emerald modernized end-to-end — all gens, modern mechanics, and a deep QoL/settings menu, while keeping Hoenn's story.", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Source / info", + "url": "https://www.hackdex.app/hack/modern-emerald" + }, + { + "label": "Lookup", + "url": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Modern%20Emerald%20rom%20hack" + } + ] + }, + { + "stem": "Moemon Mega FireRed", + "title": "Pokémon Moemon Mega FireRed", + "platform": "GBA", + "base": "FireRed", + "version": "1.4c", + "status": "Complete", + "generation": "Gen 1", + "source": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Moemon%20Mega%20FireRed%20rom%20hack", + "library_path": "roms/gba/Hacks/Pokemon - Moemon Mega FireRed (Hack).gba", + "play_status": "Unplayed", + "type": [ + "Cosmetic" + ], + "tags": [ + "hack", + "platform/gba", + "base/firered", + "status/complete", + "type/cosmetic" + ], + "summary": "A Moemon hack — Pokémon replaced with anthropomorphic 'moe' character sprites — over an enhanced FireRed.", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Lookup", + "url": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Moemon%20Mega%20FireRed%20rom%20hack" + } + ] + }, + { + "stem": "Moemon Star Emerald", + "title": "Pokémon Moemon Star Emerald", + "platform": "GBA", + "base": "Emerald", + "version": "1.1c", + "status": "Complete", + "generation": "Gen 3", + "source": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Moemon%20Star%20Emerald%20rom%20hack", + "library_path": "roms/gba/Hacks/Pokemon - Moemon Star Emerald (Hack).gba", + "play_status": "Unplayed", + "type": [ + "Cosmetic" + ], + "tags": [ + "hack", + "platform/gba", + "base/emerald", + "status/complete", + "type/cosmetic" + ], + "summary": "A Moemon reskin of an enhanced Emerald (Star Emerald), with moe sprites throughout.", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Lookup", + "url": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Moemon%20Star%20Emerald%20rom%20hack" + } + ] + }, + { + "stem": "Moon Black 2", + "title": "Pokémon Moon Black 2", + "platform": "NDS", + "base": null, + "version": null, + "status": null, + "generation": "Gen V", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Moon_Black_2/wo44ltN-d186c0b1424bb942.png", + "source": "https://www.mediafire.com/file/jt2dyvrk3ruq3ta/Pokemon+Moon+Black+2+", + "library_path": "/storage1/Emulation/roms/nds/Pokemon Moon Black 2 (v4.2.3).nds", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Moon_Black_2", + "type": [ + "Difficulty", + "Expansion" + ], + "tags": [ + "hack", + "platform/nds", + "type/difficulty", + "type/expansion", + "source/discord" + ], + "summary": "After becoming the League Champion and defeating the final Hurrah Island challenge Prof. Kukui allowed Sun/Moon and others to travel to the Unova Region for a year and test what they learned in Alola. Your rival Gladion followed and together you chose new starters for the journey across Unova. Rumors say Team Skull has also been spotted in Unova. Sun/Moon was also granted permission to enter the Regional Tournament at the PWT representing the Alola region if they defeat the Unova Champion!", + "notability": "", + "story": "", + "features": [ + "New Pokemon", + "Mega Evolution (Outside of battle)", + "Pokemon from Unova, Kalos, Alola & Galar", + "Unova Forms and Alola Forms", + "New Rivals", + "New Gym Leaders, Elite Four, Champion", + "New Items", + "New Moves", + "New Events", + "Harder Difficulty", + "Fairy Type and the new type chart", + "Brand New Pokemon World Tournament - With Trainers From Every Region" + ], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/jt2dyvrk3ruq3ta/Pokemon+Moon+Black+2+" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/jt2dyvrk3ruq3ta/Pokemon+Moon+Black+2+(v4.2.3" + } + ] + }, + { + "stem": "Moon Emerald Extreme Randomizer", + "title": "Pokémon Moon Emerald Extreme Randomizer", + "platform": "GBA", + "base": null, + "version": "of the original Moon Emerald.", + "status": "Complete", + "generation": "Gen III", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Moon_Emerald_Extreme_Randomizer/maxresdefault-a26ac956add4e8f0.jpg", + "source": "https://www.mediafire.com/file/4sudlt7e4d4insl/Moon+Emerald+Extreme+Randomizer+", + "library_path": "/storage1/Emulation/roms/gba/Moon Emerald Extreme Randomizer (PokéHarbor).zip", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Moon_Emerald_Extreme_Randomizer", + "type": [ + "Difficulty", + "Expansion" + ], + "tags": [ + "hack", + "platform/gba", + "status/complete", + "type/difficulty", + "type/expansion", + "source/discord" + ], + "summary": "Pokemon Moon Emerald Extreme Randomizer is the randomized version of the original Moon Emerald. The story is the same as Pokémon Emerald with several Pokémon from 7th Gen and Alola Forms added. I'm sure some of you are wondering, \"What the heck is an Extreme Randomizer?\" Well, It's exactly what its name suggests. It is the same good old Pokemon Moon Emerald that we all know and love but, here's the twist, all of the pokemon spawns, pokemon typing, moves, move typing, etc. have been completely randomized! *****What's been Randomized?***** Starter Pokemon Wild Pokemon Trainer's parties Pokemon Types/Moves/Abilities Evolutions Nuzlocke Rules (If you want to try) All Pokemon that you catch must be nicknamed. Only the first Pokemon you encounter on a new route or area can be caught. If a Pokemon passes out, it is considered dead and cannot be used again.", + "notability": "", + "story": "", + "features": [ + "Randomized (Starters, Wild Pokemon, Trainer Pokemon, Types, Moves etc)", + "Around 60 Gen 7 Pokémon", + "All Alola forms", + "Contains Pokémon from Gen 1 to 7 (not all!)", + "Fairy type", + "PSS Split", + "Mega Evolution with mega stones", + "Link Cable item for trade evolutions", + "All Eevee evolutions", + "Day and Night system", + "Increased shiny rate", + "[Download Here]()" + ], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/4sudlt7e4d4insl/Moon+Emerald+Extreme+Randomizer+" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/4sudlt7e4d4insl/Moon+Emerald+Extreme+Randomizer+(Pok%C3%A9Harbor" + } + ] + }, + { + "stem": "Moon Silver", + "title": "Pokémon Moon Silver", + "platform": "NDS", + "base": null, + "version": "Completed", + "status": "Complete", + "generation": "Gen IV", + "developer": "walnut3072", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Moon_Silver/IMG_0106-d37d424c66b9c419.png", + "source": "https://www.mediafire.com/file/o6qw0ehwsgxkpwc/pokemon_moon_silver_completed.zip/file", + "library_path": "/storage1/Emulation/roms/nds/pokemon_moon_silver_completed.zip", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Moon_Silver", + "type": [ + "Difficulty" + ], + "tags": [ + "hack", + "platform/nds", + "status/complete", + "type/difficulty", + "source/discord" + ], + "summary": "The main point of all changes is to bring out the potential every Pokemon from rarely-used to over-used so that players can use their favorite Pokemon in tough battles. That also means, not only weaker Pokemon are made better (with reasonable stat boost, new moveset,…) the commonly-seen ones are given new abilities, moves or even type to create a fresher experience. Some notable type change include:\n• Fairy-type Pokemon: Beside 20 Fairy pokemon in gen VI official game, there are additionally 13 suitable Pokemon receiving Fairy as their secondary type (e.g., Meganium, Mareep line, Milotic, Misd", + "notability": "", + "story": "", + "features": [ + "New sound, tiles and sprites", + "The Journalist: with this kind of job, you have to go everywhere and find any information for your articles.", + "New Gym Leaders", + "New boot screen.", + "New Music", + "## Download Links", + "[Download Link Mefiafire](https://www.mediafire.com/file/o6qw0ehwsgxkpwc/pokemon_moon_silver_completed.zip/file)" + ], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/o6qw0ehwsgxkpwc/pokemon_moon_silver_completed.zip/file" + } + ] + }, + { + "stem": "Mu Magna", + "title": "Pokémon Mu Magna", + "platform": "GBA", + "base": "Emerald", + "version": "1.0", + "status": "Complete", + "generation": null, + "release_date": "2024", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Mu_Magna/Pokemon-Mu-Magma-GBA-2f8826dd51c58861.webp", + "source": "https://www.pokeharbor.com/2024/09/pokemon-mu-magma/", + "library_path": "—", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Mu_Magna", + "type": [ + "Expansion", + "QoL" + ], + "tags": [ + "hack", + "platform/gba", + "base/emerald", + "status/complete", + "type/expansion", + "type/qol", + "source/discord" + ], + "summary": "https://www.pokeharbor.com/2024/09/pokemon-mu-magma/ Specs: Hack of: Emerald Released: September 20, 2024", + "notability": "", + "story": "", + "features": [ + "All features from pokeemerald-expansion v1.9, including Physical/Special split, Fairy type, and modern learnsets.", + "Reusable TMs for easier team-building.", + "Gen 5-style area popups when entering new map locations.", + "Gen 6-style Exp. Share, received early in Petalburg Woods like in ORAS.", + "Mega Evolution, with Mega Stones to collect throughout the game.", + "Expanded Items pocket in the bag, now holding 42 items (like FRLG).", + "B-button toggle for running, no need to hold the button.", + "Any Pokémon can use field moves if you have the corresponding HM in your bag.", + "Cleanse Tag prevents wild encounters when held, available from the start.", + "Toggle between Mach and Acro Bike with the R button.", + "Soft level caps encourage using a variety of Pokémon.", + "S.S. Ticket obtained mid-game, allowing early travel to event-exclusive locations, including where you encounter Mew.", + "Its a Completed rom hack so just download and it will load right on your gba Emulator.", + "Enjoy!" + ], + "links": [ + { + "label": "Info / thread", + "url": "https://www.pokeharbor.com/2024/09/pokemon-mu-magma/" + } + ] + }, + { + "stem": "Mystery Dungeon Explorers of Fortune", + "title": "Pokémon Mystery Dungeon: Explorers of Fortune", + "platform": "NDS", + "base": "Explorers of Sky", + "version": null, + "status": "Complete", + "generation": "Unique", + "developer": "WindchildWhimsy", + "release_date": "2022", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Mystery_Dungeon_Explorers_of_Fortune/ExplorersofFortune-a8d8a5d8cc5a4c42.png", + "source": "https://mega.nz/folder/AZlymIxL#Hhmw1Orl3snN5PTY3JnUSw", + "library_path": "/storage1/Emulation/roms/nds/PMD - Explorers of Fortune.nds", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Mystery_Dungeon_Explorers_of_Fortune", + "type": [ + "Expansion", + "New Experience" + ], + "tags": [ + "hack", + "platform/nds", + "base/explorersofsky", + "status/complete", + "type/expansion", + "type/newexperience", + "source/discord" + ], + "summary": "[Source Website](https://hacks.skytemple.org/h/fortune) [Cheat Codes](https://guidetonote.com/2022/01/pokemon-mystery-dungeon-explorers-of-sky-usa-cheat-codes.html)", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://mega.nz/folder/AZlymIxL#Hhmw1Orl3snN5PTY3JnUSw" + }, + { + "label": "Link", + "url": "https://hacks.skytemple.org/h/fortune" + }, + { + "label": "Link", + "url": "https://guidetonote.com/2022/01/pokemon-mystery-dungeon-explorers-of-sky-usa-cheat-codes.html" + }, + { + "label": "Download", + "url": "https://projectpokemon.org/home/applications/core/interface/file/attachment.php?id=59094&key=9348e61df37c0375a470dbe5eb792a7e" + } + ] + }, + { + "stem": "Mystery Dungeon Explorers of the Spirit", + "title": "Pokémon Mystery Dungeon: Explorers of the Spirit", + "platform": "NDS", + "base": null, + "version": null, + "status": null, + "generation": "Unique", + "developer": "MaxSchersey", + "release_date": "2022-05-06", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Mystery_Dungeon_Explorers_of_the_Spirit/Pokemon-Mystery-Dungeon-Explorers-of-the-S-73f12a84ff0e5b1c.jpg", + "source": "https://www.pokeharbor.com/wp-content/uploads/2025/11/Explorers-of-the-Spirit-v1.01-Dungeon-Docs.pdf", + "library_path": "/storage1/Emulation/roms/nds/EotS-v1.01.nds", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Mystery_Dungeon_Explorers_of_the_Spirit", + "type": [ + "Difficulty", + "New Experience" + ], + "tags": [ + "hack", + "platform/nds", + "type/difficulty", + "type/newexperience", + "source/discord" + ], + "summary": "**Pokémon Mystery Dungeon: Explorers of the Spirit** is an NDS ROM Hack by MaxSchersey based on Pokemon Mystery Dungeon: Explorers of Sky. It was last updated on May 6, 2022.", + "notability": "", + "story": "", + "features": [ + "A new story about our familiar comforts and uncomfortable changes", + "An expansive cast of characters", + "End/Irdkwia's move shortcuts patch and starter selection patch", + "Unique dungeon design", + "A slightly increased level curve relative to Explorers of Sky. All testing for this hack was done with no grinding without any usage of gummis/the cafe, TMs, or the shop. However, all of these tools, are still available for those that wish to use them. This is NOT a Kaizo hack.", + "Exp gain from dungeon mons has also been normalized on its own.", + "Monotype dungeons - All types present in Explorers of Sky have their own themed dungeon present during the main story", + "All traps and random monster house are GONE!", + "Failing out of a dungeon no longer removes items or Poke from your inventory!", + "About a million other things that we don't want to spoil.", + "More informations**", + "[Dungeon docs](https://www.pokeharbor.com/wp-content/uploads/2025/11/Explorers-of-the-Spirit-v1.01-Dungeon-Docs.pdf)" + ], + "links": [ + { + "label": "Info / thread", + "url": "https://www.pokeharbor.com/wp-content/uploads/2025/11/Explorers-of-the-Spirit-v1.01-Dungeon-Docs.pdf" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/d6t7xgeq37d8zx4/EotS-v1.01.zip/file" + }, + { + "label": "Download", + "url": "https://mega.nz/file/SdUQkZIJ#f0Eu05qwYGNz2ZEi3B0hH87p-P4gP5prTuhKfUMiVW0" + } + ] + }, + { + "stem": "Mystery Dungeon - Explorers of Skies", + "title": "Pokémon Mystery Dungeon: Explorers of Skies", + "platform": "NDS", + "base": null, + "version": null, + "status": "Complete", + "generation": null, + "developer": "Staro", + "release_date": "2022-11-12", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Mystery_Dungeon_Explorers_of_Skies/Pokemon-Mystery-Dungeon-Explorers-of-Skies-618e3ee30b1519ff.jpg", + "source": "https://mega.nz/file/LBcA2SSI#2akA-EzkuUdwjOQVt9-qet0FxjIUxHB5BvoFfficCaY", + "library_path": "—", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Mystery_Dungeon_Explorers_of_Skies", + "type": [ + "Difficulty", + "Expansion" + ], + "tags": [ + "hack", + "platform/nds", + "status/complete", + "type/difficulty", + "type/expansion", + "source/discord" + ], + "summary": "Pokmon Mystery Dungeon: Explorers of Skies is a vanilla-style enhancement of the original game, designed to provide a fresh yet faithful experience. Every dungeon has been reworked with unique twists without going full Kaizo.\n\nThe hack also introduces quality-of-life improvements, revamped spawn lists, and a carefully tuned difficulty curve. The goal is to preserve the charm and immersion of the original while deepening gameplay, much like how Drayano approaches his Pokémon hacks.", + "notability": "", + "story": "", + "features": [ + "Exp. Points are now distributed to the entire team — including off-roster team members", + "Select whatever starter you want", + "Complete Team Control, You can manually control your partner and team members turns.", + "New postgame events", + "New moves and Excavate are back in the game", + "Fairy Type moves with Fairy Type gummis.", + "Revisitable Future — with recruitable shiny Celebi", + "The weather trio now have their exclusive moves.", + "The Luxio Tribe is back from Time/Darkness, replacing the Manectric gang.", + "All new spawnlists, revamped difficulty, and a whole new way to play the game!", + "Alolan Vulpix has replaced normal Vulpix as a starter/partner", + "A quick tunnel from Sharpedo Bluff to Crossroads", + "Reworked Marowak Dojo system", + "All Starters and Partners have reworked level up movepools", + "Quality of Life improvements.", + "Removing Spinda's Café animation", + "Far-Off Pals is quicker", + "Revamped Item values", + "Revamped Rank-Up rewards", + "All Evolution Items spawn in the Kecleon Wares!", + "Mt. Blaze and Thunder are back", + "Region Variants", + "Zero Isles now have rare evolution items." + ], + "links": [ + { + "label": "Download", + "url": "https://mega.nz/file/LBcA2SSI#2akA-EzkuUdwjOQVt9-qet0FxjIUxHB5BvoFfficCaY" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/xfg0e7163z5mzzr/e-o-skies-v1.17.1+.zip/file" + } + ] + }, + { + "stem": "Mystery Dungeon - Wigglytuff's Bizarre Adventure", + "title": "Pokémon Mystery Dungeon: Wigglytuff's Bizarre Adventure", + "platform": "NDS", + "base": "Mystery Dungeon", + "version": null, + "status": null, + "generation": null, + "developer": "sudzoof#8354", + "release_date": "2022-11-03", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Mystery_Dungeon_Wigglytuff_s_Bizarre_Adventure/Wigglytuffs-Bizarre-Adventure-1-1-e46137dc938ed111.png", + "source": "https://www.mediafire.com/file/tiz91zt6wz5rvmh/Pokemon+Mystery+Dungeon+Wigglytuff's+Bizarre+Adventure.zip/file", + "library_path": "—", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Mystery_Dungeon_Wigglytuff_s_Bizarre_Adventure", + "type": [], + "tags": [ + "hack", + "platform/nds", + "base/mysterydungeon", + "source/discord" + ], + "summary": "This is the 6th rom hack in the 4th ever Sky Temple Hack Jam! The topic of the jam is 'Meaningful Decisions' and the gimmick is 'Custom Overworld'.", + "notability": "", + "story": "I was actually supposed to write a story and not just work solely on the gameplay ughhhhhh\n\nWait, I got an idea!\n\nOne day Wigglytuff decided to go on hormone replacement therapy. However, puberty sucks so she decided to let off some steam by climbing… Mt. Victory!", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/tiz91zt6wz5rvmh/Pokemon+Mystery+Dungeon+Wigglytuff's+Bizarre+Adventure.zip/file" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/tiz91zt6wz5rvmh/Pokemon+Mystery+Dungeon+Wigglytuff" + } + ] + }, + { + "stem": "Mystery Mail Blooming Chaos", + "title": "Pokémon Mystery Mail: Blooming Chaos", + "platform": "NDS", + "base": "Mystery Dungeon", + "version": null, + "status": null, + "generation": "Unique", + "developer": "Stolen Burrito", + "release_date": "2022-11-12", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Mystery_Mail_Blooming_Chaos/Pokemon-Mystery-Mail-Blooming-Chaos-1-1-0dd725d101eaf278.png", + "source": "https://www.mediafire.com/file/lqm7aeepk1r9jma/Pokemon+Mystery+Mail+Blooming+Chaos.zip/file", + "library_path": "/storage1/Emulation/roms/nds/Pokemon Mystery Mail Blooming Chaos.zip", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Mystery_Mail_Blooming_Chaos", + "type": [], + "tags": [ + "hack", + "platform/nds", + "base/mysterydungeon", + "source/discord" + ], + "summary": "**Pokémon Mystery Mail: Blooming Chaos** is an NDS ROM Hack by Stolen Burrito, Adex, and Groovy based on Pokemon Mystery Dungeon. It was last updated on November 12, 2022.", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/lqm7aeepk1r9jma/Pokemon+Mystery+Mail+Blooming+Chaos.zip/file" + }, + { + "label": "Download", + "url": "https://drive.google.com/file/d/1XjObsCLo5CPHompAV-pDUXILhLCr0EsF/view" + }, + { + "label": "Link", + "url": "https://onedrive.live.com/?authkey=%21AIPeB8eKG1kTPHA&id=65F48F421B14634F%21774&cid=65F48F421B14634F&parId=root&parQt=sharedby&o=OneUp" + } + ] + }, + { + "stem": "Myth", + "title": "Pokémon Myth", + "platform": "PC", + "base": null, + "version": null, + "status": null, + "generation": null, + "release_date": "2023", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Myth/0eff5b6f02d4c0adadf739dfcdeed4cf-ff58ac1a98160369.png", + "source": "https://www.mediafire.com/file/pfb200uk53diizh/Pokemon-Myth.zip/file", + "library_path": "—", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Myth", + "type": [ + "New Experience" + ], + "tags": [ + "hack", + "platform/pc", + "type/newexperience", + "source/discord" + ], + "summary": "**Creator:** falcary **Type:** PC/RPGXP **Last Updated:** October 2, 2023", + "notability": "", + "story": "> \"A trainer who truly tries their hardest will always succeed in the end, despite the amount of evil they face…\"\n> \n> Pokemon Myth is all about proving your worth, with many new faces that believe in you throughout your journey, you must strive to become the new Pokemon Champion and prove to everyone that you are more than just a 15-year-old kid from Courmine Village. Throughout your journey, you gain the trust of many strong trainers, who see potential in you and ask for your help against Team Corrupt. Team Corrupt is an evil organization commanded by an anonymous face, and their goal is to create a newfound power by using Arceus and Mew, the two gods of the Mythan Region! Follow this team to the depths of Mythic Forest, Lost Temple, to finally put a stop to once and for all, prove that you can beat all 8 gyms along the way, and take over the Pokemon League, to show that you can succeed!", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/pfb200uk53diizh/Pokemon-Myth.zip/file" + } + ] + }, + { + "stem": "Mythic Silver", + "title": "Pokémon Mythic Silver", + "platform": "NDS", + "base": null, + "version": null, + "status": null, + "generation": "Gen IV", + "developer": "SauceyaTTa", + "release_date": "2024", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Mythic_Silver/IMG_6782-5c2ea624052587c2.webp", + "source": "https://www.mediafire.com/file/mshz872dqid409i/mythicsilver+v1.3.zip/file", + "library_path": "/storage1/Emulation/roms/nds/mythicsilver v1.3.zip", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Mythic_Silver", + "type": [ + "Difficulty", + "New Experience" + ], + "tags": [ + "hack", + "platform/nds", + "type/difficulty", + "type/newexperience", + "source/discord" + ], + "summary": "Pokémon Mythic Silver is an ROM hack of Pokémon HeartGold that reimagines the classic Johto region with a fresh story, modern mechanics, and exciting twists. The game provides pokémons from Unova, updated graphics, and more challenges with legendaries. In the creator's own words: There is an overhaul to the Johto region where the original games were set and a new story (and maps) to dive into.", + "notability": "", + "story": "In the remote region of Johto, where old traditions and legends meet, a new adventure begins with Red and Blue, two young trainers from Pallet Town who dream of becoming Pokémon Masters. They set off on a journey, eager to explore the unknown and test their skills.\n\nThroughout their journey, Red and Blue find Johto to be full of mysteries and surprises. Unlike usual regions, Legendary Pokémon wander freely in the wild, ready to challenge any brave trainer. Most unexpectedly, Articuno, Moltres, and Zapdos are available as starter Pokémon, giving trainers a unique and powerful beginning.\n\nAs their adventure unfolds, a secret group threatens to release ancient powers that could upset Johto's balance. Red and Blue find themselves in the middle of a plot that involves Johto's hidden history and the bond between legendary and mythical Pokémon. They uncover ancient temples and forgotten crypts, facing epic challenges and making crucial decisions that will shape Johto's future. Along the way, they build special connections with their Legendary Pokémon, gaining new abilities to confront the looming threat", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/mshz872dqid409i/mythicsilver+v1.3.zip/file" + } + ] + }, + { + "stem": "Nameless", + "title": "Pokémon Nameless", + "platform": "GBA", + "base": "FireRed", + "version": null, + "status": null, + "generation": "Gen III", + "developer": "Wind1158", + "release_date": "2026-01-15", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Nameless/pokemon-nameless-cover_1-0d976065da16763f.png", + "source": "https://www.mediafire.com/file/rj36gqteomh8hzi/Nameless+v5.45.zip/file", + "library_path": "/storage1/Emulation/roms/gba/Nameless v5.45.zip", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Nameless", + "type": [ + "Expansion", + "New Experience" + ], + "tags": [ + "hack", + "platform/gba", + "base/firered", + "type/expansion", + "type/newexperience", + "source/discord" + ], + "summary": "**Pokemon Nameless** is the prequel to Pokemon Mega Power and the sequel to Pokemon Resolute. In this game, you play as Chronya, the young hero of the Cyenn Region.", + "notability": "", + "story": "12 years ago, Altena, the general of the Valo Empire was forced to leave her country with her daughter Chronya. The only thing Chronya knew was that she had a father who lived in Cyenn Region. One day, she and her mother decided to ask for her father's help. However, on the way, they were attacked by Dark Workers who were employed by the Valo Emperor. The emperor wanted to get rid of Altena forever. Altena had fallen into the Dark Workers' trap. Chronya having no choice, jumped into the ocean. Luckily, she was saved by a young agent by the name of Gavin. To help protect Chronya, Gavin gave Chronya his Pokemon. This is the beginning of Chronya's journey…", + "features": [ + "New regions — Cyenn Region, Western Tyron Region, Sevii Islands and Lande Region", + "Pokemon from Gen 4 to 9", + "Real Mega Evolution — Except for Chronya's first Pokemon, it's special.", + "No Gyms — Battle Arenas take the place of the Gyms.", + "No Pokemon League in Cyenn Region — The tournament takes the place of the Cyenn League.", + "You can decide on when to challenge the Cyenn Tournament by yourself.", + "Black/White Repel system", + "Skills take the place of HMs so try to learn more useful skills.", + "Half open world(After the Shedir Town event).", + "The ability to decide when to begin the main storyline.", + "In-game guide system (think), which allows Chronya to talk to herself so that you can find out where to go next.", + "Two difficulty modes: Normal mode and Dynamic Mode." + ], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/rj36gqteomh8hzi/Nameless+v5.45.zip/file" + }, + { + "label": "Download", + "url": "https://secure.internxt.com/sh/file/T3Ak713dSQGeXN4XVf6ceA/VjWrL49z" + } + ] + }, + { + "stem": "National History Museum", + "title": "Pokémon National History Museum", + "platform": "GBA", + "base": null, + "version": null, + "status": null, + "generation": "Gen III", + "developer": "wiz1989", + "release_date": "2024", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_National_History_Museum/FB_IMG_1709111765750-1-13530cd31a43c28a.jpg", + "source": "https://www.mediafire.com/file/11ynhgydahriuoe/National+History+Museum+", + "library_path": "/storage1/Emulation/roms/gba/National History Museum (v1.0.1).zip", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_National_History_Museum", + "type": [], + "tags": [ + "hack", + "platform/gba", + "source/discord" + ], + "summary": "This is a mini-hack, meant to simulate an \"escape room\"!\n\"Do you have what it takes to make it past the superior trainers, come up with strategies, and progress through on your own or will you be beaten, crawling back to the Game Master for hints? It's up to you, your skill and determination! There's no mercy for the unskilled and uninspired! The concept is that you are stuck in the National History Museum's third floor and need to make your way out.\nAll three floors have different exhibition concepts, being:\n- 3 - Egyptian Room\n- 2 - Jurassic/Fossil Room\n- 1 - Ice Age Room\"\n\n**Note:** Make su", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/11ynhgydahriuoe/National+History+Museum+" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/11ynhgydahriuoe/National+History+Museum+(v1.0.1" + } + ] + }, + { + "stem": "Navy Sapphire", + "title": "Pokémon Navy Sapphire", + "platform": "GBA", + "base": "Sapphire", + "version": null, + "status": null, + "generation": null, + "developer": "TrulyPhenomenal08", + "release_date": "2024", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Navy_Sapphire/maxresdefault-1-2-71596120633f4701.jpg", + "source": "https://drive.google.com/file/d/1J2EHfuvFxpKsr3_Renh0AqeQxmOTiVm8/view?usp=sharing", + "library_path": "—", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Navy_Sapphire", + "type": [ + "Difficulty" + ], + "tags": [ + "hack", + "platform/gba", + "base/sapphire", + "type/difficulty", + "source/discord" + ], + "summary": "**Pokémon Navy Sapphire** is Hack of Pokémon Alpha Sapphire Made by TrulyPhenomenal08. Released: June 22nd 2024 Last Updated: October 26th 2024", + "notability": "", + "story": "", + "features": [ + "1:Almost all Pokemon has received stat changes, to their TM compatibility, level up movesets, evolution methods and others.", + "2:Wild Pokemon have been altered. Almost all Pokemon from Gen 1 - 6 are available in this hack.", + "3:Increased difficulty, comparable to the likes of Renegade Platinum and Inclement Emerald.", + "4:All PokeMarts items have been drastically changed. They now include but not limited to fossils, evolution stones, mega stones at 5+ gym badges, ability capsules and rare candies." + ], + "links": [ + { + "label": "Download", + "url": "https://drive.google.com/file/d/1J2EHfuvFxpKsr3_Renh0AqeQxmOTiVm8/view?usp=sharing" + }, + { + "label": "Link", + "url": "https://3ds.guide/" + } + ] + }, + { + "stem": "Nebula 1", + "title": "Pokémon Nebula 1", + "platform": "PC", + "base": null, + "version": "v1.3.7", + "status": "Complete", + "generation": "Joiplay/RPGXP", + "developer": "Mr.Paradox", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Nebula_1/Pokemon-Nebula-9e1d240df8b6e921.png", + "source": "https://www.mediafire.com/file/w3knin7lpzkxwc0/Pokemon_Nebula_v1.4.rar/file", + "library_path": "/storage1/labdata/romhacks/library/Pokemon_Nebula_1/", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Nebula_1", + "type": [ + "Expansion", + "New Experience" + ], + "tags": [ + "hack", + "platform/pc", + "status/complete", + "type/expansion", + "type/newexperience", + "source/discord" + ], + "summary": "**Latest Version**: v1.3.7 Source website [Source](https://eeveeexpo.com/threads/6330/)", + "notability": "", + "story": "", + "features": [ + "Pokemon from Generation 1 to 8.", + "New Region & New Story.", + "Choose From 24 Starters.", + "Mega Evolution.", + "Following Pokemon.", + "Play As Hilbert Or Hilda (Gen 5 Characters).", + "Gen 8 Legendries Are Available.", + "Movie Scenes.", + "Defeat Popular Characters Like Red, Blue, Leaf, Lyra, Hilbert, Alain, Nate, Dawn, & N.", + "Team Rocket, Team Aqua, Team Magma, Team Galactic, Team Plasma, Team Skull & Team Flare As Villains.", + "Alolan Forms.", + "Galarian Forms.", + "Train Your Pokemon Above 100 Levels.", + "Different Difficulty Modes.", + "Side Quests To Make Game More Engaging.", + "Different Outfits For Trainers Is There In The Game.", + "24/7 Gym: A Gym That You Can Train In Anytime You Want.", + "Gen 5 Style Mapping.", + "## :Download: [Download Here](https://www.mediafire.com/file/w3knin7lpzkxwc0/Pokemon_Nebula_v1.4.rar/file)" + ], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/w3knin7lpzkxwc0/Pokemon_Nebula_v1.4.rar/file" + }, + { + "label": "Link", + "url": "https://eeveeexpo.com/threads/6330/" + } + ] + }, + { + "stem": "Nebula 2", + "title": "Pokémon Nebula 2", + "platform": null, + "base": null, + "version": null, + "status": "Complete", + "generation": null, + "source": "https://pokehostel.com/pokemon-nebula-2/", + "library_path": "—", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Nebula_2", + "type": [ + "Expansion" + ], + "tags": [ + "hack", + "status/complete", + "type/expansion", + "source/discord" + ], + "summary": "# Nebula 2 **Creator**: Mr.Paradox **Language**: English **Latest Version**: v1.1.5 **Status**: Completed [Source Website](https://pokehostel.com/pokemon-nebula-2/) ## __Description__ > Looker is a top officer of the International Police. After the events of Pokemon Nebula, Looker now has a mission to eliminate what's left of the Unity organization. Looker will recruit N for the mission of saving Unova again. > > After The Fall Of The Unity Organization In Kanto 2.0, N From Unova Will Embark On A Journey Of Self-discovery And Heroism To Choose His Fate. N Still Struggles With The Idea Of Equality Between Pokemon And People. > > After The Events That Occurred In New Kanto, N Released All Of His Pokemon To Live Free As They Like, Unfortunately, Peace Will Not Last. > > Team Plasma is the villainous team with their organization based in the Unova region. Team Plasma's original goal was to \"liberate\" all Pokemon from their Trainers, by either manipulating the Trainer to release their Pokemon, or by theft. Ghetsis, Team Plasma's true leader, exploited the group in an attempt to rule Unova as the only one with Pokemon. > > After the events of Kanto 2.0, Team Plasma returned with all the resources they gathered from the Unity Organisation, and now they can go to other dimensions. ## __Features__ - Pokemon from Generation 1 to 8. - Play As Pokemon Trainer N. - Complete Looker's Mission. - Team Plasma. - Mega Evolution. - Dynamax Evolution. - New Mega Evolution For Zoroark. - 24/7 Gym Challenges. - Shiny Conversion. - EBDX System. - Advanced Hm Items. - Gameplay For 3 Hours Average. - A Special Reward Is Given If You Completed The First Game. - Gen 5 Style Maps. ## :Download: [Download Here](https://www.mediafire.com/file/7v0uqnx9gjfjmop/Pokemon_Nebula_2_Update_1.1.5.rar/file) ------------------------------------", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Link", + "url": "https://pokehostel.com/pokemon-nebula-2/" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/7v0uqnx9gjfjmop/Pokemon_Nebula_2_Update_1.1.5.rar/file" + } + ] + }, + { + "stem": "Nebula 3", + "title": "Pokémon Nebula 3", + "platform": "PC", + "base": null, + "version": "v1.1.3", + "status": "Complete", + "generation": "Joiplay/RPGXP", + "developer": "Mr.Paradox", + "source": "https://pokehostel.com/pokemon-nebula-3/", + "library_path": "/storage1/labdata/romhacks/library/Pokemon_Nebula_3/", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Nebula_3", + "type": [ + "Difficulty", + "New Experience" + ], + "tags": [ + "hack", + "platform/pc", + "status/complete", + "type/difficulty", + "type/newexperience", + "source/discord" + ], + "summary": "[Source Website](https://pokehostel.com/pokemon-nebula-3/)", + "notability": "", + "story": "", + "features": [ + "Pokemon from Generations 1 to 8.", + "All starter Pokemon from gen 1-8 will be available to choose from.", + "Rewards will be given to players who completed the previous games.", + "Egg hatcher that allows the trainer to carry more Pokemon eggs along the way.", + "Safari zones that include regional variants of Pokemon.", + "Tournaments.", + "24/7 gym for trainers to gain more experience.", + "House of trades for exchanging Pokemon.", + "Fashion store for changing outfits.", + "Side quests with interactive conclusions.", + "A training center to boost your Pokemon's EV status.", + "Shiny Conversion.", + "Game Corner.", + "IV machine that maximizes your Pokemon's IV status.", + "Battle mechanics", + "New mega forms for Unova starters.", + "New Primal forms for Unova starters.", + "Following Pokemon System.", + "Shadow Pokemon.", + "Dynamax adventures.", + "Pokemon Dens spread across the region.", + "Interactive decisions.", + "Fakemons.", + "Extreme Challenges." + ], + "links": [ + { + "label": "Link", + "url": "https://pokehostel.com/pokemon-nebula-3/" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/w76wyrih86i06h1/Pokemon_Nebula_3_v1.1.5.rar/file" + } + ] + }, + { + "stem": "New Generations", + "title": "Pokémon New Generations", + "platform": "GBA", + "base": null, + "version": null, + "status": "Complete", + "generation": "Gen III", + "developer": "Naglu", + "release_date": "2024", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_New_Generations/Pokemon-New-Generations-GBA-1-b62490964527c6c0.png", + "source": "https://www.mediafire.com/file/y620qcd1gfmqyno/New+Generations.zip/file", + "library_path": "/storage1/Emulation/roms/gba/New Generations.zip", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_New_Generations", + "type": [ + "Expansion" + ], + "tags": [ + "hack", + "platform/gba", + "status/complete", + "type/expansion", + "source/discord" + ], + "summary": "It's a difficulty rom hack with changes to trainers and the Pokémon themselves. The world itself has changed, the pokemon have evolved, new moves have been discovered and something has changed about the training system. Will you be able to become the champion in this new and improved world?", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/y620qcd1gfmqyno/New+Generations.zip/file" + } + ] + }, + { + "stem": "Null", + "title": "Pokémon Null", + "platform": "Patch", + "base": null, + "version": null, + "status": "Complete", + "generation": "Gen III", + "developer": "Terra", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Null/IMG_9633-3b7fba2eed574308.png", + "source": "https://mega.nz/file/8JgCjBYI#UBcIShiAEsPdPYnNdg5f9L7lTa88KmvmIC0QkP63je8", + "library_path": "/storage1/labdata/romhacks/library/Pokemon_Null/", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Null", + "type": [ + "Difficulty", + "Expansion" + ], + "tags": [ + "hack", + "platform/patch", + "status/complete", + "type/difficulty", + "type/expansion", + "source/discord" + ], + "summary": "A Nuzlocke-focused Pokémon ROM hack that redefines difficulty with a re-imagined story in Hoenn. Carefully crafted by Terra. Description : Pokémon Null is a heavily modified ROM hack of Pokémon Emerald built from the ground up for the Nuzlocke experience. Every trainer has been hand-crafted, every route rebalanced, and the Pokédex expanded to include Pokémon from Generations 1-9 — including brand-new Mega Evolutions. Expect no mercy. The hardest ROM hack made to date Competitive teams for all trainers", + "notability": "", + "story": "", + "features": [ + "Pokémon Null was designed from day one with Hardcore Nuzlocke rules in mind. Every encounter, every item placement, and every trainer fight has been balanced around the assumption that you might lose a Pokémon — and that losing one should matter. And you will lose Pokémon. A lot of them.", + "Encounter tables tuned for Nuzlocke variety", + "Resource management to help you adjust your team to your liking", + "Catching Pokémon made easier - but not guaranteed", + "Meticulously balanced so that no single Pokémon is overpowered and all teams have a chance", + "Qol : No grinding, no HM slaves, no frustration (from the menu, at least). Pokémon Null ships with a full suite of quality-of-life features so you can focus on what matters: building your team and surviving the next fight.", + "Portable PC, Toggled Repel, Heal party from the menu", + "Run anywhere, and fly to previously known locations with PokeRider", + "Easy access to both Mach and Acro bikes without needing to exchange them at the shop", + "Infinite Rare Candies and Candy Bag to instantly level you to the cap", + "Pre-damage and Pre-status made easy within the Party menu", + "Rom :", + "Mega link", + "[Mega](https://mega.nz/file/8JgCjBYI#UBcIShiAEsPdPYnNdg5f9L7lTa88KmvmIC0QkP63je8)", + "Mediafire link", + "[Mediafire](https://www.mediafire.com/file/1ptugqwaeie0zd0/PokemonNullV1.1.bps/file)" + ], + "links": [ + { + "label": "Download", + "url": "https://mega.nz/file/8JgCjBYI#UBcIShiAEsPdPYnNdg5f9L7lTa88KmvmIC0QkP63je8" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/1ptugqwaeie0zd0/PokemonNullV1.1.bps/file" + }, + { + "label": "Download", + "url": "https://mega.nz/file/8JgCjBYI" + }, + { + "label": "Download", + "url": "https://drive.google.com/drive/u/0/folders/10H1Pm-1dhEgc0QmjsnA9A9PY6nNRXtoJ" + } + ] + }, + { + "stem": "Obscura", + "title": "Pokémon Obscura", + "platform": "GBA", + "base": null, + "version": null, + "status": null, + "generation": "Gen III", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Obscura/Pokemon-Obscura-0de458868385f0a7.webp", + "source": "https://www.mediafire.com/file/0r8zzjskaf045x1/obsura+b1.zip/file", + "library_path": "/storage1/Emulation/roms/gba/obsura b1.zip", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Obscura", + "type": [ + "Expansion", + "QoL" + ], + "tags": [ + "hack", + "platform/gba", + "type/expansion", + "type/qol", + "source/discord" + ], + "summary": "Explore a fresh region with Pokémon from Generations 1-9 (curated 256-mon Pokédex), battle legendary trainers from the past, and stop a rising organization bent on harnessing ancient power for their own ends.", + "notability": "", + "story": "", + "features": [ + "Significantly increased EXP gain to reduce grinding and encourage team flexibility", + "Soft EXP Level Caps added to balance the fast leveling curve (EXP gain slows dramatically after hitting the cap, but still continues)", + "HMs can be used without teaching them, as long as the Pokémon can learn them", + "Trade and friendship evolutions removed — replaced with item-based or level-up methods (Check the Pokédex link for full evolution details)", + "Dynamic wild Pokémon levels scale with your party's average level (Great for easie", + "r team expansion and consistent challenge)", + "EXP Share (party-wide) given after the 2nd Gym, can be toggled ON/OFF (Story-based reward timing)", + "Reusable TMs", + "IV Checker available in every Pokémon Center", + "Increased shiny odds", + "EXP gained from catching Pokémon", + "More features may be added as development continues" + ], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/0r8zzjskaf045x1/obsura+b1.zip/file" + } + ] + }, + { + "stem": "Obsidian Emerald", + "title": "Pokémon Obsidian Emerald", + "platform": "GBA", + "base": null, + "version": "is a modernized all-doubles ch", + "status": "Complete", + "generation": "Gen III", + "developer": "Skolgrahd", + "release_date": "2024", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Obsidian_Emerald/Pokemon-Obsidian-Emerald-GBA_1-96aa1a519c711809.jpg", + "source": "https://www.mediafire.com/file/b8yxleicrnr211e/obsidianem+", + "library_path": "/storage1/Emulation/roms/gba/obsidianem (v1.0).zip", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Obsidian_Emerald", + "type": [ + "Difficulty", + "Expansion" + ], + "tags": [ + "hack", + "platform/gba", + "status/complete", + "type/difficulty", + "type/expansion", + "source/discord" + ], + "summary": "Pokemon Obsidian Emerald Version is a modernized all-doubles challenge hack of Pokemon Emerald. This is our first rom hack, and we are truly so excited to be able to say we finished what we set out to do: provide a fully playable PvE experience for lovers of VGC and competitive double battles.", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/b8yxleicrnr211e/obsidianem+" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/b8yxleicrnr211e/obsidianem+(v1.0" + } + ] + }, + { + "stem": "Odyssey", + "title": "Pokémon Odyssey", + "platform": "GBA", + "base": "FireRed", + "version": "4.1.1", + "status": "Complete", + "generation": "Multi-gen", + "developer": "PacoScarso", + "release_date": "2025", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Odyssey/Pokemon-Odyssey-b9584b0f29a464cd.png", + "source": "https://www.hackdex.app/hack/pokemon-odyssey", + "library_path": "roms/gba/Hacks/Pokemon - Odyssey (Hack).gba", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Odyssey", + "type": [ + "New Experience" + ], + "tags": [ + "hack", + "platform/gba", + "base/firered", + "status/complete", + "type/newexperience" + ], + "summary": "A highly-praised, atmospheric original adventure with a custom region, strong writing, and bespoke pixel art.", + "notability": "", + "story": "", + "features": [ + "New Story and Region", + "New Graphics (Sprites, Tilesets, etc)", + "No Gym Leaders/Evil Team/Elite Four, it's time to explore!", + "Every Pokémon has been rebalanced", + "New regional forms: the Etrian Variants!", + "Two Initials Minun and Plusle.", + "All Pokémon present received a new learnpool and the weakest mediums received buffs and adjustments to bring them to the level of the others", + "3 selectable game modes are available in the prologue: Picnic, Normal, and Hard", + "Presence of Etrian Odyssey features such as Mining and Gathering points, Naval Exploration, FOE, and Store Upgrades", + "You can change the nature and the ability of your Pokémon using in-game functions", + "The labyrinth is divided into layers and each of them has a captain that must be defeated if you want to continue", + "The automatic stroke can be activated and deactivated by pressing the \"L\" key on the GBA Emulator", + "All fights in the game will be doubles, except when you have only one Pokémon", + "There is a soft level cap to prevent players from making me too much and ruining the gaming experience", + "[PokéHarbor Link]()", + "[MediaFire Download]()" + ], + "links": [ + { + "label": "Source / info", + "url": "https://www.hackdex.app/hack/pokemon-odyssey" + }, + { + "label": "Lookup", + "url": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Odyssey%20rom%20hack" + } + ] + }, + { + "stem": "Omega Paradox V2", + "title": "Pokémon Omega Paradox V2", + "platform": "NDS", + "base": null, + "version": null, + "status": null, + "generation": "Gen V", + "developer": "XxAsterxX", + "release_date": "2017", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Omega_Paradox_V2/IMG_6996-55253f578cedb185.jpg", + "source": "https://www.mediafire.com/file/uts4dskxbhyxa15/OmegaParadoxCv2.rar/file", + "library_path": "/storage1/Emulation/roms/nds/OmegaParadoxCv2.rar", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Omega_Paradox_V2", + "type": [ + "Expansion", + "New Experience" + ], + "tags": [ + "hack", + "platform/nds", + "type/expansion", + "type/newexperience", + "source/discord" + ], + "summary": "Pokémon Omega Paradox V2 is a romhack of Pokémon White. It is created as a sequal to the romhack Pokémon Volt White and it's story takes place after the events of Volt White. This hack introduces a more spectacular and dark storyline, new gameplay mechanics, and a variety of Pokémon from different generations and custom creations.", + "notability": "", + "story": "It's been one month since the Masked Man attack many have been killed some have been severely injured. Many people are fleeing Unova while some have come to save it…\n\nAfter the attack, many elite clans have formed in Unova composed of strong team Rocket and Plasma grunts and Team Aqua has reformed in Unova to liberate Pokemon and has allied with the Masked Man.\n\nYou have survived the Masked man's attack and your friends Cynthia and Drake have returned to Unova to see you pick your first Pokemon. You as one of the few people who can Omega-Evolve Pokemon has been given the chance to get a starter Pokemon and stop the Masked Man.\n\nThe Masked Man leaves a scar on all of his victims, seen by the blacked out faces of all the victims, you are destined to stop him. Everything weird you see early on, like Drayden as the professor, is explained later on in the game as well as the true identity of the Masked Man.", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/uts4dskxbhyxa15/OmegaParadoxCv2.rar/file" + } + ] + }, + { + "stem": "Omega Ruby Origins", + "title": "Pokémon Omega Ruby Origins", + "platform": "GBA", + "base": "Emerald", + "version": "1.4.8.7", + "status": "Ongoing", + "generation": "Gen 6 on GBA", + "source": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Omega%20Ruby%20Origins%20rom%20hack", + "library_path": "roms/gba/Hacks/Pokemon - Omega Ruby Origins (Hack).gba", + "play_status": "Unplayed", + "type": [ + "Demake", + "New Experience" + ], + "tags": [ + "hack", + "platform/gba", + "base/emerald", + "status/ongoing", + "type/demake", + "type/newexperience" + ], + "summary": "An ORAS-style demake bringing the 3DS Hoenn remakes' features back to the GBA.", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Lookup", + "url": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Omega%20Ruby%20Origins%20rom%20hack" + } + ] + }, + { + "stem": "Onyx Blue", + "title": "Pokémon Onyx Blue", + "platform": "GBA", + "base": null, + "version": "completed 1.0", + "status": "Complete", + "generation": "Gen III", + "developer": "Zatarion", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Onyx_Blue/IMG_9933-57c2507fd2163f3f.webp", + "source": "https://raw.githubusercontent.com/vbaemulator/GBA-Roms/main/Pokemon%20Onyx%20Blue.zip", + "library_path": "/storage1/Emulation/roms/gba/Pokemon Onyx Blue.zip", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Onyx_Blue", + "type": [ + "Difficulty" + ], + "tags": [ + "hack", + "platform/gba", + "status/complete", + "type/difficulty", + "source/discord" + ], + "summary": "Nothing about the story was changed, truly. You are a trainer who just moved to Little root Town. After setting your on-wall clock, you come down to meet your mom. Both of you talk for a while, then you go out and meet Professor Birch. After receiving your first starter Pokemon, you officially start your Pokemon journey.\nIn your journey, you will battle and meet many different people with two evil organizations: Team Magma and Team Aqua. These two teams are trying to wake up the ancient power of Groudon and Kyogre - two Legendaries of the land and the sea.", + "notability": "", + "story": "", + "features": [ + "Mew, Celebi, and Jirachi are starters", + "386 Capturable Pokemon. All Pokemon are from Gen I to Gen III.", + "Many trainers and Gym Leaders are edited to become more challenging than before.", + "Some new areas", + "[Download Link](https://raw.githubusercontent.com/vbaemulator/GBA-Roms/main/Pokemon%20Onyx%20Blue.zip)" + ], + "links": [ + { + "label": "Download", + "url": "https://raw.githubusercontent.com/vbaemulator/GBA-Roms/main/Pokemon%20Onyx%20Blue.zip" + } + ] + }, + { + "stem": "Opalo", + "title": "Pokémon Opalo", + "platform": null, + "base": null, + "version": null, + "status": null, + "generation": null, + "release_date": "2022", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Opalo/pokemon-opalo-2-cover-2cac89ee6c975b15.jpg", + "source": "https://www.pokeharbor.com/2022/04/pokemon-opalo/", + "library_path": "—", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Opalo", + "type": [], + "tags": [ + "hack", + "source/discord" + ], + "summary": "It has been 60 years since Coach Red became the Champion of Kanto. Since then, humanity has experienced several economic collapses and humanitarian crises, which added to a change in the population's mentality, and has led to the closure of numerous Gyms and Pokémon Leagues, losing interest in the competition. The figure of the Pokémon trainer that travels through the region begins to be seen as a vestige of a golden past. Only the region of Zephyra remains as a beacon willing to resist this change of cycle. This region is also the current world economic power and the most influential in international political decisions. Brisa town, in the rural part of Céfira. A young man receives a letter from an old childhood friend proposing an important mission. A discovery beyond the sea could bring prosperity back to the Pokémon world. Meanwhile, a strange astral Pokémon has appeared in the dreams of the trainers, to announce the arrival of the end of the world. https://www.pokeharbor.com/2022/04/pokemon-opalo/", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Info / thread", + "url": "https://www.pokeharbor.com/2022/04/pokemon-opalo/" + } + ] + }, + { + "stem": "Orange", + "title": "Pokémon Orange", + "platform": "GBC", + "base": "Crystal", + "version": null, + "status": "Complete", + "generation": "Gen 2 style", + "developer": "Pia Carrot", + "release_date": "2024", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Orange/FB_IMG_1709845956959-1-9634d20ff4b3d20b.jpg", + "source": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Orange%20rom%20hack", + "library_path": "roms/gbc/Hacks/Pokemon - Orange (Hack).gbc", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Orange", + "type": [ + "New Experience" + ], + "tags": [ + "hack", + "platform/gbc", + "base/crystal", + "status/complete", + "type/newexperience" + ], + "summary": "Set in the anime's Orange Islands / Orange League. This is the modern Suloku-patched build with bug fixes and PSS-era touches.", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Lookup", + "url": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Orange%20rom%20hack" + } + ] + }, + { + "stem": "Order and Chaos", + "title": "Pokémon Order and Chaos", + "platform": "GBA", + "base": "FireRed", + "version": "REMASTERED 2024", + "status": "Complete", + "generation": null, + "release_date": "2024", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Order_and_Chaos/04ff8be8-5c2e-4f4a-abe3-27a524e0c0d4-79bd367c80b6500f.png", + "source": "https://www.pokeharbor.com/2021/06/pokemon-order-and-chaos/", + "library_path": "—", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Order_and_Chaos", + "type": [ + "New Experience" + ], + "tags": [ + "hack", + "platform/gba", + "base/firered", + "status/complete", + "type/newexperience", + "source/discord" + ], + "summary": "**Creator**: EasyBakeStudios **Version**: REMASTERED 2024 **Hack of**: FireRed **Updated**: May 26, 2024 **Language**: English **Status**: Completed [Source Website](https://www.pokeharbor.com/2021/06/pokemon-order-and-chaos/) **__Story__** Years prior to the game, two Dragons Chaosotra and Orderana were at war. Orderana won, and peace was spread across the Region of Mando. Chaos is spreading again, so people are afraid that the Dragon Chaosotra might come back to punish them. It has also been prophesied that a 15-year-old child will bring order after the chaos. The story does take itself seriously but always remember that you're still out to get those Pokemon or Fakemon in this hack. **__Features__** The game has edited and altered sprites for its graphics. The Fakemon roster is a bit unclear, but there are a lot of them available. The Fakemon have their own types, Moves, stats, and others. - Intriguing Story to plunge into. - Two Regions to Explore. - Fakemon makes up the roster. - Physical and Special split. - Altered sprites and graphics. - Character portraits available.", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Info / thread", + "url": "https://www.pokeharbor.com/2021/06/pokemon-order-and-chaos/" + } + ] + }, + { + "stem": "Pefect Emerald", + "title": "Pokémon Pefect Emerald", + "platform": "GBA", + "base": "Emerald", + "version": "s", + "status": null, + "generation": "Gen III", + "developer": "DarthBR & CreamELDudJafar", + "release_date": "2025-01-22", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Pefect_Emerald/152414854_5047150972021688_564794601643820-ff3b73a48dde7878.jpg", + "source": "https://drive.google.com/file/d/1-_Z77txQBIdXnyxSiWwoieKXsdcXNQ7t/view?usp=drivesdk", + "library_path": "/storage1/Emulation/roms/gba/PerfectE v5.4 PSS.gba", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Pefect_Emerald", + "type": [ + "New Experience", + "Cosmetic" + ], + "tags": [ + "hack", + "platform/gba", + "base/emerald", + "type/newexperience", + "type/cosmetic", + "source/discord" + ], + "summary": "**Pokémon Pefect Emerald** is a GBA ROM Hack by DarthBR & CreamELDudJafar based on Pokemon Emerald. It was last updated on January 22, 2025.", + "notability": "", + "story": "", + "features": [ + "All 386 Pokémon obtainable (without trading)", + "No new Pokemon, attacks or tilesets", + "Face Red and Leaf from FireRed and LeafGreen versions", + "Lots of post game events after E4", + "Mirage Island is open after E4", + "All rare Berries available", + "Prism Scale added", + "All four of Deoxys' formes available", + "Nintendo Style legendary Pokémon battles (every event ticket has a story behind)", + "Trade evolutions now via Link Stone", + "Eevee now evolves to Espeon and Umbreon using Sun and Moon Stones", + "TMs and Move Tutors are reusable.", + "Most of the evolution stones avaliable in Lilycove Mart", + "All gen I-III items available in-game", + "Lucky Egg multiplier 2.5", + "B2/W2 Repel System", + "Gym leaders, Elite 4 and Rivals have slight AI improvements", + "All in-game trades have been altered", + "Nature colored stats", + "Running indoors", + "Fixed Pomeg glitch", + "Fixed PNRG", + "Eggs hatch at lvl 1", + "More informations**" + ], + "links": [ + { + "label": "Download", + "url": "https://drive.google.com/file/d/1-_Z77txQBIdXnyxSiWwoieKXsdcXNQ7t/view?usp=drivesdk" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/u0dmoufepfk16o7/Pokemon_Perfect_Emerald_v5.4_ORIGINAL.gba/file" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/82ljc177gwte17o/Pokemon_Perfect_Emerald_v5.4_PSS.gba/file" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/to823jlfpsb5ixj/DNS_Pokemon_Perfect_Emerald_v5.4_ORIGINAL.gba/file" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/t82ovsrzc1i1an0/DNS_Pokemon_Perfect_Emerald_v5.4_PSS.gba/file" + }, + { + "label": "Download", + "url": "https://mega.nz/file/0e0mGYgS#mnRY5oEU5jFfVkTvAgzfyQLyUiENsWNv1vJzFeVTt_U" + }, + { + "label": "Download", + "url": "https://mega.nz/file/BbsVwCZQ#MsZvg5QOVoYMW5vdSrn7lcXbeK6U64PZSUCQwj4chX0" + }, + { + "label": "Download", + "url": "https://mega.nz/file/NPk3FS7I#-hQ-2mIj1_By4TFmnWX6WjDJcGEz8k7pZSHt5kaCjYM" + } + ] + }, + { + "stem": "Peppermint", + "title": "Pokémon Peppermint", + "platform": null, + "base": null, + "version": null, + "status": null, + "generation": null, + "release_date": "2025", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Peppermint/Pokemon-Peppermint-83c616130087fcbc.png", + "source": "https://www.pokeharbor.com/2025/05/pokemon-peppermint/", + "library_path": "—", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Peppermint", + "type": [ + "Expansion" + ], + "tags": [ + "hack", + "type/expansion", + "source/discord" + ], + "summary": "You play as Ivy, a laid-back yet determined girl who dreams of taking over as Santa one day. When a mysterious letter arrives asking for help defeating the ancient Titans, Ivy sees it as the perfect opportunity to prove herself. Alongside her loyal companion, Peppermint the Delibird, you'll explore three islands, unravel secrets, defeat powerful Titans, and maybe clean up a few of Peppermint's scattered gift boxes along the way. Will you answer the call and rise to the challenge?", + "notability": "", + "story": "", + "features": [ + "A custom-made gift system to obtain random", + "Pokémon and items scaled by your current level.", + "An open world adventure spanning 3 islands", + "(officially) with absolutely no grinding necessary, just maximum liberty.", + "A ton of optional side quests to spice up the adventure and provide unique and powerful rewards.", + "A whole new custom-made soundtrack by King_Waluigi, specially curated for the islands' environments.", + "The Delibird in-battle assistance system - use at your own risk (surprise)!", + "Hidden bosses and mega evolutions.", + "Speed Up button.", + "https://www.pokeharbor.com/2025/05/pokemon-peppermint/" + ], + "links": [ + { + "label": "Info / thread", + "url": "https://www.pokeharbor.com/2025/05/pokemon-peppermint/" + } + ] + }, + { + "stem": "Peridot", + "title": "Pokémon Peridot", + "platform": "GBC", + "base": "Crystal", + "version": "2.2.3", + "status": "Ongoing", + "generation": "Gen 2 style", + "source": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Peridot%20rom%20hack", + "library_path": "roms/gbc/Hacks/Pokemon - Peridot (Hack).gbc", + "play_status": "Unplayed", + "type": [ + "New Experience" + ], + "tags": [ + "hack", + "platform/gbc", + "base/crystal", + "status/ongoing", + "type/newexperience" + ], + "summary": "A from-scratch new region on the Gen 2 engine with an original dex and story.", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Lookup", + "url": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Peridot%20rom%20hack" + } + ] + }, + { + "stem": "Phoenix Red", + "title": "Pokémon Phoenix Red", + "platform": "GBA", + "base": "FireRed", + "version": "1.2", + "status": "Complete", + "generation": "Multi-gen", + "source": "https://www.hackdex.app/hack/pokemon-phoenix-red", + "library_path": "roms/gba/Hacks/Pokemon - Phoenix Red (Hack).gba", + "play_status": "Unplayed", + "type": [ + "Difficulty", + "Expansion" + ], + "tags": [ + "hack", + "platform/gba", + "base/firered", + "status/complete", + "type/difficulty", + "type/expansion" + ], + "summary": "An enhanced, harder FireRed with all 8 gens obtainable, Megas, and tough fights.", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Source / info", + "url": "https://www.hackdex.app/hack/pokemon-phoenix-red" + }, + { + "label": "Lookup", + "url": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Phoenix%20Red%20rom%20hack" + } + ] + }, + { + "stem": "Photonic Sun & Prismatic Moon", + "title": "Pokémon Photonic Sun & Prismatic Moon", + "platform": null, + "base": null, + "version": "s of Pokémon Ultra Sun and Ult", + "status": null, + "generation": "Gen VII", + "developer": "Buffel Saft", + "release_date": "2021", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Photonic_Sun_Prismatic_Moon/619aaecd2f180a069f2519d1b88700c4-1-ba66f014515f0e87.png", + "source": "https://drive.google.com/drive/mobile/folders/1zU-yEwI-JoFiF6yHT9qFy_Y5JFAvEi70?usp=sharing", + "library_path": "/storage1/labdata/romhacks/library/Pok_mon_Photonic_Sun_Prismatic_Moon/", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Photonic_Sun_Prismatic_Moon", + "type": [ + "Difficulty", + "QoL" + ], + "tags": [ + "hack", + "type/difficulty", + "type/qol", + "source/discord" + ], + "summary": "Named after Necrozma's signature moves, Pokémon Photonic Sun and Prismatic Moon are enhanced versions of Pokémon Ultra Sun and Ultra Moon. They include all the usual features you'd expect in this sort of hack; stronger trainers, the ability to catch and train any Pokémon you want, and Ultra Changes easier access to powerful items. Training most Pokémon in the hacks is also much easier; they'll learn egg moves by simply levelling up, won't need to be traded to evolve, and will hatch from eggs extremely quickly. Trainers and wild Pokémon are designed around leaving the EXP Share ON from the mome", + "notability": "", + "story": "The story in Pokémon Photonic Sun and Pokémon Prismatic Moon remains largely the same as in Pokémon Ultra Sun and Pokémon Ultra Moon, but with some modifications that make the journey more engaging and challenging. These changes are primarily gameplay-oriented rather than narrative-driven while the plot stays the same as in the original games.", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://drive.google.com/drive/mobile/folders/1zU-yEwI-JoFiF6yHT9qFy_Y5JFAvEi70?usp=sharing" + } + ] + }, + { + "stem": "Pisces", + "title": "Pokémon Pisces", + "platform": "GBA", + "base": null, + "version": "1.5.4", + "status": "Complete", + "generation": "Multi-gen", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Pisces/Pokemon-Pisces-1f16212d7016c2ce.webp", + "source": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Pisces%20rom%20hack", + "library_path": "roms/gba/Hacks/Pokemon - Pisces (Hack).gba", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Pisces", + "type": [ + "New Experience" + ], + "tags": [ + "hack", + "platform/gba", + "base/unknown", + "status/complete", + "type/newexperience" + ], + "summary": "An original-region adventure hack.", + "notability": "", + "story": "", + "features": [ + "New Storyline & Fully Remapped Hoenn. Experience Hoenn like never before with a completely redesigned map and an all-new story that offers a fresh perspective on the region.", + "Over 200 Original Fakemon. Discover a Pokédex filled with over 200 unique Fakemon, crafted with care by the talented Pebbler Platoon team, known for their work on Pokémon Altered.", + "New Characters. Meet a brand-new professor, new male and female protagonists, and a variety of fresh NPCs that bring new life to the world of Pokémon Pisces.", + "New Moves & Abilities. Expand your battle strategies with newly introduced moves and abilities, adding more depth and excitement to every fight." + ], + "links": [ + { + "label": "Lookup", + "url": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Pisces%20rom%20hack" + } + ] + }, + { + "stem": "Pitch Black & Pure White", + "title": "Pokémon Pitch Black & Pure White", + "platform": null, + "base": "Pokemon Black & White", + "version": "https://mega.nz/folder/NIonRLy", + "status": null, + "generation": "Gen V", + "developer": "using your most powerful attacks", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Pitch_Black_Pure_White/Screenshot_2024-07-14_151834-ff05d321347de869.png", + "source": "https://mega.nz/folder/NIonRLyT#gqcp8Dz9dxlmRkonMDaZCA", + "library_path": "/storage1/labdata/romhacks/library/Pokemon_Pitch_Black_Pure_White/", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Pitch_Black_Pure_White", + "type": [], + "tags": [ + "hack", + "base/pokemonblack&white", + "source/discord" + ], + "summary": "Catalogued from the Discord ROM-hack archive. See links below.", + "notability": "", + "story": "", + "features": [ + "Rated X for eXtremely hard!", + "Because let's face it, Pokemon was made with children in mind so it's made possible for a 6-year old to beat it.", + "These hacks will prove difficult even for adult Pokemon fans. You can beat the real games simply by using your most powerful attacks, but that won't work in Pure White/Pitch Black.", + "You'll have to rely on more advanced strategies like status effects, stat-lowering moves, and switching constantly to keep your team alive.", + "A guide will be given to tell you how to beat the Gym Leaders/Elite 4, but their actual teams won't be revealed because that's for you to find out!", + "There is even a more Difficult Post Game as well! Think you can clear it all?", + "Old Places, New Faces", + "Non-Unova Pokemon will be available to you as soon as you begin your adventure. This gives you more team options to face the upcoming challenges.", + "Of course, you should expect your opponents to use non-Unova Pokemon as well.", + "Gotta Catch 'Em All!", + "All 649 Pokemon will be available in this game without trading, transferring, or accessing the Dream World.", + "This includes legendary Pokemon as well, although they will be especially tough to find. A list of Pokemon locations will be provided.", + "The Solution to Evolution", + "Pokemon that used to evolve by trade have new evolution methods so you won't have to trade anymore.", + "A list of new evolution methods will be provided.", + "A Dream Come True!", + "Now you can get Pokemon with Dream World abilities without actually having to access Dream World.", + "All the best abilities have been added to Pokemon who need them such as Drizzle Politoed, Drought Ninetales, and Speed Boost Blaziken." + ], + "links": [ + { + "label": "Download", + "url": "https://mega.nz/folder/NIonRLyT#gqcp8Dz9dxlmRkonMDaZCA" + }, + { + "label": "Download", + "url": "https://mega.nz/folder/4ApkkLaZ#cbz54T6MEou5wRk-hkUq9g" + }, + { + "label": "Download", + "url": "https://mega.nz/folder/4ApkkLaZ" + }, + { + "label": "Download", + "url": "https://mega.nz/folder/NIonRLyT" + } + ] + }, + { + "stem": "Platinum Kaizo", + "title": "Pokémon Platinum Kaizo", + "platform": "NDS", + "base": null, + "version": "1.6.4Ultimate patch", + "status": null, + "generation": "Gen IV", + "release_date": "2025", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Platinum_Kaizo/IMG_9767-c92e714226fc545b.jpg", + "source": "https://drive.google.com/file/d/1teRWH8Wp2cdUc2j1JKCbVPvLaQHBJcZz/view?usp=drive_link", + "library_path": "/storage1/Emulation/roms/nds/Pokemon Platinum Kaizo Nightmare patch 1.6.4 ultimate.nds", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Platinum_Kaizo", + "type": [ + "Difficulty" + ], + "tags": [ + "hack", + "platform/nds", + "type/difficulty", + "source/discord" + ], + "summary": "Name: Pokemon Platinum Kaizo Created by: Draz Version 1.6.4Ultimate patch **# Official Platinum Kaizo Resources ** - **[Mastersheet](https://docs.google.com/spreadsheets/d/1y95UYKY9HNgZjUlbeZbQ3BWf5IqcFqAkmstC-OSa6vc/edit?usp=sharing)** - **[Encounters](https://docs.google.com/spreadsheets/d/1uAPGjsY5a-X9DJ9HK_Wyy8TcYHwzVI5uJ1UUwHo4MLI/edit?usp=sharing)** - **[Trainers ](https://docs.google.com/spreadsheets/d/1FDPAoLT9Qoj-gTzosvwzcNCRxVcURgUT7TsfW69DHaA/edit?usp=sharing)** - **[Items ](https://docs.google.com/spreadsheets/d/1h9vW08KEWbL6ucdBIPBZG1Phmc9ZaT9KOt8NADdWIuQ/edit?usp=sharing)** - ** [Eterna Forest Map ](https://drive.google.com/file/d/1teRWH8Wp2cdUc2j1JKCbVPvLaQHBJcZz/view?usp=drive_link)** - **[Contest Resources](https://docs.google.com/spreadsheets/d/190KzSPAuZfIM61cPcxaGNO4iMvn-bPceGW070UmGg_I/edit?usp=sharing) ** - **[Hall of Fame](https://docs.google.com/spreadsheets/d/1ki6NwXMXuGP0fO0YV3lrPc-uKnwEy5xwtJoyJUtI3Zo)** - **[FAQ ](https://docs.google.com/document/d/11ZprzZDSaJVwzIP1tI6X-JfFoct3jNMDW9i1eciPyHk/edit?usp=sharing)** - **[Calc](https://pkcalc.anastarawneh.com/)** - **[Lua Script](https://pkcalc.anastarawneh.com/uploads/PK_Script_1.0.zip)** - **[Plat Kaizo Hex](https://github.com/zuils/PlatKaizoHeX/releases/latest)** For the Lua script to work, you need to extract the Lua binaries into your Desmume folder. These are now directly bundled with the script, but if you downloaded it before, you can get them here. **## Community Resources** - **[EMI Calc](https://emi.dev/calc/pk) ** **- [Gen 4 AI doc](https://gist.github.com/lhearachel/ff61af1f58c84c96592b0b8184dba096) - [Acid Rain Breakdown](https://docs.google.com/document/d/1ucBWH7gDwBZ1IpuGEhOm3Ojh_uRqrCVspSzavZip1vI/edit?usp=sharing)** **## Other Tools** - **[RunasDate for changing date / night ](https://runasdate.org/wp-content/uploads/2025/01/runasdate64-bit.zip)**", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://drive.google.com/file/d/1teRWH8Wp2cdUc2j1JKCbVPvLaQHBJcZz/view?usp=drive_link" + }, + { + "label": "Download", + "url": "https://drive.google.com/drive/folders/1kLhdn09AfYFy-3R3epVycGNRxnmzvVFi?dmr=1&ec=wgc-drive-%5Bmodule%5D-goto" + }, + { + "label": "Download", + "url": "https://mega.nz/file/4cZl1LjC#TjGh7UQ2zV0RanYzHuccukuiZ-5XjavRRJrqflD6qVY" + }, + { + "label": "Download", + "url": "https://mega.nz/file/4cZl1LjC" + }, + { + "label": "Guide / docs", + "url": "https://docs.google.com/spreadsheets/d/1y95UYKY9HNgZjUlbeZbQ3BWf5IqcFqAkmstC-OSa6vc/edit?usp=sharing" + }, + { + "label": "Guide / docs", + "url": "https://docs.google.com/spreadsheets/d/1uAPGjsY5a-X9DJ9HK_Wyy8TcYHwzVI5uJ1UUwHo4MLI/edit?usp=sharing" + }, + { + "label": "Guide / docs", + "url": "https://docs.google.com/spreadsheets/d/1FDPAoLT9Qoj-gTzosvwzcNCRxVcURgUT7TsfW69DHaA/edit?usp=sharing" + }, + { + "label": "Guide / docs", + "url": "https://docs.google.com/spreadsheets/d/1h9vW08KEWbL6ucdBIPBZG1Phmc9ZaT9KOt8NADdWIuQ/edit?usp=sharing" + } + ] + }, + { + "stem": "Platinum Red", + "title": "Pokémon Platinum Red", + "platform": "GBA", + "base": null, + "version": "completed 1.3", + "status": "Complete", + "generation": "Gen III", + "developer": "Gogojjtech", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Platinum_Red/IMG_9901-a1fc854beae1c49e.jpg", + "source": "https://raw.githubusercontent.com/vbaemulator/GBA-Roms/main/Pokemon%20Platinum%20Red-a1.3.zip", + "library_path": "/storage1/Emulation/roms/gba/Pokemon Platinum Red-a1.3.zip", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Platinum_Red", + "type": [], + "tags": [ + "hack", + "platform/gba", + "status/complete", + "source/discord" + ], + "summary": "Pokemon Platinum Red is a remake version of Pokemon Platinum on GBA. Have you ever enjoyed and played the great, funny, interesting Pokemon Platinum on GBA handheld?\n\nWell, it was known as one of the best Pokemon hack until now.\nAnd with Pokemon Platinum Red, you will have a whole new experience. Check out all the features.", + "notability": "", + "story": "", + "features": [ + "The gameplay remains the same, but there are something new…", + "There are many different events which can give you Mystery Gifts. Surely you won't feel bored.", + "Everything is in Sinnoh Region, from looks to tiles, etc…", + "You can have DS-styled sprites. They will give you a feeling of DS battles.", + "493 Pokemon are available for obtaining.", + "The moves are from Diamond/Pearl/Platinum, including the Physical/Special changes.", + "Some new types of Pokeballs: Dusk Ball, Quick Ball, Park Ball.", + "Rotom, Deoxys, Arceus have formes.", + "Day/Night system with changes about time. The soundtracks are affected also.", + "[Download Link](https://raw.githubusercontent.com/vbaemulator/GBA-Roms/main/Pokemon%20Platinum%20Red-a1.3.zip)" + ], + "links": [ + { + "label": "Download", + "url": "https://raw.githubusercontent.com/vbaemulator/GBA-Roms/main/Pokemon%20Platinum%20Red-a1.3.zip" + } + ] + }, + { + "stem": "Platinum Redux", + "title": "Pokémon Platinum Redux", + "platform": "NDS", + "base": "Platinum", + "version": "s", + "status": null, + "generation": "Gen IV", + "developer": "Henry Van Patten", + "release_date": "2025-04-14", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Platinum_Redux/Pokemon-Platinum-Redux-98cb57ad6e5edb10.jpg", + "source": "https://drive.google.com/drive/u/0/mobile/folders/1x_fqWGG2FHxlpzyGUfU5ArMEj9PWtyO9", + "library_path": "/storage1/Emulation/roms/nds/PlatinumRedux2.9.7HC.zip", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Platinum_Redux", + "type": [ + "Difficulty", + "QoL" + ], + "tags": [ + "hack", + "platform/nds", + "base/platinum", + "type/difficulty", + "type/qol", + "source/discord" + ], + "summary": "Platinum Redux is a difficulty rom hack of Platinum. The changes listed below aim to provide a more challenging Platinum experience focused on team building and battling. The rom currently has a roster of 493 Pokémon.\n\n**Difference between Platinum Redux and Renegade Platinum**\nPlatinum Redux has a lot of things like quality of life changes in common with Renegade Platinum but there are also massive differences. The Pokémon and move changes are more extreme in Platinum Redux. Therefore, the ROM-hack is less like the mainline Pokémon games. There are also a lot of regional forms in Platinum Red", + "notability": "", + "story": "", + "features": [ + "All fully evolved Pokémon have a unique niche/purpose", + "Increased but fair difficulty", + "Every single Pokémon is catchable somewhere in tall grass.", + "Regional forms", + "New Moves with Custom Animations", + "Type chart and different versions", + "Features for Nuzlocking", + "Quality of life features, Speedup patch, and [Damage calc](https://hennsu.github.io/PlatinumRedux/?gen=4)", + "More informations**", + "[Documentation](https://drive.google.com/drive/u/0/mobile/folders/1x_fqWGG2FHxlpzyGUfU5ArMEj9PWtyO9)" + ], + "links": [ + { + "label": "Download", + "url": "https://drive.google.com/drive/u/0/mobile/folders/1x_fqWGG2FHxlpzyGUfU5ArMEj9PWtyO9" + }, + { + "label": "Download", + "url": "https://mega.nz/file/NWsSzJJJ#yePFALbzwn3hp8eqnpbJM75iZYfu-ZVCB0HRJY7Vayc" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/tp8vtdliv4vgydx/PlatinumRedux2.9.7.zip/file" + }, + { + "label": "Download", + "url": "https://mega.nz/file/NWsSzJJJ" + }, + { + "label": "Download", + "url": "https://mega.nz/file/lDcQwTAC#5Jb6lha4XZAIrv8Q8ozMZOE8ViWHeOSREzN11DV3xjw" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/768kwah54d4ya24/PlatinumRedux2.9.7HC.zip/file" + }, + { + "label": "Download", + "url": "https://mega.nz/file/BDdSEAqL#GFJ7FAEUlDUJJ6S8i7ZZydjbnzVrgIYf7bjzhacq3FI" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/ig4hpn0yaxe7bxq/PlatinumRedux2.9.7TC4.zip/file" + } + ] + }, + { + "stem": "Platinum Unlocked", + "title": "Pokémon Platinum Unlocked", + "platform": "NDS", + "base": "Platinum", + "version": "Beta 1.1", + "status": "Beta", + "generation": "Gen IV", + "developer": "Yosammy", + "release_date": "2024", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Platinum_Unlocked/Pokemon-Platinum-Unlocked-e4d6443ac590472d.jpg", + "source": "https://www.mediafire.com/file/i22q8w46kgf4rfa/Platinum+Unlocked+", + "library_path": "/storage1/Emulation/roms/nds/Platinum Unlocked (v1.1).zip", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Platinum_Unlocked", + "type": [ + "QoL" + ], + "tags": [ + "hack", + "platform/nds", + "base/platinum", + "status/beta", + "type/qol", + "source/discord" + ], + "summary": "**Description**: Pokemon Platinum Unlocked is a hack of Pokémon Platinum that enhances the experience with quality-of-life improvements, expanded replayability, and added post-game content, all while staying faithful to the vanilla game. If you're looking for a version of Platinum that feels authentic to the original but with modernized conveniences and additional features, Platinum Unlocked is the perfect choice. It ensures everything you catch and experience remains legit for Generation 4 and onward, making it ideal for players who value compatibility and authenticity.", + "notability": "", + "story": "", + "features": [ + "Gameplay Enhancements", + "National Pokédex from the Start: Includes updated location data for seamless encounters.", + "Expanded Wild Encounters:", + "Catch GBA insertion Pokémon, swarm species, daily Great Marsh, and Trophy Garden encounters without waiting.", + "Fish with the Good Rod to access Pokémon normally locked behind the Super Rod (e.g., Staryu, Dratini, Wailmer) at their usual locations.", + "Feebas is now a normal fishing encounter in Mt. Coronet.", + "Daily Drifloon: Available every day after the Valley Windworks event (requires one-day wait for first appearance).", + "Spiritomb Simplified: Obtainable after inserting the Odd Stone.", + "Key items like Oak's Letter, Member Card, Secret Key, and fossils placed at accessible locations (e.g., Galactic HQ, Oreburgh Mine, Resort Area, Stark Mountain).", + "Revamped teams for Gyms, Elite Four, Cynthia, Galactic Bosses, and Battleground Rematches with added Pokémon, sometimes reflecting BDSP counterparts.", + "Quality-of-Life Improvements", + "Reusable TMs: No need to repurchase or re-farm TMs.", + "HMs from the Bag: Use Cut, Strength, Rock Smash, and Waterfall directly from your bag (note: Waterfall doesn't work to descend)", + "[Download Pokemon Platinum Unlocked](https://www.mediafire.com/file/i22q8w46kgf4rfa/Platinum+Unlocked+(v1.1).zip/file)" + ], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/i22q8w46kgf4rfa/Platinum+Unlocked+" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/i22q8w46kgf4rfa/Platinum+Unlocked+(v1.1" + } + ] + }, + { + "stem": "Pocket Gaiden", + "title": "Pokémon Pocket Gaiden", + "platform": null, + "base": "China", + "version": null, + "status": null, + "generation": null, + "release_date": "2026", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pocket_Gaiden/IMG_9902-e77ed8d47043f720.webp", + "source": "https://secure.ue.internxt.com/sh/file/pYZ7JTKYSgiGufUsob6HiA/CNHJdI-u", + "library_path": "—", + "play_status": "Unplayed", + "scrape_dir": "Pocket_Gaiden", + "type": [ + "New Experience" + ], + "tags": [ + "hack", + "base/china", + "type/newexperience", + "source/discord" + ], + "summary": "Pocket Gaiden", + "notability": "", + "story": "", + "features": [ + "New Region", + "New Story", + "Limited resources" + ], + "links": [ + { + "label": "Download", + "url": "https://secure.ue.internxt.com/sh/file/pYZ7JTKYSgiGufUsob6HiA/CNHJdI-u" + } + ] + }, + { + "stem": "Poketropolis", + "title": "Pokémon Poketropolis", + "platform": "PC", + "base": null, + "version": "Completed 1.3", + "status": "Complete", + "generation": "Joiplay/RPGXP", + "developer": "AthalePrime", + "source": "https://www.mediafire.com/file/hi4v1mmdz4v8vrt/POKETROPOLIS_V1.3.rar/file", + "library_path": "/storage1/labdata/romhacks/library/Pokemon_Poketropolis/", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Poketropolis", + "type": [], + "tags": [ + "hack", + "platform/pc", + "status/complete", + "source/discord" + ], + "summary": "This is not your typical Pokemon Game where you travel trough a Region and defeat an evil organization to save the world. This is an Open World game with heavy emphasis on exploration and player freedom, thus there is no singular overarching plot to be found(or is there...?) The world is yours to explore from the second you finish the ca. 1 min long tutorial at the start. If you´re looking for a Pokemon-Metroidvania style open world game with quests, you found it.", + "notability": "", + "story": "", + "features": [ + "Fossil Reviver", + "Daycare", + "Multiple Name Raters", + "Multiple Move Deleters", + "Multiple Move Relearners", + "Kurts Pokeballs and Apricorn Trees", + "10 Gyms", + "Gyms follow a specific Theme rather than a Single Type", + "Badges can be won in alternative ways", + "Dive Maps", + "NO Roaming Legendary Pokemon", + "EV/IV Screen (visible in Pokemon menu)", + "Bug Contests", + "Jurassic Park", + "Slotmachines", + "Voltorbflip", + "Tilepuzzles", + "DPPt-Style Digging minigames", + "Triple Triad", + "Following Pokemon(Heartgold/Soulsilver style)", + "Adaptive Leveling of Wild Pokemon(Optional, can be toggled between random Levels and adaptive leveling) and Trainers/Gymleaders(depending on the Number of Badges you have)", + "Gym Leader Rematches (They won´t hold back this time...)", + "HM Items(No more wasting Moveslots for HM Moves)", + "Trade Expert" + ], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/hi4v1mmdz4v8vrt/POKETROPOLIS_V1.3.rar/file" + } + ] + }, + { + "stem": "PokéRogue", + "title": "Pokémon PokéRogue", + "platform": "PC", + "base": null, + "version": null, + "status": null, + "generation": null, + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_Rogue/pokerogue-df0eaf2d60d0e273.jpg", + "source": "https://pokerogue.net/", + "library_path": "—", + "play_status": "Unplayed", + "scrape_dir": "Pok_Rogue", + "type": [ + "Roguelite" + ], + "tags": [ + "hack", + "platform/pc", + "type/roguelite", + "source/discord" + ], + "summary": "**PokéRogue** is a Pokémon fangame heavily inspired by the roguelite genre. Battle endlessly while gathering stacking items, exploring many different biomes, and reaching! No need to download anything just play it on your browser (also work on mobile)! Play now on: [PokéRogue website](https://pokerogue.net/)", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Link", + "url": "https://pokerogue.net/" + } + ] + }, + { + "stem": "Polished Crystal", + "title": "Pokémon Polished Crystal", + "platform": "GBC", + "base": "Crystal", + "version": "3.2.3", + "status": "Complete", + "generation": "Gen 1–7 mons", + "developer": "Rangi42", + "release_date": "2025-02-01", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Polished_Crystal/title-screen_1-1-53ffd82fef5da7ef.png", + "source": "https://github.com/Rangi42/polishedcrystal", + "library_path": "roms/gbc/Hacks/Pokemon - Polished Crystal (Hack).gbc", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Polished_Crystal", + "type": [ + "Vanilla+", + "QoL", + "Expansion" + ], + "tags": [ + "hack", + "platform/gbc", + "base/crystal", + "status/complete", + "type/vanilla+", + "type/qol", + "type/expansion" + ], + "summary": "The gold standard Crystal enhancement: physical/special split, ~Gen 7 movesets/species availability, faithful or modern modes, tons of QoL. Open-source decomp.", + "notability": "", + "story": "", + "features": [ + "Summary:", + "253 Pokémon, including some new evolutions.", + "48 new moves, 75 TMs, and 31 move tutors.", + "Modern mechanics, such as the Fairy type, Physical/Special split, Natures, Abilities, and more.", + "Unlimited TMs and quality-of-life features like Running Shoes and continuous Repel.", + "New/Revamped Maps: Some from R/B/Y, some devamped from HG/SS, plus original locations.", + "New Characters including Lorelei and Agatha (R/B/Y), Lyra and the Team Rocket Executives (HG/SS), and others.", + "More Post-Game Content: Gym Leader rematches, a new event after battling Red, and more.", + "Improved Level Curve with steadily increasing challenges.", + "Music and Graphics devamped from newer generations." + ], + "links": [ + { + "label": "Source / info", + "url": "https://github.com/Rangi42/polishedcrystal" + }, + { + "label": "Lookup", + "url": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Polished%20Crystal%20rom%20hack" + } + ] + }, + { + "stem": "Prism", + "title": "Pokémon Prism", + "platform": "GBC", + "base": "Crystal", + "version": "1.0", + "status": "Complete", + "generation": "Gen 2+", + "developer": "RainbowDevs", + "release_date": "2023", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Prism/pokemon-prism-gbc-1-fdef6771d192fc86.png", + "source": "https://www.pokecommunity.com/threads/pokemon-prism.379413/", + "library_path": "roms/gbc/Hacks/Pokemon - Prism (Hack).gbc", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Prism", + "type": [ + "New Experience" + ], + "tags": [ + "hack", + "platform/gbc", + "base/crystal", + "status/complete", + "type/newexperience" + ], + "summary": "Koolboyman's acclaimed new Naljo region — new types, side games, huge custom dex. Famously C&D'd then completed; a Gen 2 magnum opus.", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Source / info", + "url": "https://www.pokecommunity.com/threads/pokemon-prism.379413/" + }, + { + "label": "Lookup", + "url": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Prism%20rom%20hack" + } + ] + }, + { + "stem": "Project Nova", + "title": "Pokémon Project Nova", + "platform": "GBA", + "base": "Emerald", + "version": "2.7.0", + "status": "Ongoing", + "generation": "Multi-gen", + "source": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Project%20Nova%20rom%20hack", + "library_path": "roms/gba/Hacks/Pokemon - Project Nova (Hack).gba", + "play_status": "Unplayed", + "type": [ + "New Experience", + "Expansion" + ], + "tags": [ + "hack", + "platform/gba", + "base/emerald", + "status/ongoing", + "type/newexperience", + "type/expansion" + ], + "summary": "A new-experience hack on the Emerald expansion.", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Lookup", + "url": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Project%20Nova%20rom%20hack" + } + ] + }, + { + "stem": "Pure Heart True Soul", + "title": "Pokémon Pure Heart / True Soul", + "platform": "NDS", + "base": null, + "version": null, + "status": null, + "generation": "Gen IV", + "developer": "gunshoo", + "release_date": "2024", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Pure_Heart_True_Soul/IMG_7056-0ef6cace7e88179a.jpg", + "source": "https://www.mediafire.com/file/2yeczhvyzsk14ip/PureHeart+", + "library_path": "/storage1/Emulation/roms/nds/TrueSoul (v3.1.2).zip", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Pure_Heart_True_Soul", + "type": [ + "Difficulty" + ], + "tags": [ + "hack", + "platform/nds", + "type/difficulty", + "source/discord" + ], + "summary": "Pokémon Pure Heart and Pokémon True Soul are romhacks of Pokémon HeartGold and SoulSilver. These hacks aim to refine the original games by introducing thoughtful enhancements that enrich the gameplay experience. Rather than overhauling the games entirely, the creator focused on implementing a series of edits—ranging from minor tweaks to significant additions—to create what he envisions as his games.", + "notability": "", + "story": "While the core narrative of traversing the Johto region, collecting badges, and challenging the Pokémon League remains intact, Pure Heart and True Soul introduce expanded character interactions and story elements. Notably, the character Eusine receives a more prominent role, featuring additional battles and a unique storyline that delves deeper into his pursuit of Suicune. These enhancements provide players with a fresh perspective on familiar events, adding depth to the original plot without deviating from its foundational structure.", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/2yeczhvyzsk14ip/PureHeart+" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/ufaim15kxihws2k/TrueSoul+" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/2yeczhvyzsk14ip/PureHeart+(v3.1.2" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/ufaim15kxihws2k/TrueSoul+(v3.1.2" + } + ] + }, + { + "stem": "Quarantine Crystal", + "title": "Pokémon Quarantine Crystal", + "platform": "GB", + "base": null, + "version": null, + "status": "Complete", + "generation": "Gen II", + "developer": "spriter and artist DazzyDeer back in May", + "release_date": "2024", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Quarantine_Crystal/IMG_8739-244ff6ff27638f73.png", + "source": "https://www.mediafire.com/file/hl4bu8e59h8cwls/QuarantineCrystal+", + "library_path": "/storage1/Emulation/roms/gb/QuarantineCrystal (Demo v0.803).zip", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Quarantine_Crystal", + "type": [ + "New Experience" + ], + "tags": [ + "hack", + "platform/gb", + "status/complete", + "type/newexperience", + "source/discord" + ], + "summary": "This started as an art project by spriter and artist DazzyDeer back in May, where he began designing a Fakemon dex based off of randomly rolled prompts (the \"QuarantineDex\" project on 4chan's /vp/). The goal of the project is to make the most out of the nasty situation that global quarantine is, so the project started small in scope - just replace gen 2's roster with the fakemon - but grew to add features like the phys/spec split, and became a collaborative effort with randoms on /vp/ who contributed minisprites, assets, and more. Experience a region with completely new Pokemon! You never know", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/hl4bu8e59h8cwls/QuarantineCrystal+" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/hl4bu8e59h8cwls/QuarantineCrystal+(Demo+v0.803" + } + ] + }, + { + "stem": "Quetzal", + "title": "Pokémon Quetzal", + "platform": "GBA", + "base": null, + "version": "of Pokemon Emerald. You can ch", + "status": null, + "generation": "Gen III", + "developer": "TenmaRH", + "release_date": "2026", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Quetzal/Screenshot_20230608-034438_Discord-1-1-b650dd8f49b65b99.jpg", + "source": "https://www.mediafire.com/file/agkv548s9vkudzi/QuetzalEnglishAlpha8v4.zip/file", + "library_path": "/storage1/Emulation/roms/gba/QuetzalSpanishAlpha8v4.gba", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Quetzal", + "type": [], + "tags": [ + "hack", + "platform/gba", + "source/discord" + ], + "summary": "Pokemon Quetzal is a multiplayer version of Pokemon Emerald. You can choose from 11 starters. You can also challenge your friends for a Pokemon battle!", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/agkv548s9vkudzi/QuetzalEnglishAlpha8v4.zip/file" + }, + { + "label": "Download", + "url": "https://mega.nz/file/KVN2zRbL#vqZAKjetEhravnkGSsgNezMJmKZRIUtCDbK5-chdVdg" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/930ijevilddogtv/QuetzalSpanishAlpha8v4.zip/file" + }, + { + "label": "Download", + "url": "https://mega.nz/file/rEMQ3ZSL#urHnCV1q7ROYlxkr5vgpsryaib8bvJe1mN-923rsFQc" + } + ] + }, + { + "stem": "R.O.W.E.", + "title": "Pokémon R.O.W.E.", + "platform": "GBA", + "base": "Emerald", + "version": "2.1.1", + "status": "Ongoing", + "generation": "Multi-gen", + "developer": "Rioluwott", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_ROWE/IMG_9873-be83c55aa6f2b052.webp", + "source": "https://www.hackdex.app/hack/pokemon-rowe", + "library_path": "roms/gba/Hacks/Pokemon - R.O.W.E. (Hack).gba", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_ROWE", + "type": [ + "New Experience", + "QoL", + "Expansion" + ], + "tags": [ + "hack", + "platform/gba", + "base/emerald", + "status/ongoing", + "type/newexperience", + "type/qol", + "type/expansion" + ], + "summary": "Open-world Emerald — level scaling, ride-anywhere, nuzlocke-friendly settings, and all gens. The 'Mega Update' build.", + "notability": "", + "story": "", + "features": [ + "Explore the region in any order you want.", + "Gen 8", + "Following Pokémon", + "Tons of QoL Changes to get your team without having to Breed to get good Ivs/Abilities", + "Egg Move Tutor", + "Chose between 9 starters or get one randomly.", + "3 Different Game Difficulties - Easy, Normal, and Hard", + "Regional Music Options(Chose between Kanto, Johto, Hoenn, and Sinnoh Music)", + "Randomized Mode", + "Double Battle Mode(Every fight is a Double Battle)", + "Inverse Mode(Inverted type chart)", + "Perfect Ivs Mode(everything has 31 ivs)", + "No Evs mode(Nothing has evs)", + "Random Party Mode", + "Little Cup-like mode", + "No need for HMs", + "In-Game Wonder Trades", + "Nature Mints", + "A way to change the Poke Balls of already caught Mons", + "Pokémon from all the 8 Gens", + "AutoRun Options", + "Up to 120 Tms", + "Physical/Special Split(This can be removed by an In-game Mode)", + "Daily Gym Leader Rematches" + ], + "links": [ + { + "label": "Source / info", + "url": "https://www.hackdex.app/hack/pokemon-rowe" + }, + { + "label": "Lookup", + "url": "https://duckduckgo.com/?q=Pok%C3%A9mon%20R.O.W.E.%20rom%20hack" + } + ] + }, + { + "stem": "RE Verse", + "title": "Pokémon RE: Verse", + "platform": "GBA", + "base": null, + "version": "of Fire Red, providing players", + "status": null, + "generation": "Gen III", + "developer": "sylingga", + "release_date": "2024", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_RE_Verse/FB_IMG_1708760750370-1-64e89714bc78878e.jpg", + "source": "https://www.mediafire.com/file/lv2ywxa6sx757h0/RE+Verse+v0.9.1.zip/file", + "library_path": "/storage1/Emulation/roms/gba/RE Verse v0.9.1.zip", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_RE_Verse", + "type": [ + "Expansion" + ], + "tags": [ + "hack", + "platform/gba", + "type/expansion", + "source/discord" + ], + "summary": "The objective of this hack is to offer a reimagined version of Fire Red, providing players with a refreshing and immersive gameplay. By preserving the essence of FireRed, RE:Verse has familiar locations such as Pallet and Viridian with altered positions and pathways that put novelty into the gameplay. Many locations have been changed/moved around, giving the \"reimagined\" experience.", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/lv2ywxa6sx757h0/RE+Verse+v0.9.1.zip/file" + } + ] + }, + { + "stem": "Radiant Topaz", + "title": "Pokémon Radiant Topaz", + "platform": "PC", + "base": null, + "version": "v1.0.0", + "status": "Complete", + "generation": "Joiplay/RPGXP", + "developer": "LilMissCodeMonkey02", + "release_date": "2023", + "source": "https://pokehostel.com/pokemon-radiant-topaz/", + "library_path": "/storage1/labdata/romhacks/library/Pokemon_Radiant_Topaz/", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Radiant_Topaz", + "type": [ + "Expansion", + "New Experience" + ], + "tags": [ + "hack", + "platform/pc", + "status/complete", + "type/expansion", + "type/newexperience", + "source/discord" + ], + "summary": "[Source Website](https://pokehostel.com/pokemon-radiant-topaz/)", + "notability": "", + "story": "You play as a young trainer starting their journey to the Pokemon League, with a mysterious past and a surprising amount of experience. After choosing and catching your first pair of starters, you quickly meet Team Nox, an evil organization spreading Shadow Pokemon across the Aurore region.\n\nInspired by Pokemon XD, you'll get to experience peak 2005-era edginess. You'll snag and purify Shadow Pokemon while trying to figure out their connection to the Mega Evolution phenomena. Team up with Prof. Oak, this region's Prof. Ginkgo, and the greatest trainer of all time Miror B. to stop them, while completing your gym challenge and making your way to the Pokemon League.", + "features": [ + "Double Battles: Most battles are double battles, requiring dynamic team-building.", + "Shadow Pokemon: Battle and capture Shadow Pokemon with type advantages but no leveling up; Team Nox uses Mega Evolved Shadows.", + "Level Lowerer: Lower your Pokemon's level anytime with no cost or items; includes level caps for challenge.", + "Permanent Megas: Mega Evolve Pokemon permanently at level 80;", + "Community Fakemon: Includes Fakemon from the community with available sprites.", + "Custom Pokemon: Features original Fakemon with unique type combos and abilities.", + "Overworld Pokemon: Pokemon visible in the overworld, aiding in finding legendaries and providing companionship.", + "Encounter Density: Unique routes with diverse encounters; includes rare Pokemon and some legendaries.", + "Accessible Evolutions: All Pokemon can evolve without trades; plentiful evolutionary stones and new Paradox Pokemon stones.", + ":Download: [Alternative Download](https://mega.nz/file/GFEiDJBZ#xNEzp7gbC-nVLj_yweHBhZyyWMWY7y1PHkpHg81KcdQ)" + ], + "links": [ + { + "label": "Link", + "url": "https://pokehostel.com/pokemon-radiant-topaz/" + }, + { + "label": "Download", + "url": "https://mega.nz/file/GFEiDJBZ#xNEzp7gbC-nVLj_yweHBhZyyWMWY7y1PHkpHg81KcdQ" + }, + { + "label": "Download", + "url": "https://mega.nz/file/GFEiDJBZ" + } + ] + }, + { + "stem": "Radical Red", + "title": "Pokémon Radical Red", + "platform": "GBA", + "base": "FireRed", + "version": "4.1", + "status": "Complete", + "generation": "Gen 1–9", + "developer": "Soupercell (Yuuiii) & koala4", + "release_date": "2024", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Radical_Red/Pokemon-Radical-Red-1-7a741e1bfbf9ae4f.jpg", + "homepage": "https://radicalred.miraheze.org/wiki/Main_Page", + "source": "https://www.hackdex.app/hack/radical-red", + "library_path": "roms/gba/Hacks/Pokemon - Radical Red (Hack).gba", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Radical_Red", + "type": [ + "Difficulty", + "Expansion" + ], + "tags": [ + "hack", + "platform/gba", + "base/firered", + "status/complete", + "type/difficulty", + "type/expansion", + "source/discord" + ], + "summary": "Pokémon Radical Red is the flagship modern difficulty hack — a FireRed overhaul by Soupercell (Yuuiii) and koala4 packing an expanded 800+ National Dex spanning Gen 1–9, full Gen-9 battle mechanics, and a brutally smart AI that builds competitive teams with held items and switching. Difficulty and grind toggles let you tune it from 'still harder than vanilla' all the way to a hardcore Nuzlocke gauntlet.", + "notability": "Probably the single most popular and most-streamed modern GBA hack — the benchmark that defined the 'hardcore difficulty + full dex' genre.", + "story": "", + "features": [ + "Expanded 800+ National Dex across Gen 1–9 (incl. Gen 9 DLC mons)", + "Gen-9 battle mechanics, moves and abilities", + "Smart competitive AI — held items, switching, EV-trained bosses", + "Difficulty modes (Normal / Hard) plus Min-Grinding and Easy toggles", + "Character customization", + "Full quality-of-life suite (DexNav, reusable TMs, fast options)" + ], + "links": [ + { + "label": "Source / info", + "url": "https://www.hackdex.app/hack/radical-red" + }, + { + "label": "Lookup", + "url": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Radical%20Red%20rom%20hack" + } + ] + }, + { + "stem": "Rainbow Gold", + "title": "Pokémon Rainbow Gold", + "platform": "NDS", + "base": "HeartGold", + "version": "Differences**", + "status": "Complete", + "generation": "Gen IV", + "developer": "DARTHBR", + "release_date": "2025-09-10", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Rainbow_Gold/Pokemon-Rainbow-Gold_1-f34da801fe61bb68.png", + "source": "https://drive.google.com/file/d/1vc42vc6gUwPnjOMikAF-TnZAQqu3kPHe/view?usp=drivesdk", + "library_path": "/storage1/Emulation/roms/nds/Rainbow-Gold-v1.5.nds", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Rainbow_Gold", + "type": [ + "New Experience", + "QoL" + ], + "tags": [ + "hack", + "platform/nds", + "base/heartgold", + "status/complete", + "type/newexperience", + "type/qol", + "source/discord" + ], + "summary": "**Pokémon Rainbow Gold** is an NDS ROM Hack by DARTHBR based on Pokemon Heart Gold & Soul Silver. It was last updated on September 10, 2025.", + "notability": "", + "story": "", + "features": [ + "All Pokémon obtainable without trading, with in-game evolutions.", + "Updated Wild Encounters", + "Examples include:", + "Johto:** Pichu, Houndour, Phanpy, Larvitar, Misdreavus, Murkrow, Slugma, Teddiursa, Skarmory, Elekid, Smoochum, Sneasel, and Gligar.", + "Kanto:** Pinsir, Scyther, Rhyhorn, Ponyta, Doduo, Cubone, and Exeggcute.", + "Restored Legendary & Mythical Events: All legendary and mythical Pokémon events from various generations are restored, including Arceus, Celebi (with GS Ball), Latios & Latias, Dialga, Palkia, Giratina, the Lake Trio, Manaphy, Heatran, the Legendary Birds, Groudon, Kyogre, Rayquaza, Shaymin, Rotom, Spiky-eared Pichu, Darkrai, Cresselia, Jirachi, the Regi Trio (plus Regigigas), and Mew.", + "Regional Gift Pokémon: Kanto, Johto, Hoenn, and Sinnoh starters are spread across the map as gift Pokémon.", + "Brand New Revamped Safari Zone: Complete Baoba's two challenges for full access; no more 90-day waits to catch Pokémon. The Safari Zone is restored to its classic design, without \"objects\"—simply enter your desired zone and catch Pokémon.", + "Hoenn & Sinnoh Sounds: Access to Hoenn and Sinnoh radio channels from the start (Wednesdays for Hoenn, Thursdays for Sinnoh).", + "Evolutions:", + "Espeon & Umbreon: Evolve via Sun Stone and Moon Stone, respectively.", + "Leafeon & Glaceon: Evolve by leveling up near Moss Rock (Viridian Forest) and Ice Rock (Seafoam Islands).", + "Magnetic Field Evolution: Magneton evolves into Magnezone and Nosepass into Probopass by leveling up in a magnetic field zone (Outside Kanto Power Plant).", + "Feebas now evolves based on friendship.", + "Shiny Rate: Increased to 1/256 (Shiny Charm equivalent).", + "HMs Can Be Forgotten", + "TMs Are Infinite", + "IV/EV Check: Hold L for EV and R for IV before opening the Pokémon summary screen.", + "Early Fossil Reviver: Available in Goldenrod City (requires 6th badge).", + "All Fossils Obtainable.", + "New Evolution Stones: Including Link Cord.", + "Exp Share: Available from the start of the game.", + "Wonder Trade: Available at the GTS station, allowing access to Hoenn and Sinnoh Pokémon on days the radio channels are inactive.", + "Revamped In-Game Trades: In-game Pokémon trades have been rebalanced, offering new opportunities to obtain rare Pokémon, such as Feebas in Olivine City" + ], + "links": [ + { + "label": "Download", + "url": "https://drive.google.com/file/d/1vc42vc6gUwPnjOMikAF-TnZAQqu3kPHe/view?usp=drivesdk" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/bsoouugg1m7sl1l/Rainbow-Gold-v1.5.zip/file" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/meft3lgcouckk87/Kris-Rainbow-Gold-v1.5b.zip/file" + }, + { + "label": "Download", + "url": "https://mega.nz/file/XcFgSCwS#ASe0pbmbiPtAfqPZiDYEMZiT2bHKuO5MOuXR8WqJuUg" + }, + { + "label": "Download", + "url": "https://mega.nz/file/jIEkACKa#kji-rsfgA-f7n2jZJNGse2eVkAKd_QnfE0SlyT8qErY" + }, + { + "label": "Link", + "url": "https://discord.com/invite/BtVgmfvBbE" + } + ] + }, + { + "stem": "Re Union DX", + "title": "Pokémon Re:Union DX", + "platform": "PC", + "base": null, + "version": "v3.4", + "status": "Complete", + "generation": "Joiplay/RPGXP", + "developer": "Taka", + "release_date": "2025", + "source": "https://pokehostel.com/pokemon-reunion-dx/", + "library_path": "/storage1/labdata/romhacks/library/Pokemon_Re_Union_DX/", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Re_Union_DX", + "type": [ + "Expansion", + "New Experience" + ], + "tags": [ + "hack", + "platform/pc", + "status/complete", + "type/expansion", + "type/newexperience", + "source/discord" + ], + "summary": "[Source Website](https://pokehostel.com/pokemon-reunion-dx/) [Discord](https://discord.com/invite/gJm9pmx4Xg) ## __The Synopsis__ RED, now a legend among several trainers, and recognized worldwide, then returns to his native region after his journey to become a Pokémon Master. A journey that will end with a merciless fight at the summit of Mount Silver against a certain trainer… But his return will not go as he hoped. A strange phenomenon seems to appear in the KANTO region. Indeed, numerous ultra-wormhole have started to appear across the four corners of the region. It is said that a certain police officer named Looker would seek to speak as quickly as possible with this legendary trainer, in order to ask for his help in this matter. What new adventures await RED alongside Looker? You'll find out by playing Pokemon ReUnion Dx", + "notability": "", + "story": "", + "features": [ + "Play as Red.", + "Pokemon from Generation 1 to 9.", + "Paradox Forms.", + "Anime Characters like Cynthia, Looker, Steven, Serena, Gladion and others.", + "Multiple Villains Team.", + "Following Pokemon.", + "Mega Evolution.", + "Gigantamax.", + "Fakemons.", + "Explore multiverse through different timelines.", + "High Graphics.", + "Live Character mugshots.", + "Mind-blowing battle system.", + "Lots of New trainers.", + "New events.", + "Engaging sidequests.", + "Raid Battles.", + "Ultra Wormholes", + ":Download: [Download](https://mega.nz/folder/GFphEZhC#M3beSqdU3In_IPgZjegsAg/folder/fRJXSJxa)" + ], + "links": [ + { + "label": "Link", + "url": "https://pokehostel.com/pokemon-reunion-dx/" + }, + { + "label": "Download", + "url": "https://mega.nz/folder/GFphEZhC#M3beSqdU3In_IPgZjegsAg/folder/fRJXSJxa" + }, + { + "label": "Download", + "url": "https://mega.nz/folder/GFphEZhC" + }, + { + "label": "Link", + "url": "https://discord.com/invite/gJm9pmx4Xg" + } + ] + }, + { + "stem": "Re Universe", + "title": "Pokémon Re:Universe", + "platform": "GBA", + "base": "FireRed", + "version": null, + "status": null, + "generation": "Gen III", + "developer": "Poken_Hunter", + "release_date": "2025-03-13", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Re_Universe/Pokemon-ReUniverse-99850f084dd9cca8.webp", + "source": "https://www.mediafire.com/file/6cpyz2fai359oo0/re+universe.zip/file", + "library_path": "/storage1/Emulation/roms/gba/re universe.gba", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Re_Universe", + "type": [ + "Expansion" + ], + "tags": [ + "hack", + "platform/gba", + "base/firered", + "type/expansion", + "source/discord" + ], + "summary": "Catalogued from the Discord ROM-hack archive. See links below.", + "notability": "", + "story": "The Kanto region has long been a haven for trainers and Pokémon alike—a land of peace and prosperity. But five years ago, that peace was shattered by Team Rocket, a ruthless crime syndicate that stole, experimented on, and even killed Pokémon to achieve its sinister goals.Team Rocket-themed merchandise\n\nThen, a legendary trainer rose to the challenge. With unmatched skill and determination, they crushed Team Rocket, forcing their leader, Giovanni, to disband the organization. Order was restored, and Kanto thrived once more.\nBut peace never lasts.\n\nTeam Rocket has returned, stronger and more dangerous than ever. With advanced technology, secret alliances, and a hidden agenda that could shake the foundation of the region, their influence is already spreading. Pokémon are vanishing. Shadowy figures lurk in the streets. Something terrible is coming.\n\nAnd Kanto's only hope… is you.\n\nYou are Red, the undefeated Champion—the trainer who once brought Team Rocket to its knees. After years of solitude, and training beyond the public eye, you must rise again.", + "features": [ + "Remixed Kanto - Explore a modified Kanto with new locations and expanded areas.", + "Improved Battle AI - Face smarter opponents with better strategies.", + "Side Quests - Take on additional challenges beyond the main story.", + "Soaring & Diving - Fly freely above Kanto's skies and dive into the depths of the sea.", + "Res Evolution - A unique new twist on Mega Evolution.", + "The region you love is in danger. The enemy is waiting." + ], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/6cpyz2fai359oo0/re+universe.zip/file" + } + ] + }, + { + "stem": "Realidea System", + "title": "Pokémon Realidea System", + "platform": "PC", + "base": null, + "version": "V4.1", + "status": "Complete", + "generation": "Joiplay/RPGXP", + "developer": "Phion Games", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Realidea_System/upload-1654519270894-1-5cde45bd3e1b7fa8.png", + "source": "https://mega.nz/file/A4MEwKIb#lyK3r1C49HfNmQuDwaGRJ6OrALOM9rHc84IZpqf-Rt4", + "library_path": "/storage1/labdata/romhacks/library/Pokemon_Realidea_System/", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Realidea_System", + "type": [ + "New Experience", + "QoL" + ], + "tags": [ + "hack", + "platform/pc", + "status/complete", + "type/newexperience", + "type/qol", + "source/discord" + ], + "summary": "Esoteria is a peaceful region. You, the protagonist of this story, follow the path that most trainers do - collecting the 8 badges and facing the Pokémon League Champion.\nAs you continue your journey, you'll notice a weird bunch people trying to... artificially create bonds between Pokémon and Trainers? Would something like this be alright?\nWhat is this Realidea System they keep talking about? Is it something everyone should get a hold of...?\n\nGo find out where investigating Metis Corp. will lead you, alongside your new friends!", + "notability": "", + "story": "", + "features": [ + "Fakemon starters & a new legendary mon. A few regional forms.", + "Animated battle sprites, clean battle UI.", + "New characters with their own mugshots (while not present in the main story, there are some official ones, too!)", + "Lots of secondary content that can be accessed through completing Quests during the adventure. Some bigger quests are unlocked after finished the game", + "8 Gym Badges to get & of course a Pokémon League", + "Plenty of QoL features (speed up, dialogue skipping and textlog keys, backup saving, evolution method checking while on the summary screen, free move reminder & nature changing in the party menu...)", + "English & Spanish languages available!", + "## :Download: [Download Here](https://mega.nz/file/A4MEwKIb#lyK3r1C49HfNmQuDwaGRJ6OrALOM9rHc84IZpqf-Rt4)" + ], + "links": [ + { + "label": "Download", + "url": "https://mega.nz/file/A4MEwKIb#lyK3r1C49HfNmQuDwaGRJ6OrALOM9rHc84IZpqf-Rt4" + }, + { + "label": "Download", + "url": "https://mega.nz/file/A4MEwKIb" + } + ] + }, + { + "stem": "Reborn", + "title": "Pokémon Reborn", + "platform": "PC", + "base": null, + "version": "Episode 19", + "status": "Complete", + "generation": "Gen 1–7", + "developer": "Amethyst & the Reborn Team", + "release_date": "2023", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Reborn/16-1-5dc2bc1637770907.png", + "homepage": "https://www.rebornevo.com/", + "source": "https://www.rebornevo.com/pr/index.html/", + "library_path": "—", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Reborn", + "type": [ + "Difficulty", + "New Experience" + ], + "tags": [ + "hack", + "platform/pc", + "status/complete", + "type/difficulty", + "type/newexperience", + "source/discord" + ], + "summary": "Pokémon Reborn is a dark, story-rich RPG Maker XP fangame set in the grimy, pollution-choked Reborn City. Created by Amethyst and the Reborn team, it's famous for punishing difficulty, an innovative Field Effects system that turns battlefield terrain into a layer of competitive strategy, and a mature narrative spanning 18 gyms and well over 100 hours.", + "notability": "A landmark of the fangame scene: Reborn defined the 'hard, story-driven Essentials game' template later followed by Rejuvenation, Desolation and others. Episode 19 marks its completion after roughly a decade of development.", + "story": "", + "features": [ + "18 Gym Leaders across a sprawling, decaying metropolis", + "Original Field Effects system — terrain reshapes every battle", + "All 21 starters available; every Pokémon through Gen 7 obtainable", + "100+ hours of mature, choice-driven story", + "Online battling, trading and Wondertrade", + "Customised shiny Pokémon and deep post-game" + ], + "links": [ + { + "label": "Link", + "url": "https://www.rebornevo.com/pr/index.html/" + } + ] + }, + { + "stem": "Recharged Pink", + "title": "Pokémon Recharged Pink", + "platform": "GBA", + "base": "Emerald", + "version": "removes connection features an", + "status": null, + "generation": "Gen III", + "developer": "Jaizu", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Recharged_Pink/box_art_recharged_pink-08da894558eeacb2.png", + "source": "https://mega.nz/file/sEhWkYzJ#lwtJTD4b6YdydxCWImcYcNx7dgVcpax4J1koZn7BRmw", + "library_path": "/storage1/Emulation/roms/gba/Pokemon Recharged Pink v1.9.2.gba", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Recharged_Pink", + "type": [], + "tags": [ + "hack", + "platform/gba", + "base/emerald", + "source/discord" + ], + "summary": "Pokémon Recharged Pink is a variation of Pokemon Recharged Yellow, tailored for players who don't require compatibility with Generation 3 games. This version removes connection features and includes a cheat menu accessible through the Player's computer. For a detailed list of changes, see below.", + "notability": "", + "story": "", + "features": [ + "Clefairy is your starter Pokémon.", + "The Pokédex features a pink UI.", + "No game label in the Pokémon summary screen.", + "A cheat menu in the Player's computer allows access to items, Pokémon, and editing IVs/EVs.", + "The default textbox color is pink instead of blue.", + "Battle UI now features a pink/purple textbox instead of an orange one.", + "Pikachu can be caught in the Viridian Forest.", + "Changes to the battle engine", + "Ghost-type is now Special & Dark-type and Dragon-type are now Physical.", + "Some trainers have modified movesets to align with the type changes.", + "Rom link : https://mega.nz/file/sEhWkYzJ#lwtJTD4b6YdydxCWImcYcNx7dgVcpax4J1koZn7BRmw" + ], + "links": [ + { + "label": "Download", + "url": "https://mega.nz/file/sEhWkYzJ#lwtJTD4b6YdydxCWImcYcNx7dgVcpax4J1koZn7BRmw" + }, + { + "label": "Download", + "url": "https://mega.nz/file/sEhWkYzJ" + } + ] + }, + { + "stem": "Recharged Yellow (previously known as Pok├⌐mon Yellow Cross)", + "title": "Pokémon Recharged Yellow (previously known as Pokémon Yellow Cross)", + "platform": "GBA", + "base": "Emerald", + "version": null, + "status": null, + "generation": "Gen III", + "developer": "Jaizu", + "release_date": "2025-04-26", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Recharged_Yellow_previously_known_as_Pok_mon_Yellow_Cross/618d008b-52fa-4a54-aa0c-b4d38ce4f5e9_recha-6a5e25d3ab490cad.webp", + "source": "https://www.mediafire.com/file/q7iti30m26c3qy3/rchrgd+yllw+v1.8.0.zip/file", + "library_path": "/storage1/Emulation/roms/gba/rchrgd yllw v1.8.0.zip", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Recharged_Yellow_previously_known_as_Pok_mon_Yellow_Cross", + "type": [ + "Difficulty", + "QoL" + ], + "tags": [ + "hack", + "platform/gba", + "base/emerald", + "type/difficulty", + "type/qol", + "source/discord" + ], + "summary": "**Pokémon Recharged Yellow (previously known as Pokemon Yellow Cross)** is a GBA ROM Hack by Jaizu based on Pokemon Emerald. It was last updated on April 26, 2025.", + "notability": "", + "story": "", + "features": [ + "Pikachu as Starter", + "Following Pokemon System", + "Fully compatible with vanilla gen 3 games and Pokemon Heliodor!", + "Kanto rebuilt in Pokemon Emerald engine, this includes RTC, berries, contests and post-game facilities.", + "Pokemon color variation from Pokemon stadium, this is reflected in the followers, party menu and pc boxes!", + "Richer Pokemon icons, this reflects the PID of your Pokemon and if they are shiny", + "Lots of quality of life features", + "Built in hard mode, nuzlocke mode and level cap", + "Lots of touches from Let's Go Pikachu, including Jessie and James.", + "Sevii Islands are locked to post-game, they all have new and revamped content", + "And lots of more stuff!" + ], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/q7iti30m26c3qy3/rchrgd+yllw+v1.8.0.zip/file" + }, + { + "label": "Download", + "url": "https://mega.nz/file/BKcRkRrD#m1OO-nPtGu79bK_J4LkLaPkOul0KdGAYrfyEGmRGbjc" + } + ] + }, + { + "stem": "Recordkeepers", + "title": "Pokémon Recordkeepers", + "platform": "GBA", + "base": "Emerald", + "version": "1.2.1", + "status": "Ongoing", + "generation": "Multi-gen", + "developer": "Turtleye & Hedara", + "release_date": "2025", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Recordkeepers/IMG_8737-e3efe62fdd6d3503.png", + "source": "https://www.hackdex.app/hack/recordkeepers", + "library_path": "roms/gba/Hacks/Pokemon - Recordkeepers (Hack).gba", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Recordkeepers", + "type": [ + "New Experience", + "Expansion" + ], + "tags": [ + "hack", + "platform/gba", + "base/emerald", + "status/ongoing", + "type/newexperience", + "type/expansion" + ], + "summary": "A narrative-driven Emerald-expansion hack.", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Source / info", + "url": "https://www.hackdex.app/hack/recordkeepers" + }, + { + "label": "Lookup", + "url": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Recordkeepers%20rom%20hack" + } + ] + }, + { + "stem": "Red++ Kaizo", + "title": "Pokémon Red++ Kaizo", + "platform": null, + "base": null, + "version": null, + "status": "Complete", + "generation": null, + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Red_Kaizo/Pokemon-Red-Kaizo-1-ec46a5d592ca2b70.jpg", + "library_path": "—", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Red_Kaizo", + "type": [ + "Difficulty", + "Expansion" + ], + "tags": [ + "hack", + "status/complete", + "type/difficulty", + "type/expansion", + "source/discord" + ], + "summary": "Pokemon Red++ Kaizo offers a much harder version of Red++, providing a tougher challenge for veteran players while keeping some quality-of-life features to enhance gameplay. The game is complete, following the same story and post-game as the original Red++, but with ramped-up difficulty to truly test your skills. Here's what's new:\n\n Portable PC: Access your PC anytime, anywhere.\n Pokédex Learnsets: View Pokémon's learnsets, including TM/HM and evolution learnsets, directly in the Pokédex.\n Detailed Stats: Check a Pokémon's DV and EV stats by holding Start or Select when viewing its stats.\n Le", + "notability": "", + "story": "", + "features": [], + "links": [] + }, + { + "stem": "Rejuvenation", + "title": "Pokémon Rejuvenation", + "platform": "PC", + "base": null, + "version": "13.5", + "status": "Ongoing", + "generation": "Gen 1–8", + "developer": "Jan & the Rejuvenation Team", + "release_date": "2023-10-29", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Rejuvenation/Screenshot_20240628_152348_Discord-6a5d3f6cae7802de.jpg", + "homepage": "https://rejuvenation.wiki.gg/", + "source": "https://www.pokeharbor.com/2024/01/pokemon-rejuvenation/", + "library_path": "—", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Rejuvenation", + "type": [ + "Difficulty", + "New Experience" + ], + "tags": [ + "hack", + "platform/pc", + "status/ongoing", + "type/difficulty", + "type/newexperience", + "source/discord" + ], + "summary": "Pokémon Rejuvenation is a heavily story-driven, Gen-3-styled fangame set in the storm-ravaged Aevium region, an island archipelago near Kalos. Built by Jan and the Rejuvenation Team in RPG Maker XP, it blends a sprawling, mature narrative against Team Xen with Reborn-style Field Effects and steep difficulty. v13.5 reaches the 15th gym, with development continuing toward a planned v16 finale.", + "notability": "Alongside Reborn, the gold standard of long-form story fangames — praised for its emotional narrative, branching choices and demanding battles. Version 16 is slated as the final update.", + "story": "", + "features": [ + "Aevium region — five interconnected islands to explore", + "Story content through the 15th gym (and a little beyond)", + "Field Effects system adopted and expanded from Reborn", + "All 24 starters available; all 898 Pokémon findable", + "80+ hours of gameplay excluding sidequests", + "Branching, choice-heavy mature narrative" + ], + "links": [ + { + "label": "Info / thread", + "url": "https://www.pokeharbor.com/2024/01/pokemon-rejuvenation/" + } + ] + }, + { + "stem": "Reminiscencia", + "title": "Pokémon Reminiscencia", + "platform": null, + "base": null, + "version": "1.8", + "status": "Complete", + "generation": null, + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Reminiscencia/image-10-9793b8b0f07c45c1.png", + "source": "https://mega.nz/file/5oNDGI5R#0b_7aQ3fMlUCo6Gwo8dVLXEXnW-seV-o_OanYqxVdRg", + "library_path": "—", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Reminiscencia", + "type": [ + "Roguelite" + ], + "tags": [ + "hack", + "status/complete", + "type/roguelite", + "source/discord" + ], + "summary": "**Developer**: Phion Games **Version**: 1.8 **Status**: Completed ## __Description__ On a quiet island, Anthony and his friend Walrein meet Celebi, Phione and a strange Lugia. Celebi can grant wishes and asks Anthony to help her on a journey in exchange for fulfilling one of her wishes. Together they explore new islands, meet different Pokémon and discover secrets. They become friends and learn a lot about each other. You can select for example the difficulty, toggle animated sprites in combat or even select if you want text sounds. In addition, several extra modes have been included after completing the story, such as an extra chapter and dungeon mode, where you will have events and challenges in pure roguelike style. ## __Features__ - Complete with Postgame. - Spanish and English. - Different modes such as normal and hard. - New history and region. - Custom graphics. - Pokémon from Gen 1 - 9. - Character portraits. - Terastilazation. - Combat with pokémon in optional movement. - Moves and abilities updated to the 8th Generation. - Physical and special damage split. ## :Download: [Download Here](https://mega.nz/file/5oNDGI5R#0b_7aQ3fMlUCo6Gwo8dVLXEXnW-seV-o_OanYqxVdRg)", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://mega.nz/file/5oNDGI5R#0b_7aQ3fMlUCo6Gwo8dVLXEXnW-seV-o_OanYqxVdRg" + }, + { + "label": "Download", + "url": "https://mega.nz/file/5oNDGI5R" + } + ] + }, + { + "stem": "Renegade Platinum", + "title": "Pokémon Renegade Platinum", + "platform": "NDS", + "base": "Platinum", + "version": "1.3.0", + "status": "Complete", + "generation": "Gen 1–4 mons", + "source": "https://www.pokecommunity.com/threads/pokemon-renegade-platinum.347531/", + "library_path": "roms/nds/Hacks/Pokemon - Renegade Platinum (Hack).nds", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Renegade_Platinum", + "type": [ + "Difficulty", + "Vanilla+" + ], + "tags": [ + "hack", + "platform/nds", + "base/platinum", + "status/complete", + "type/difficulty", + "type/vanilla+" + ], + "summary": "Drayano's definitive enhanced Platinum — full availability, much harder fights, and QoL. A community favorite Sinnoh run.", + "notability": "", + "story": "", + "features": [ + "All 493 Pokémon Available", + "From Bulbasaur to Arceus, all Pokémon from Platinum are possible to obtain within the game. The wild Pokémon in each location have been drastically modified, and now include species not often found in the Sinnoh region. New events have been introduced to the game to make getting these Pokémon to feel as distinctive as they typically would.", + "Revamped Trainer Battles", + "All Trainers use AI, which is generally reserved for boss Trainers like the Elite Four.", + "Increased Shiny Rate (1/8192 -> 1/512)", + "Increased Gameplay Speed", + "New Special Events and NPCs", + "Fairy Type", + "In-game Trades Changed", + "Some TMs Have Changed", + "Basic Stats Updated to Sun/Moon", + "No More Trade Evolutions. (They Evolve by Leveling Up)", + "All Wild & Trainer Pokemon Have Been Changed", + "__**Download:**__", + "https://drive.google.com/file/d/1V7BAmnmIQZaKo24xypH2HZ7_NxOsIF--/view?usp=drivesdk", + "Ren plat traîner", + "https://docs.google.com/spreadsheets/d/17GNbbOuCX2UCiU5dzMnyRmIE5yMuXIrY45g3moQ6MbE/edit?gid=963553190#gid=963553190", + "Calc :", + "https://hzla.github.io/Dynamic-Calc/?data=26138cc1d500b0cf7334&dmgGen=4&gen=7&switchIn=4&types=6", + "Doc :", + "https://drive.google.com/drive/folders/1YZl5iShTdRwQIQ7FO1hAJaYBryWxxHwE" + ], + "links": [ + { + "label": "Source / info", + "url": "https://www.pokecommunity.com/threads/pokemon-renegade-platinum.347531/" + }, + { + "label": "Lookup", + "url": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Renegade%20Platinum%20rom%20hack" + } + ] + }, + { + "stem": "Resolute", + "title": "Pokémon Resolute", + "platform": "GBA", + "base": "Ruby", + "version": "2.97", + "status": "Complete", + "generation": "Gen 1–6 mons", + "developer": "Wind1158", + "release_date": "2024-03-09", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Resolute/pokemon-resolute_1-17db059ab41784d8.png", + "source": "https://www.pokecommunity.com/threads/pokemon-resolute.330577/", + "library_path": "roms/gba/Hacks/Pokemon - Resolute (Hack).gba", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Resolute", + "type": [ + "New Experience" + ], + "tags": [ + "hack", + "platform/gba", + "base/ruby", + "status/complete", + "type/newexperience" + ], + "summary": "A story-heavy new region (Sun-Moon-era mons added) with a difficulty mode; from the Mega Power/Light Platinum lineage.", + "notability": "", + "story": "", + "features": [ + "New regions, new gyms", + "3 Regions (Sylon, Tyron, Johto)", + "Battle Department - A place for trainers from all over the world to battle.", + "Some 4th gen and 5th gen Pokemon, about 33 Pokemon of the 6th generation and 5 Pokemon of 7th gen.", + "Some new tiles", + "Mega Evolutions", + "Alolan Vulpix and Alolan Ninetales" + ], + "links": [ + { + "label": "Source / info", + "url": "https://www.pokecommunity.com/threads/pokemon-resolute.330577/" + }, + { + "label": "Lookup", + "url": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Resolute%20rom%20hack" + } + ] + }, + { + "stem": "Revitalus Immortalis", + "title": "Pokémon Revitalus Immortalis", + "platform": "PC", + "base": null, + "version": null, + "status": "Complete", + "generation": "Joiplay/RPGXP", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Revitalus_Immortalis/IMG_9773-88a31019d897b812.png", + "source": "https://www.mediafire.com/file/pmekoi0b4rsazsn/Revitalus_Immortalis_%2528WJ4_Edition%2529.zip/file", + "library_path": "/storage1/labdata/romhacks/library/Pokemon_Revitalus_Immortalis/", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Revitalus_Immortalis", + "type": [], + "tags": [ + "hack", + "platform/pc", + "status/complete", + "source/discord" + ], + "summary": "As Dr. Axis Vactaire, you and your only remaining Pokemon, have taken refuge inside an abandoned, ransacked, decrepit, Ruined Factory in a closed down industrial park just outside a big city, divided into multiple districts. Whilst sheltering inside the factory, you come across what appears to be an abandoned Pokemon experiment in stasis inside a machine.\n\nYou deduce that the machine requires a certain kind of medicine (and enough of it too). So, with your Pokemon partner in tow, you take to the streets of Ridgefield, curious to learn more about how the unfortunate events previously plaguing K", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/pmekoi0b4rsazsn/Revitalus_Immortalis_%2528WJ4_Edition%2529.zip/file" + }, + { + "label": "Link", + "url": "https://eeveeexpo.com/threads/6153/" + } + ] + }, + { + "stem": "Rising Ruby & Sinking Sapphire", + "title": "Pokémon Rising Ruby & Sinking Sapphire", + "platform": null, + "base": null, + "version": "s of Omega Ruby and Alpha Sapp", + "status": null, + "generation": "Gen VI", + "developer": "Drayano", + "release_date": "2015", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Rising_Ruby_Sinking_Sapphire/IMG_6861-1-08666d6603d3e63a.webp", + "source": "https://drive.google.com/drive/folders/0B-zmEVN0Mas6b3p1cUg3UVNXNWM?resourcekey=0-LpcfVeyFYbeRwAj1c9AV2A", + "library_path": "/storage1/labdata/romhacks/library/Pok_mon_Rising_Ruby_Sinking_Sapphire/", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Rising_Ruby_Sinking_Sapphire", + "type": [ + "Difficulty" + ], + "tags": [ + "hack", + "type/difficulty", + "source/discord" + ], + "summary": "Pokémon Rising Ruby and Sinking Sapphire are enhanced versions of Omega Ruby and Alpha Sapphire, offering all 721 Pokémon and a significantly stronger Pokémon League. With a focus on Pokémon availability, most areas feature 10-11 new species, and the equal encounter rates make it perfect for Nuzlocke runs. The game also includes adjustments to level-up moves, evolutions, base stats, abilities, and types, allowing players to use any Pokémon they like. Trainer battles are more challenging with six Pokémon per roster, sharper level curves, evolved Pokémon appearing earlier, and stronger movesets.", + "notability": "", + "story": "The story is primarely the same as Pokémon Omega Ruby and Alpha Sapphire. As the creator stated: \"There are unfortunately no edits to the events that take place within the game as script editing is currently not possible on any games in gen 6, so this hack is purely for an enhanced in-game experience.\"", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://drive.google.com/drive/folders/0B-zmEVN0Mas6b3p1cUg3UVNXNWM?resourcekey=0-LpcfVeyFYbeRwAj1c9AV2A" + }, + { + "label": "Download", + "url": "https://drive.google.com/file/d/14-GsvIpeOwT25dqtrpbC1FzE5O1F2NJJ/view" + } + ] + }, + { + "stem": "Rising Sun & Waning Moon", + "title": "Pokémon Rising Sun & Waning Moon", + "platform": null, + "base": "Sun", + "version": null, + "status": "Complete", + "generation": "Gen VII", + "developer": "altering the game's balance", + "release_date": "2017", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Rising_Sun_Waning_Moon/IMG_6654-1-f587cc3941fcf345.webp", + "source": "https://drive.google.com/drive/mobile/folders/0By0T413LWAPQaXpEZWpiS3hldlU?usp=drive_open&resourcekey=0-VJMLk5pBSr5YhYfcQvgv3A", + "library_path": "/storage1/labdata/romhacks/library/Pok_mon_Rising_Sun_Waning_Moon/", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Rising_Sun_Waning_Moon", + "type": [ + "Difficulty", + "QoL" + ], + "tags": [ + "hack", + "base/sun", + "status/complete", + "type/difficulty", + "type/qol", + "source/discord" + ], + "summary": "Pokémon Rising Sun and Waning Moon are romhacks based on Pokémon Sun and Moon. These hacks aim to provide a more challenging experience for players by altering the game's balance, difficulty, and gameplay elements. With more challenging battles, a fully accessible Pokédex, and quality-of-life tweaks, these hacks provide a deeper, more immersive and challenging experience in the Alola region, and they have garnered a devoted base for elevating the challenge and depth of Pokémon Sun and Moon.", + "notability": "", + "story": "The story of Pokémon Rising Sun and Waning Moon follows the same plot as the original Pokémon Sun and Moon, with a few tweaks to better fit the increased difficulty and strategic elements added by the hacks. Just like in Sun and Moon, the player journeys through the Alola region to complete the Island Challenge, battling Kahunas and Trial Captains to become Alola's first-ever Champion.", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://drive.google.com/drive/mobile/folders/0By0T413LWAPQaXpEZWpiS3hldlU?usp=drive_open&resourcekey=0-VJMLk5pBSr5YhYfcQvgv3A" + } + ] + }, + { + "stem": "Roaring Red", + "title": "Pokémon Roaring Red", + "platform": "Patch", + "base": "FireRed", + "version": null, + "status": null, + "generation": "Gen III", + "developer": "Caves", + "release_date": "2025-11-11", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Roaring_Red/Pokemon-Roaring-Red-GBA-ce2670df17ae5e0d.png", + "source": "https://www.mediafire.com/file/1k1s1h5ulh50s8n/Roaring_Red_2.0.ups/file", + "library_path": "/storage1/labdata/romhacks/library/Pokemon_Roaring_Red/", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Roaring_Red", + "type": [ + "Expansion" + ], + "tags": [ + "hack", + "platform/patch", + "base/firered", + "type/expansion", + "source/discord" + ], + "summary": "Pokemon Roaring Red is a rebalanced Fire Red hack with all 386 catchable Pokemon, modern mechanics, tougher battles, and expanded Sevii postgame.", + "notability": "", + "story": "", + "features": [ + "All 386 Pokemon are catchable, including every Legendary.", + "Physical/Special Split and Fairy Type have been added for a modernized battle experience.", + "Every major boss battle has been redesigned with Pokémon from all generations, improved team diversity, and a higher difficulty curve.", + "Each Pokémon now has a curated moveset, with many receiving stat buffs, ability changes, and type adjustments — no fully evolved Pokémon has under 430 BST.", + "All areas feature rebalanced encounter tables, with new wild encounters added where none existed before.", + "Expanded postgame on the Sevii Islands, including new boss fights and Gym Leader rematches on Seven Island.", + "Dozens of new and rebalanced moves, with many introduced from later generations.", + "View EVs, IVs, Happiness, and Hidden Power types directly from the summary screen.", + "Healing items and berries have been reworked for greater strategic value at all stages.", + "Shiny rate increased to 1/1000 for better odds of finding rare Pokémon.", + "Updated overworld map, Pokémon sprites, and custom trainer sprites for key boss battles.", + "More informations**", + "[Documentation](https://docs.google.com/spreadsheets/u/0/d/1sF_iMvL4QE04EXAf-XFMZPLVcnIoGtR4zRQP2Q-EQHQ/htmlview#gid=718896235)", + "[Pokemon data](https://docs.google.com/presentation/d/1ZcXlrJ0ezQvjOEmwHezE--yukSmzY4X1kBOhe3L9je4/mobilepresent?slide=id.g36fc6bd5bb0_0_1092)", + "[Pokemon encounters](https://docs.google.com/presentation/d/1CNRr3OMMVt2kQGQ4OmWE2uCnyAxi40v3rgvRjtf2b2E/mobilepresent?slide=id.g3a1115f7542_0_591)" + ], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/1k1s1h5ulh50s8n/Roaring_Red_2.0.ups/file" + }, + { + "label": "Guide / docs", + "url": "https://docs.google.com/spreadsheets/u/0/d/1sF_iMvL4QE04EXAf-XFMZPLVcnIoGtR4zRQP2Q-EQHQ/htmlview#gid=718896235" + }, + { + "label": "Guide / docs", + "url": "https://docs.google.com/presentation/d/1ZcXlrJ0ezQvjOEmwHezE--yukSmzY4X1kBOhe3L9je4/mobilepresent?slide=id.g36fc6bd5bb0_0_1092" + }, + { + "label": "Guide / docs", + "url": "https://docs.google.com/presentation/d/1CNRr3OMMVt2kQGQ4OmWE2uCnyAxi40v3rgvRjtf2b2E/mobilepresent?slide=id.g3a1115f7542_0_591" + } + ] + }, + { + "stem": "Rose Gold", + "title": "Pokémon Rose Gold", + "platform": "NDS", + "base": "HeartGold", + "version": null, + "status": "Complete", + "generation": "Gen IV", + "developer": "Jibril0212", + "release_date": "2025-12-05", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Rose_Gold/Pokemon-Rose-Gold-3229a3b876e4f9bd.png", + "source": "https://drive.google.com/file/d/1Z2kkLLMPHZggUSTh43mIsZ-FtCgQG_-K/view", + "library_path": "/storage1/Emulation/roms/nds/rosegold demo.zip", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Rose_Gold", + "type": [ + "Difficulty", + "Expansion" + ], + "tags": [ + "hack", + "platform/nds", + "base/heartgold", + "status/complete", + "type/difficulty", + "type/expansion", + "source/discord" + ], + "summary": "THIS IS A DEMO with Approximately 1.5 - 2 hours of gameplay. [Will update once fully release].\n\nPlay as Red or Leaf and explore a new region surrounding Mt. Silver. The adventure takes place several years after the events of FireRed and LeafGreen, where you've remained in the Tohjo region to continue training with your longtime team. With your trusted partners, face powerful opponents and encounter legendary Pokémon in a short but challenging journey through Tohjo.", + "notability": "", + "story": "", + "features": [ + "Original Story Hack: A new narrative crafted specifically for this adventure, expanding the world around Mt. Silver and the Tohjo region.", + "Following Pokemon", + "Runs on hg-engine", + "Play as Red or Leaf", + "New Region", + "Dynamic Cameras", + "Variety of different areas to catch many different types of mons", + "Generations 1-9 Pokemon, Moves, and Abilities + Fairy type", + "New Boss Battles with Enhanced Difficulty", + "Infinite TMs & Forgettable HMs", + "Portable PC", + "More informations**", + "[Encounter](https://drive.google.com/file/d/1Z2kkLLMPHZggUSTh43mIsZ-FtCgQG_-K/view)", + "[Trainers](https://drive.google.com/file/d/10LZpn0L55J6rJ8vSg7oaB3GAjivv6hKa/view)", + "[Pokémon changes](https://docs.google.com/document/u/0/d/19fdFLMVce7wjPQYua0TqroRAo68DNMSuQ9gAoGeKAJA/mobilebasic)", + "[Moves changes](https://docs.google.com/document/u/0/d/1cPXyxLrlM2iVWN22ZBN5GuYlE_up_BBrIIS86eDS58Y/mobilebasic)" + ], + "links": [ + { + "label": "Download", + "url": "https://drive.google.com/file/d/1Z2kkLLMPHZggUSTh43mIsZ-FtCgQG_-K/view" + }, + { + "label": "Download", + "url": "https://drive.google.com/file/d/10LZpn0L55J6rJ8vSg7oaB3GAjivv6hKa/view" + }, + { + "label": "Download", + "url": "https://mega.nz/file/KAkWAaaa#EKFfQj8llWzDmApkENWZmSCyim-ZhZITQ1mEO5bXXdQ" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/fgiot6tn9xeqxbn/rosegold+demo.zip/file" + }, + { + "label": "Download", + "url": "https://mega.nz/file/KAkWAaaa" + }, + { + "label": "Guide / docs", + "url": "https://docs.google.com/document/u/0/d/19fdFLMVce7wjPQYua0TqroRAo68DNMSuQ9gAoGeKAJA/mobilebasic" + }, + { + "label": "Guide / docs", + "url": "https://docs.google.com/document/u/0/d/1cPXyxLrlM2iVWN22ZBN5GuYlE_up_BBrIIS86eDS58Y/mobilebasic" + } + ] + }, + { + "stem": "Royal Sapphire", + "title": "Pokémon Royal Sapphire", + "platform": "GBA", + "base": "Sapphire", + "version": null, + "status": null, + "generation": "Gen III", + "developer": "ShockinglyGongas", + "release_date": "2025-11-17", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Royal_Sapphire/Pokemon-Royal-Sapphire-deab745936c50569.webp", + "source": "https://www.mediafire.com/file/aghj8emjx468x8e/RoyalSapph+1.7.zip/file", + "library_path": "/storage1/Emulation/roms/gba/RoyalSapph 1.7.zip", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Royal_Sapphire", + "type": [ + "Expansion", + "QoL" + ], + "tags": [ + "hack", + "platform/gba", + "base/sapphire", + "type/expansion", + "type/qol", + "source/discord" + ], + "summary": "Pokemon Royal Sapphire is a heavy enhancement and reimagining of Pokemon Sapphire, aiming for a Renegade Platinum level of challenge and quality of life, with Gaia-style story breadth. It reshapes the adventure while preserving the Gen 3 feel and the familiar Hoenn roster, so it still plays like classic Sapphire even as it surprises at every turn.\n\nThe main plot follows the same broad path but is expanded with new events, characters, and pacing to make Hoenn feel fresh again. Every map has been reworked, wild encounters are redesigned, trainers are rebuilt, learnsets are updated, and the narra", + "notability": "", + "story": "", + "features": [ + "Core Mechanics (Gen 3)", + "Authentic Gen 3 rules: no physical/special split, no Fairy type, crits are 1/16 for 2x damage", + "Expert AI for every trainer, identical switch logic to Gym Leaders", + "New starter trio: Hisuian Sneasel, Hisuian Qwilfish, Galarian Slowpoke", + "Regional forms", + "Custom-edited tiles", + "Updated overworld sprites", + "Battle UI recolored in blue", + "Expanded Team Aqua Storyline & Arc.", + "Matt, Shelly, and Archie appear more often, pursuing Kyogre and Lugia", + "Many NPC dialogues rewritten", + "Every trainer team, move, and held item handcrafted for higher difficulty", + "Boss fights fully rebuilt", + "Widespread ability updates", + "QoL Improvements", + "Rare Candies in the player's GameCube and most PokéMarts", + "Sponsor Corners in Poké Centers", + "Prices adjusted", + "Learnsets tailored to soften the lack of a physical/special split", + "Ability and evolution method tweaks", + "Increased Shiny Odds", + "Increased from 1 in 8192 to 1 in 2048." + ], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/aghj8emjx468x8e/RoyalSapph+1.7.zip/file" + }, + { + "label": "Download", + "url": "https://mega.nz/file/YS9kVZgL#MFC8oly13LZKacMMmWJ_AfL6UXhPQsNyrYlHtv2mR6M" + }, + { + "label": "Download", + "url": "https://mega.nz/file/YS9kVZgL" + } + ] + }, + { + "stem": "Ruby Renev", + "title": "Pokémon Ruby Renev", + "platform": "GBA", + "base": "Ruby", + "version": null, + "status": null, + "generation": "Gen III", + "developer": "AtecainCorp", + "release_date": "2024-01-08", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Ruby_Renev/Pokemon-Ruby-Renev-8a4c7e3800d245c0.webp", + "source": "https://mega.nz/file/QyE2UTpZ#lTFJ6A4SGGBvFjoziTPgYgYUJceFcviEEkKJjqR_bZQ", + "library_path": "/storage1/Emulation/roms/gba/RubyRenev v1.4.2.zip", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Ruby_Renev", + "type": [ + "Expansion" + ], + "tags": [ + "hack", + "platform/gba", + "base/ruby", + "type/expansion", + "source/discord" + ], + "summary": "Pokemon Ruby Renev is a great Pokemon Ruby hack that contains many advanced improvements and changes compared to its origin. The story is not too long and easy to understand.", + "notability": "", + "story": "", + "features": [ + "Mega Evolution", + "Pokemon from Generation 1-8", + "2 Regions + 1 Island", + "Physical/Special Split", + "Fairy & Crystal Types", + "Additional 30 Moves", + "Gogoat Riding System", + "New Items", + "Increased EXP level range (For more difficult in training)", + "Hidden Legendaries. (Search for them in Johto and Hoenn)", + "DPPT style music for Hoenn and HGSS music for Johto.", + "Day and Night system." + ], + "links": [ + { + "label": "Download", + "url": "https://mega.nz/file/QyE2UTpZ#lTFJ6A4SGGBvFjoziTPgYgYUJceFcviEEkKJjqR_bZQ" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/m5jquw1sy0st54n/RubyRenev+v1.4.2.zip/file" + } + ] + }, + { + "stem": "Ruby Sword and Shield Randomizer", + "title": "Pokémon Ruby Sword and Shield Randomizer", + "platform": "GBA", + "base": "Ruby", + "version": "(Unbeatable_red)_(1).zip/file)", + "status": null, + "generation": "Gen III", + "developer": "Unbeatable Red", + "release_date": "2020", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Ruby_Sword_and_Shield_Randomizer/NEWVID4-1-49f79c2267b9c6ae.jpg", + "source": "https://www.mediafire.com/file/4l6nffhw65ughw2/Pokemon_Ruby_Version", + "library_path": "/storage1/Emulation/roms/gba/Pokemon Ruby Version.gba", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Ruby_Sword_and_Shield_Randomizer", + "type": [ + "Difficulty", + "Expansion" + ], + "tags": [ + "hack", + "platform/gba", + "base/ruby", + "type/difficulty", + "type/expansion", + "source/discord" + ], + "summary": "Pokemon Ruby Sword and Shield Randomizer is a GBA Rom Hack based on Pokemon Ruby With Pokemon from Gen 1-8, Mega Evolution, Galar Forms & Randomized Pokemon Starters, Pokemon Spawns, Moves, Abilities, etc.\n\nLike other Pokémon games, Ruby's gameplay is linear; the main events occur in a fixed order. The protagonist of Pokémon Ruby is a child who has recently moved to a small town called Littleroot Town\n\nAt the beginning of the games, the player chooses either Treecko, Torchic, or Mudkip to protect Professor Birch, the regional professor, from an attacking Poochyena. After defending Birch, the p", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/4l6nffhw65ughw2/Pokemon_Ruby_Version" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/4l6nffhw65ughw2/Pokemon_Ruby_Version(Unbeatable_red" + } + ] + }, + { + "stem": "Runic Platinum", + "title": "Pokémon Runic Platinum", + "platform": null, + "base": null, + "version": "1.3.2 Completed", + "status": "Complete", + "generation": "Gen IV", + "developer": "EstrethAthema", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Runic_Platinum/IMG_0136-6ddae7f87ab915f2.webp", + "source": "https://drive.google.com/file/d/1KUhdkr4qjorqe-zovOGO1bQDFImdC-sC/view?usp=sharing", + "library_path": "/storage1/labdata/romhacks/library/Pokemon_Runic_Platinum/", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Runic_Platinum", + "type": [ + "QoL" + ], + "tags": [ + "hack", + "status/complete", + "type/qol", + "source/discord" + ], + "summary": "Completed Introducing Pokemon RunicPlatinum! A romhack of Platinum that aims to provide a vanilla+ update to the beloved Gen 4 titles, while adding some cheeky quality of life and some bonus content to sink your teeth into Feature List: - Wild encounters have been expanded, allowing some later game Pokemon to be available earlier also reintroduces the D/P Exclusives that Platinum removed - You no longer need to wait until Friday for Drifloon after clearing out Team Galactic in the Valley Windworks. You still need to wait until the day rolls over though. Also Spiritomb now only requires an Odd Keystone to be encountered. - Honey Trees are now instantly ready. After slathering honey, just interact with the Honey Tree again and a Pokemon will appear. - Repels are reusable a la Black and White 2! Once a repel ends you will be prompted to use a new one. You can choose which Repel to use if you have multiple different kinds (Please note, there is a small bug if you are partied up with certain NPCs like Riley, Cheryl etc, it's not gamebreaking and can be easily fixed by entering a wild battle or going into the menu and then walking around a bit. - The Sinnoh dex has been expanded up to 250. The new entries include various Pokemon who have Hisuian formes, are related to Pokemon that debuted in Legends: Arceus, were included in the Hisui dex as well as a couple that I thought would be \"pretty neat\" to add to the regional dex. - Trade Evolutions have been removed. Pokemon that evolve via trading will now evolve via Levelling up instead while Pokemon that require being traded with an item will instead evolve when they are exposed to their evolution item. ## Download Links [Download Link Gdrive Patch files](https://drive.google.com/file/d/1KUhdkr4qjorqe-zovOGO1bQDFImdC-sC/view?usp=sharing) [Docs](https://drive.google.com/drive/folders/1rPhT16k0qF3cCHnhwAPBgYWGULv8XZR9?usp=sharing)", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://drive.google.com/file/d/1KUhdkr4qjorqe-zovOGO1bQDFImdC-sC/view?usp=sharing" + }, + { + "label": "Download", + "url": "https://drive.google.com/drive/folders/1rPhT16k0qF3cCHnhwAPBgYWGULv8XZR9?usp=sharing" + } + ] + }, + { + "stem": "Rusty", + "title": "Pokémon Rusty", + "platform": "GBA", + "base": "FireRed", + "version": "completed.zip/file)", + "status": "Complete", + "generation": "Gen III", + "developer": "Dorkly", + "release_date": "2014", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Rusty/FB_IMG_1719343488707-1-67f23fea0fa73825.jpg", + "source": "https://www.mediafire.com/file/7004j4ngmd1olnm/rusty_version_completed.zip/file", + "library_path": "/storage1/Emulation/roms/gba/rusty_version_completed.zip", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Rusty", + "type": [ + "New Experience" + ], + "tags": [ + "hack", + "platform/gba", + "base/firered", + "status/complete", + "type/newexperience", + "source/discord" + ], + "summary": "**WARNING:** This Pokémon ROM hack is **NOT** appropriate for children under the age of 15 as it contains sexual, and drug references and strong language.", + "notability": "", + "story": "", + "features": [ + "Enjoy a new storyline, one about the most failed - stupid Pokemon trainers in the world.", + "New graphics" + ], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/7004j4ngmd1olnm/rusty_version_completed.zip/file" + } + ] + }, + { + "stem": "Rutile Ruby & Star Sapphire", + "title": "Pokémon Rutile Ruby & Star Sapphire", + "platform": "3DS", + "base": null, + "version": "](https://1fichier.com/?04mmg2", + "status": null, + "generation": "Gen VI", + "developer": "Dio Vento", + "release_date": "2017", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Rutile_Ruby_Star_Sapphire/IMG_9976-4d1d34c0ad4d6e19.jpg", + "source": "https://1fichier.com/?4j2pqrlgmpiu03tw2idh&af=2885774", + "library_path": "/storage1/Emulation/roms/3ds/RutileRuby679v2d2-pokemonerdotcom.rar", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Rutile_Ruby_Star_Sapphire", + "type": [ + "Difficulty", + "Expansion" + ], + "tags": [ + "hack", + "platform/3ds", + "type/difficulty", + "type/expansion", + "source/discord" + ], + "summary": "Pokémon Rutile Ruby and Star Sapphire are ROM hacks for Pokémon Omega Ruby and Alpha Sapphire. Their main purpose is to provide a more challenging game experience while not artificially limiting the player. The premier focus of Rutile Ruby and Star Sapphire is the ground-up redesign of Pokémon Trainers in the world to increase the game's challenge.", + "notability": "", + "story": "The story is primarily the same as Pokémon Omega Ruby and Alpha Sapphire. You travel across the Hoenn region, fight the evil team, become the champion and catch all the pokémons. The main differences between these games and the original are the difficulty, trainer's team and the adjustments of wild pokémons, battles and challenges.", + "features": [], + "links": [ + { + "label": "Link", + "url": "https://1fichier.com/?4j2pqrlgmpiu03tw2idh&af=2885774" + }, + { + "label": "Link", + "url": "https://1fichier.com/?04mmg2eqrnerl7cwp0m0" + }, + { + "label": "Link", + "url": "https://1fichier.com/?1a2f39icwxsje53ckme5" + } + ] + }, + { + "stem": "Sacred Gold", + "title": "Pokémon Sacred Gold", + "platform": "NDS", + "base": "HeartGold", + "version": "1.1", + "status": "Complete", + "generation": "Gen 1–4", + "developer": "Drayano", + "release_date": "2010", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Sacred_Gold/IMG_0151-e98d80586e721417.jpg", + "homepage": "https://www.gamebrew.org/wiki/Pokemon_Sacred_Gold_and_Storm_Silver", + "source": "https://www.pokecommunity.com/threads/pokemon-sacred-gold-storm-silver.165088/", + "library_path": "roms/nds/Hacks/Pokemon - Sacred Gold (Hack).nds", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Sacred_Gold", + "type": [ + "Difficulty", + "Vanilla+" + ], + "tags": [ + "hack", + "platform/nds", + "base/heartgold", + "status/complete", + "type/difficulty", + "type/vanillaplus", + "source/discord" + ], + "summary": "Pokémon Sacred Gold is Drayano's enhanced, harder take on HeartGold (its SoulSilver twin is Storm Silver). All 493 Pokémon are catchable without trading, every major trainer fields a full team of six with rebalanced rosters, and new scripted battles (Ethan/Lyra, Cynthia, Steven) plus aesthetic touches round it out — the definitive way to replay Johto with the whole dex and a real challenge.", + "notability": "Part of Drayano's legendary enhancement series — the go-to way to replay HG/SS with the full National Dex and a fair challenge.", + "story": "", + "features": [ + "All 493 Pokémon obtainable without trading", + "Greater difficulty curve; major trainers use full teams of six", + "New trainer battles — Cynthia, Steven, Ethan/Lyra and more", + "Evolution items and TMs available before the Elite Four", + "Trade evolutions reworked to be self-contained", + "Optional stat/movepool buffs and many scripted events" + ], + "links": [ + { + "label": "Source / info", + "url": "https://www.pokecommunity.com/threads/pokemon-sacred-gold-storm-silver.165088/" + }, + { + "label": "Lookup", + "url": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Sacred%20Gold%20rom%20hack" + } + ] + }, + { + "stem": "Saffron", + "title": "Pokémon Saffron", + "platform": "GBA", + "base": "Emerald", + "version": "2.0", + "status": null, + "generation": "Gen III", + "developer": "mattymannnn", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Saffron/IMG_9769-bb8648413de504c1.png", + "source": "https://raw.githubusercontent.com/vbaemulator/GBA-Roms/main/Pokemon%20Saffron-d2.zip", + "library_path": "/storage1/Emulation/roms/gba/saffron-d2.gba", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Saffron", + "type": [ + "Expansion", + "QoL" + ], + "tags": [ + "hack", + "platform/gba", + "base/emerald", + "type/expansion", + "type/qol", + "source/discord" + ], + "summary": "Azira is a dense region in South America that is home to many species of Pokémon while they migrate across the globe. Once every decade, a majority of the migration paths sync up and cause the region's Pokémon population to skyrocket! This event is known as the Great Migration. Trainers, gym leaders, professors, and adventurers come from far and wide to experience this grand event.

Your family is from the Hoenn region, where your brother ventured out to become a Pokémon master! Now it is your turn. You and your mother have moved to Haba island, a small landmass located just off the coast of t", + "notability": "", + "story": "", + "features": [ + "Pokémon", + "The Aziran Pokédex consists of every Pokémon from generations 1-8, including every form, Mega Evolution, Gigantimax, and regional variant.", + "Along with Alolan and Galarian variants, you can find a handful of Aziran variants in the wild.", + "Every Pokémon has its proper abilities and the latest official moveset.", + "Items", + "Most items from every official game have been added, amounting to over 600 items.", + "New Mechanics", + "Many basic updates have been done, such as reusable TMs, B/W style Repel system, facing trainers, etc.", + "Updated Graphics", + "All graphics have been updated to make Saffron unrecognizable from the base ROM while preserving the Gen III style and feel.", + "[download](https://raw.githubusercontent.com/vbaemulator/GBA-Roms/main/Pokemon%20Saffron-d2.zip)" + ], + "links": [ + { + "label": "Download", + "url": "https://raw.githubusercontent.com/vbaemulator/GBA-Roms/main/Pokemon%20Saffron-d2.zip" + } + ] + }, + { + "stem": "Saiph 2", + "title": "Pokémon Saiph 2", + "platform": "GBA", + "base": "FireRed", + "version": "1.4.0", + "status": "Complete", + "generation": "Multi-gen", + "source": "https://www.pokecommunity.com/threads/pokemon-saiph-2.456789/", + "library_path": "roms/gba/Hacks/Pokemon - Saiph 2 (Hack).gba", + "play_status": "Unplayed", + "type": [ + "New Experience" + ], + "tags": [ + "hack", + "platform/gba", + "base/firered", + "status/complete", + "type/newexperience" + ], + "summary": "Sequel to Saiph — a larger, polished original adventure (full release v1.4.0).", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Source / info", + "url": "https://www.pokecommunity.com/threads/pokemon-saiph-2.456789/" + }, + { + "label": "Lookup", + "url": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Saiph%202%20rom%20hack" + } + ] + }, + { + "stem": "Saiph", + "title": "Pokémon Saiph", + "platform": "GBA", + "base": "FireRed", + "version": "2020", + "status": "Complete", + "generation": "Multi-gen", + "source": "https://www.pokecommunity.com/threads/pokemon-saiph.412313/", + "library_path": "roms/gba/Hacks/Pokemon - Saiph (Hack).gba", + "play_status": "Unplayed", + "type": [ + "New Experience" + ], + "tags": [ + "hack", + "platform/gba", + "base/firered", + "status/complete", + "type/newexperience" + ], + "summary": "A complete original-region story hack with a darker tone.", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Source / info", + "url": "https://www.pokecommunity.com/threads/pokemon-saiph.412313/" + }, + { + "label": "Lookup", + "url": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Saiph%20rom%20hack" + } + ] + }, + { + "stem": "Salt & Shadow", + "title": "Pokémon Salt & Shadow", + "platform": null, + "base": null, + "version": null, + "status": null, + "generation": null, + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Salt_Shadow/HcJ8MZV-32a91aa930f427c5.png", + "source": "https://www.pokecommunity.com/threads/pokémon-meets-dark-souls-pokémon-salt-shadow.528494/", + "library_path": "—", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Salt_Shadow", + "type": [], + "tags": [ + "hack", + "source/discord" + ], + "summary": "**Pokémon meets Dark Souls** > Are you ready for a new challenge? > > Defy the perils of Cradle Island in Pokémon: Salt & Shadow. Explore a vast, interconnected world with dozens of possible paths to the end. > Be warned, the challenges ahead are unfair and some may seem truly impossible. ## __Breakdown__ - **Summon the Legends!** The legendary Pokémon abandoned the world to ruin. Only offerings from those with the will to defy fate can bring them back. Catch specific sets of Pokémon to perform the summoning rituals, then call the legends to fight by your side. - **No Grinding. Ever.** Pokémon cannot be trained. They cannot gain XP from battle. The treachery of the former Champion ensured this. Players will have to use strategy to defeat powerful opponents in double battles with the Pokémon they have, making their way to higher level areas where they can catch a more powerful team. - **Just 13 Days Remain.** Each time you rest to heal your fainted Pokémon, time advances one day. There are only 13 days left until the end of the world. Players will have to use their items, minimize damage, and make strategic sacrifices to get the most out of every day. - **Non-Linear World.** Powerful trainers guard late-game areas; the moment you can defeat them you can go through. Even the Champion's throne room sits just above the starting area. - **Unravel the Secrets of Cradle Isle.** Item descriptions and scattered journals slowly reveal the truth of the island's past. They also hint at hidden areas, secret objectives, and more. :Download: [Source Website](https://www.pokecommunity.com/threads/pokémon-meets-dark-souls-pokémon-salt-shadow.528494/)", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Info / thread", + "url": "https://www.pokecommunity.com/threads/pokémon-meets-dark-souls-pokémon-salt-shadow.528494/" + } + ] + }, + { + "stem": "Scarlet & Violet", + "title": "Pokémon Scarlet & Violet", + "platform": "GBA", + "base": "FireRed", + "version": null, + "status": null, + "generation": "Gen III", + "developer": "TeamSolga", + "release_date": "2023-07-05", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Scarlet_Violet/Screenshot_20240714_091201_Chrome-7836639495e91bd1.jpg", + "source": "https://drive.google.com/file/d/1hjLaXPrTkKeI_ceOUSHxOC100FakhSuw/view", + "library_path": "/storage1/Emulation/roms/gba/Scarlet,Violet & Indigo[COMPLETE].zip", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Scarlet_Violet", + "type": [], + "tags": [ + "hack", + "platform/gba", + "base/firered", + "source/discord" + ], + "summary": "A firered hack based on the latest pokemon titles \"scarlet and violet\"", + "notability": "", + "story": "", + "features": [ + "Added Pokémon: Koraidon, Fidough, Cetitan, Wooper Paldea, LEAK GIRAFARIG EVOLUTION, Girafarig, Mankey, Primeape.", + "Nemi [Battle Sprite] and level debuffs from your Pokemon", + "In the Green Tower now you won't find many Smolivs anymore and it's in the dark.", + "Noelia and Enamorus will now be at level 30.", + "New city: \"Mepoli\", and two new routes.", + "Added Enigma Cave.", + "Pikachu is a Pokémon capable of tercrystallization.", + "Main Korai as a new character.", + "New Pokémon and a legendary secret to find. Furthermore, Liko arrived in Paldea as a playable character." + ], + "links": [ + { + "label": "Download", + "url": "https://drive.google.com/file/d/1hjLaXPrTkKeI_ceOUSHxOC100FakhSuw/view" + }, + { + "label": "Link", + "url": "https://onedrive.live.com/?authkey=%21ALp7bjjZicNkIRM&id=65F48F421B14634F%21747&cid=65F48F421B14634F&parId=root&parQt=sharedby&o=OneUp" + } + ] + }, + { + "stem": "Scarlet Sapphire", + "title": "Pokémon Scarlet Sapphire", + "platform": "3DS", + "base": "Alpha Sapphire", + "version": null, + "status": "Complete", + "generation": "Gen VI", + "developer": "Mydwin", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Scarlet_Sapphire/scarlet_logo-0f04bd350a8abbc6.png", + "source": "https://drive.google.com/file/d/1EFgwrGuoC_5sercCk5LQ3eWRP9szG8fC/view?usp=drivesdk", + "library_path": "/storage1/Emulation/roms/3ds/ScalretFinal.3ds", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Scarlet_Sapphire", + "type": [], + "tags": [ + "hack", + "platform/3ds", + "base/alphasapphire", + "status/complete", + "source/discord" + ], + "summary": "Hardcore part of Alpha Sapphire with revamped color, starter and types .\nRediscover gen 6 with this game perfect to be soul linked !\n\n[Download Link](https://drive.google.com/file/d/1EFgwrGuoC_5sercCk5LQ3eWRP9szG8fC/view?usp=drivesdk)\n[Pokedex](https://docs.google.com/spreadsheets/d/1JQWk9HwDhsbne7dF5cI9wLgrHQ5oVivWYJT2IpeKsAI/edit?usp=drivesdk)", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://drive.google.com/file/d/1EFgwrGuoC_5sercCk5LQ3eWRP9szG8fC/view?usp=drivesdk" + }, + { + "label": "Guide / docs", + "url": "https://docs.google.com/spreadsheets/d/1JQWk9HwDhsbne7dF5cI9wLgrHQ5oVivWYJT2IpeKsAI/edit?usp=drivesdk" + } + ] + }, + { + "stem": "Scorched Silver", + "title": "Pokémon Scorched Silver", + "platform": "GBA", + "base": "Emerald", + "version": "1.3", + "status": null, + "generation": "Gen III", + "developer": "Sloo", + "release_date": "2024", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Scorched_Silver/Pokemon-Scorched-Silver-GBA-abd4dea10cdec6a0.png", + "source": "https://www.pokeharbor.com/2024/06/pokemon-scorched-silver/", + "library_path": "/storage1/Emulation/roms/gba/scorchedsilver v1.3.zip", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Scorched_Silver", + "type": [ + "Expansion", + "New Experience" + ], + "tags": [ + "hack", + "platform/gba", + "base/emerald", + "type/expansion", + "type/newexperience", + "source/discord" + ], + "summary": "Travel back to the majestic lands of Johto through the perspective of a boy or girl from Cherrygrove City on their way to becoming a great Pokémon Master! Set 20 years after the events of Gold and Silver, you'll meet many new and old characters along your journey, as well as uncover more of the region's secrets. Discover a wide variety of Pokémon and an all-new storyline as your path intertwines with a mysterious group calling themselves Team Phoenix, who seem determined to capture Celebi for some nefarious scheme.", + "notability": "", + "story": "", + "features": [ + "Built using the Pokémon Emerald Expansion, which includes:", + "Physical/Special Split (PSS)", + "Fairy type", + "Gen 8 Pokémon", + "Gen 7 movepools", + "Ability to run indoors.", + "Use HM moves outside of battle without needing to teach them to the Pokémon (as long as the Pokémon can learn the move).", + "Black/White-style repel system.", + "Pokémon survive poison outside of battle with 1 HP.", + "Some TM moves have been updated to newer moves.", + "Over 750+ Pokémon available.", + "Mega Evolution available in the post-game.", + "Nature changer NPC (an old woman sitting on a park bench in Violet City).", + "Battle nurse available in most Pokémon Centers for leveling up.", + "New, original story.", + "## Links:", + "[PokéHarbor with FAQ]()", + "[MediaFire Download]()" + ], + "links": [ + { + "label": "Info / thread", + "url": "https://www.pokeharbor.com/2024/06/pokemon-scorched-silver/" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/gttz08s1yx0wteb/scorchedsilver+v1.3.zip/file" + } + ] + }, + { + "stem": "Scrambled Scarlet", + "title": "Pokémon Scrambled Scarlet", + "platform": "GBA", + "base": null, + "version": null, + "status": null, + "generation": "Gen III", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Scrambled_Scarlet/Screenshot_20251001_164650_Reddit-3fe4039be6db9fb6.jpg", + "source": "https://drive.google.com/file/d/1d1TAXgEIxWkUKqzVzaClAqGW9tGCPcSz/view?usp=drivesdk", + "library_path": "/storage1/Emulation/roms/gba/Pokemon Scrambled Scarlet.gba", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Scrambled_Scarlet", + "type": [ + "Difficulty" + ], + "tags": [ + "hack", + "platform/gba", + "type/difficulty", + "source/discord" + ], + "summary": "Catalogued from the Discord ROM-hack archive. See links below.", + "notability": "", + "story": "", + "features": [ + "Built to replay and re-strategize — perfect for challenge runs, experimenting, or just having fun with new teams.", + "Egg-Based Encounter System", + "Wild encounters don't work for nuzlockes due to overworld-only spawns.", + "Total Pokemon Reworks", + "Every single Pokémon has been reworked with very heavily thought out, flavor-consistent buffs, designed to be viable from start to finish- designed around Teamlocked Gameplay (more info below!)", + "No bad encounters. No \"early route fall-offs.\" Every Pokémon is fun to use and scales as you progress.", + "Each mon has 3 interchangeable, useful abilities and unique roles with great synergy.", + "Paradox Pokémon are optional branch evolutions of their standard forms (ex: Eviolite/NFE Donphan → Great Tusk OR Iron Treads, Zweilous/Kirlia branch evo where the evos are all balanced one another)", + "Youtube videos/text blurbs explaining a lot of the logic and function of the changes!", + "Reworked Mechanics & Moves", + "Every move is redesigned to be viable and clearly categorized or serve a purpose. New archetypes of moves!", + "200+ TMs available to BUY directly- no more crafting.", + "EVs are fully customizable via instant-use training items. Build and rebuild your team on the fly!", + "Thanks to Infinite move relearner, loads of level-up moves, and massive movepool flexibility.", + "Optional Teamlocked Nuzlocke Focus", + "Start with a team of 6. No switching unless someone dies- bond with your Pokemon!", + "No mindless sacking — every mon is built with enough options to stay relevant.", + "Designed to build attachment and strategic depth — how you use your team matters more than what's in it.", + "Designed around replaying multiple times with different teams, maybe a few deaths per run depending on skill level." + ], + "links": [ + { + "label": "Download", + "url": "https://drive.google.com/file/d/1d1TAXgEIxWkUKqzVzaClAqGW9tGCPcSz/view?usp=drivesdk" + } + ] + }, + { + "stem": "Serene Crystal", + "title": "Pokémon Serene Crystal", + "platform": "GB", + "base": "Crystal", + "version": null, + "status": null, + "generation": "Gen II", + "developer": "PeanutellaXO", + "release_date": "2024-04-05", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Serene_Crystal/0d5b7bc6-2094-4352-8464-576a76af3b0c-360f14de4e2d8f33.png", + "source": "https://www.mediafire.com/file/f40y6dbbrru5rke/serenecrys+v1.5.zip/file", + "library_path": "/storage1/Emulation/roms/gb/serenecrys v1.5.zip", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Serene_Crystal", + "type": [ + "Demake", + "QoL" + ], + "tags": [ + "hack", + "platform/gb", + "base/crystal", + "type/demake", + "type/qol", + "source/discord" + ], + "summary": "Serene Crystal is a hack designed to refresh the Crystal experience. It introduces new gym leaders, Pokémon from newer generations, and original regional forms. There have also been several QoL improvements to enhance gameplay. The overall story is about the same (with minor tweaks to certain characters for a more cohesive narrative).", + "notability": "", + "story": "", + "features": [ + "Updated Pokedex (old/new Pokémon)", + "Better balancing & level curve.", + "New original regional forms", + "2 new gym leaders replacing old ones; an older gym leader promoted to a higher gym.", + "Can forget HMs", + "Pokémon sprite changes", + "QoL changes (running, no fainting of poison out of battle, evolution stones to buy at Goldenrod)", + "Rebalanced type chart (buffing weaker types, slightly nerfing stronger types)", + "Some weaker Pokémon have stat buffs", + "Pokémon have better movesets/updated stats to Gen 7", + "Trade evos evolve without trades (items used like stones)", + "Moves from newer generations", + ":Download: [Mediafire](https://www.mediafire.com/file/f40y6dbbrru5rke/serenecrys+v1.5.zip/file)", + ":Download: [MEGA](https://mega.nz/file/Ni1ADJ6b#sf7IQBSlsC2_Jsa3ax_krMq_d17qihHXyPuzBLuvdJY)" + ], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/f40y6dbbrru5rke/serenecrys+v1.5.zip/file" + }, + { + "label": "Download", + "url": "https://mega.nz/file/Ni1ADJ6b#sf7IQBSlsC2_Jsa3ax_krMq_d17qihHXyPuzBLuvdJY" + }, + { + "label": "Download", + "url": "https://drive.google.com/file/d/1RyRpoIXdrQLBF8QUWZI54W7h637GJ-gj/view?usp=sharing" + } + ] + }, + { + "stem": "Shadow Legends", + "title": "Pokémon Shadow Legends", + "platform": "NDS", + "base": "HeartGold", + "version": "v0.6.5", + "status": "Complete", + "generation": "Gen IV", + "developer": "PokeKnox", + "release_date": "2024", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Shadow_Legends/Pokemon-Shadow-Legendz-6ca2bf3f816ad69d.png", + "source": "https://www.pokeharbor.com/2024/07/pokemon-shadow-legendz/", + "library_path": "/storage1/Emulation/roms/nds/Pokemon Shadow Legendz.nds", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Shadow_Legends", + "type": [ + "Expansion" + ], + "tags": [ + "hack", + "platform/nds", + "base/heartgold", + "status/complete", + "type/expansion", + "source/discord" + ], + "summary": "[Source Website](https://www.pokeharbor.com/2024/07/pokemon-shadow-legendz/)", + "notability": "", + "story": "", + "features": [ + "Start with Diancie, Yveltal, or Hoopa.", + "Route 29 Map changes (with Axew Event).", + "Added Fairy Type.", + "Following Pokemon.", + "Mt. Silver is full of Legendary Pokemon.", + "Arceus on top of Mt. Silver after beating Red.", + "Some minor changes and adjustments.", + "https://drive.google.com/file/d/1NEztQpib5RxdcNAfRBZmG3maAFulOegd/view?usp=drivesdk" + ], + "links": [ + { + "label": "Info / thread", + "url": "https://www.pokeharbor.com/2024/07/pokemon-shadow-legendz/" + }, + { + "label": "Download", + "url": "https://drive.google.com/file/d/1NEztQpib5RxdcNAfRBZmG3maAFulOegd/view?usp=drivesdk" + } + ] + }, + { + "stem": "Shadow Of Time", + "title": "Pokémon Shadow Of Time", + "platform": "NDS", + "base": null, + "version": null, + "status": null, + "generation": null, + "release_date": "2024", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Shadow_Of_Time/Pokemon-Shadows-Of-Time-1-7435ecff82308832.webp", + "source": "https://www.mediafire.com/file/lrs3nxthvmotqph/shadows+of+time+demo+build.zip/file", + "library_path": "—", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Shadow_Of_Time", + "type": [ + "Expansion", + "New Experience" + ], + "tags": [ + "hack", + "platform/nds", + "type/expansion", + "type/newexperience", + "source/discord" + ], + "summary": "**Creator:** Kronos5111 **Type:** NDS **Last Updated:** September 19, 2024", + "notability": "", + "story": "> Twenty years before the player's journey, a plague linked to Darkrai plunged victims into endless nightmares, leaving only a generation of children untouched to watch their loved ones suffer. One orphaned girl, living among Pokémon in the forest and haunted by a fear of death, befriended Celebi, who took her back to a time when the region thrived with a vast lake now dried up due to human exploitation. In the past, the lake was home to Sinfae, a guardian of fear, banished to the Distortion World. Consumed by fear, the girl tricked Celebi into returning her to the past, entering Sinfae's cave and blaming Celebi for the plague. This act inadvertently brought Sinfae and herself to the present, where she, now 18, used Sinfae's influence to manipulate others into believing Celebi could stop the plague. As the player travels between past and present, they uncover trials for new Mega Evolutions and the truth of how ancient settlers, once devoted to Arceus, fell to ruin after turning to Hoopa and invoking Arceus's wrath.", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/lrs3nxthvmotqph/shadows+of+time+demo+build.zip/file" + } + ] + }, + { + "stem": "Shinju Adventures", + "title": "Pokémon Shinju Adventures", + "platform": null, + "base": null, + "version": null, + "status": null, + "generation": "Joiplay/RPGXP", + "developer": "SashaTheYeen", + "release_date": "2024-11-03", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Shinju_Adventures/Pokemon-Shinju-Adventures-ddb107e16c8b652b.webp", + "source": "https://mega.nz/file/CQchSDjB#22kb2kF2Z_gW7i4dhX4l33ehM1G3w4IMxN43zIxWUt4", + "library_path": "/storage1/labdata/romhacks/library/Pokemon_Shinju_Adventures/", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Shinju_Adventures", + "type": [ + "Difficulty", + "Expansion" + ], + "tags": [ + "hack", + "type/difficulty", + "type/expansion", + "source/discord" + ], + "summary": "Welcome to the Shinju Region! As a foreign exchange student, you're free to explore at your own pace—capture Pokémon, train to be the best, or take on the Gym Challenge and the Elite Four! The Shinju Region is a sprawling area with diverse habitats, boasting a high rate of shiny Pokémon (1/128). Along the way, you'll meet and bond with other exchange students on similar journeys.\n\nOverview of Team Sunset\nMeanwhile, Team Sunset emerges as a puzzling force in Shinju. They're focused on building a positive public image, though some members are unwittingly undermining these efforts. Their leader,", + "notability": "", + "story": "", + "features": [ + "New region with a unique story.", + "Optional built-in Nuzlocke mode.", + "Pronoun selection for your character.", + "Following Pokémon system.", + "Numerous quality-of-life plugins (e.g., Party IV checker, Move Relearner, Hidden Power type viewer).", + "Speed modifier (press Q) for faster grinding and travel.", + "Mystery Gift option.", + "Optional EXP All.", + "Increased EXP gains to reduce grinding.", + "Mega Evolution.", + "(Pseudo) Wonder Trade system.", + "Trade evolutions removed—no trading required.", + "Rare Candies at the start of Nuzlocke mode.", + "Multiple save slots.", + "& much more!" + ], + "links": [ + { + "label": "Download", + "url": "https://mega.nz/file/CQchSDjB#22kb2kF2Z_gW7i4dhX4l33ehM1G3w4IMxN43zIxWUt4" + }, + { + "label": "Download", + "url": "https://mega.nz/file/CQchSDjB" + } + ] + }, + { + "stem": "Shiny Island", + "title": "Pokémon Shiny Island", + "platform": "PC", + "base": null, + "version": null, + "status": null, + "generation": "Joiplay/RPGXP", + "developer": "Evan", + "release_date": "2024-08-12", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Shiny_Island/Pokemon-Shiny-Island-57af6602b84162d3.webp", + "source": "https://www.mediafire.com/file/b6zeukukta6nzpg/POKeMON_SHINY_ISLAND_1.3.zip/file", + "library_path": "/storage1/labdata/romhacks/library/Pok_mon_Shiny_Island/", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Shiny_Island", + "type": [], + "tags": [ + "hack", + "platform/pc", + "source/discord" + ], + "summary": "Catalogued from the Discord ROM-hack archive. See links below.", + "notability": "", + "story": "You play as a research assistant working under Maggie, a doctoral candidate in Pokémon Research. Maggie is guided by Professor Elm, who has shifted his studies toward the fascinating phenomenon of Shiny Pokémon after the incident involving the Red Gyarados at the Lake of Rage. These uniquely colored Pokémon are now the focus of groundbreaking research.\n\nSet on Orchid Island, a newly discovered region teeming with Shiny Pokémon, the game offers a unique opportunity for players to contribute to scientific exploration. Your mission is to assist in uncovering the mysteries of Shiny Pokémon, immersing yourself in a rich, research-driven adventure that dives deep into the peculiarities of these rare and captivating creatures.", + "features": [ + "Compact Pokédex: Explore an island with 64 unique Pokémon to discover.", + "Boosted Shiny Rate: Enjoy an increased shiny encounter rate of 1 in 252, making rare Pokémon easier to find.", + "Horde Encounters: Experience \"Horde Pokémon\" where groups of wild Pokémon appear together.", + "Enhanced Shiny Hunting: Discover innovative methods to improve your chances of encountering shiny Pokémon.", + "Shiny Evolutions: Certain Pokémon only evolve from their shiny forms, offering unique progression paths.", + "New Poké Ball: Use a special Poké Ball that significantly boosts your chances of catching shiny Pokémon.", + "Cameo Appearances: Spot familiar characters from the Pokémon world making guest appearances.", + "\"Rebirth\" Theme: Uncover the story of an island that has risen anew following Lugia's awakening, tying into a loose \"Rebirth\" theme throughout your journey." + ], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/b6zeukukta6nzpg/POKeMON_SHINY_ISLAND_1.3.zip/file" + } + ] + }, + { + "stem": "Silver Rival", + "title": "Pokémon Silver Rival", + "platform": "GBC", + "base": null, + "version": null, + "status": null, + "generation": null, + "release_date": "2023", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Silver_Rival/Pokemon-Silver-Rival-1fe6fb545875f8e1.jpg", + "source": "https://www.pokeharbor.com/2023/11/pokemon-silver-rival/?fbclid=IwAR3TEIUAUBJbmljnGAFl0wQafBUqL563U2BTEkdQmeQAJEQ2QXc2xf1RcoQ", + "library_path": "—", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Silver_Rival", + "type": [ + "New Experience" + ], + "tags": [ + "hack", + "platform/gbc", + "type/newexperience", + "source/discord" + ], + "summary": "**Creator:** Caminopreacher (legend) **Type:** GBC **Last Updated:** November 16, 2023", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Info / thread", + "url": "https://www.pokeharbor.com/2023/11/pokemon-silver-rival/?fbclid=IwAR3TEIUAUBJbmljnGAFl0wQafBUqL563U2BTEkdQmeQAJEQ2QXc2xf1RcoQ" + } + ] + }, + { + "stem": "Silver Yellow", + "title": "Pokémon Silver Yellow", + "platform": "NDS", + "base": "Silver", + "version": null, + "status": null, + "generation": "Gen IV", + "developer": "brtatu", + "release_date": "2024", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Silver_Yellow/pokemon_silveryellow_coverart-47bc27e2491128e8.jpg", + "source": "https://www.mediafire.com/file/650nt3hjmclsbg5/silver+yellow+remixed+", + "library_path": "/storage1/Emulation/roms/nds/silver yellow remixed (v2.0).zip", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Silver_Yellow", + "type": [], + "tags": [ + "hack", + "platform/nds", + "base/silver", + "source/discord" + ], + "summary": "Pokemon Silver Yellow is a bit of an amalgamation of various other Pokemon games and ROM hacks. In essence, it's based on the old ROM hack Silver Blue but also has a strong Pokemon Yellow vibe about it.\n\nKanto's original Pokemon have been redesigned for this new hack, with a new area of God's Garden available to enter. Take advantage of Mega Charizard as a character in your team, and venture out to catch Mew, Suicine, Regirock, and many other classic legendary Pokemon.\n\nAll the original starter Pokemon from the original games can Mega-Evolve too, not just Charizard, giving your team even more", + "notability": "", + "story": "You will be playing according to the old story but the experience will be completely new with unique changes. It allows you to play as Red and start the adventure in Kanto like you are playing an Yellow remake.", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/650nt3hjmclsbg5/silver+yellow+remixed+" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/650nt3hjmclsbg5/silver+yellow+remixed+(v2.0" + } + ] + }, + { + "stem": "Smogon Emerald", + "title": "Pokémon Smogon Emerald", + "platform": "GBA", + "base": "Emerald", + "version": null, + "status": null, + "generation": "Gen III", + "developer": "Yak Attack", + "release_date": "2022-11-26", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Smogon_Emerald/Pokemon-Smogon-Emerald-a63ea5cde7bd2b94.jpg", + "source": "https://www.mediafire.com/file/lus8i32i7z8funa/Pokemon+Smogon+Emerald.zip/file", + "library_path": "/storage1/Emulation/roms/gba/Pokemon Smogon Emerald.zip", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Smogon_Emerald", + "type": [ + "Difficulty" + ], + "tags": [ + "hack", + "platform/gba", + "base/emerald", + "type/difficulty", + "source/discord" + ], + "summary": "It has the same story as emerald but with various newly added features.", + "notability": "", + "story": "", + "features": [ + "Levels scale with badge count", + "Every trainer has a [Gen 3] OU sample team. The teams will get progressively harder once you earn 5 badges.", + "Wild Pokemon are determined by Smogon usage. The more badges you get, the more used the Pokemon have a chance to be", + "Wild Pokemon have moves and held items randomly determined by usage. The more badges you get, the better their movesets and held items become", + "Smogon learner in the Start menu allows you to teach Pokemon moves for a price. It starts at 2000 and increases by 1000 for every badge obtained (you start with 75000)", + "All marts that sell Poke or Great Balls now sell Ultra Balls", + "Soft exp-level caps are implemented. It starts at 10 for 0 badges and increases by 5 for each badge obtained. Once you reach a soft exp level cap, your exp is decreased with each level you gain from there on out", + "Proper Hidden Power, Return, and Frustration implementation", + "Switch between EV/IV showing in the summary screen with L/R", + "Choose what team to battle by talking to the fat guy in Littleroot Town (experience isn't earned)" + ], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/lus8i32i7z8funa/Pokemon+Smogon+Emerald.zip/file" + } + ] + }, + { + "stem": "Snakewood Improved", + "title": "Pokémon Snakewood Improved", + "platform": "GBA", + "base": null, + "version": "s of normal Pokemon", + "status": "Complete", + "generation": "Gen III", + "developer": "Scared_Elk93", + "release_date": "2024", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Snakewood_Improved/Pokemon-Snakewood-Improved-1024x924-659d7d6f7d9ae297.webp", + "source": "https://www.mediafire.com/file/jlq051bm32hhoms/Snakewood+Improved+v0.11.zip/file", + "library_path": "/storage1/Emulation/roms/gba/Snakewood Improved v0.11.zip", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Snakewood_Improved", + "type": [ + "Difficulty", + "QoL" + ], + "tags": [ + "hack", + "platform/gba", + "status/complete", + "type/difficulty", + "type/qol", + "source/discord" + ], + "summary": "**Pokémon Snakewood Improved** is a Completed GBA Rom Hack made by Scared_Elk93. It was last updated October 02, 2024. Reviving the classic Ruby hack Pokemon Snakewood with modern enhancements, featuring quality-of-life improvements and bug fixes for smoother gameplay.", + "notability": "", + "story": "You woke up in what used to be Littleroot town, having no memory of how you got there or even who you really are. It soon becomes apparent however that something very big has happened while you were out: Hoenn has been invaded by an army of zombies.\n\nWorking with Prof. Birch, you set off to find your brother Landon and Birch's daughter May, who have both gone missing in an attempt to find the source of the undead plague. At the same time, you try to uncover your past. On the way, you face zombies, witches, demons, and the enigmatic Taoist, Gleis, as well as the Four Horsemen of the Apocalypse, the Hoenn Internal Affairs Army, and, eventually, the architect of all this misery himself: Senex.\n\nHowever, it isn't nearly as dark as all that: there are also the cheerfully insane (and improbably numerous) Deadly Seven, the unruffled and cynical Army Recruiters Tina and Bruce, and a psychic dragon's egg. Not to mention a special appearance from the Denjuu universe.", + "features": [ + "New scripts, new overworlds, new sprites", + "New areas such as hidden Meathouse, the maddening Island of Calm and the unexpected Hoenn University of Film", + "Several zombie versions of normal Pokemon", + "6 Denjuu", + "Badges are come by in somewhat unusual ways since most Gyms have now been destroyed by zombies", + "Deceitful characters who will lie to you", + "An unusual and somewhat wandering storyline", + "A number of references to books, films, manga, other hacks and other such things", + "Somewhat darker plot than usual", + "Slightly increased difficulty level", + "Link to download:", + "[Mediafire](https://www.mediafire.com/file/jlq051bm32hhoms/Snakewood+Improved+v0.11.zip/file)", + "[Mega](https://mega.nz/file/eKYRFSiQ#O8laCzNAFrLWYVoxu_JmtYYqVM2nyqkdpCsHnQsaXMM)" + ], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/jlq051bm32hhoms/Snakewood+Improved+v0.11.zip/file" + }, + { + "label": "Download", + "url": "https://mega.nz/file/eKYRFSiQ#O8laCzNAFrLWYVoxu_JmtYYqVM2nyqkdpCsHnQsaXMM" + } + ] + }, + { + "stem": "Snakewood", + "title": "Pokémon Snakewood", + "platform": "GBA", + "base": "Ruby", + "version": null, + "status": "Complete", + "generation": "Gen 3 + Fakémon", + "developer": "Cutlerine", + "release_date": "2012-08-16", + "homepage": "https://www.pokecommunity.com/threads/pok%C3%A9mon-snakewood-version.235371/", + "source": "https://www.pokecommunity.com/threads/pokemon-snakewood.146749/", + "library_path": "roms/gba/Hacks/Pokemon - Snakewood (Hack).gba", + "play_status": "Unplayed", + "type": [ + "New Experience" + ], + "tags": [ + "hack", + "platform/gba", + "base/ruby", + "status/complete", + "type/newexperience" + ], + "summary": "Pokémon Snakewood is a cult-classic Ruby hack by Cutlerine, set three years after Ruby in a Hoenn overrun by a zombie apocalypse. You play the amnesiac younger sibling of the former Champion, waking in a razed Littleroot Town to search for your missing brother. It's famous for surreal, dark-comedic writing — zombies, witches, demons, the Four Horsemen — plus 40–50 Fakémon and bizarre new areas.", + "notability": "One of the most famous 'weird' hacks ever made — endlessly memed and let's-played for its absurd tone and difficulty, and a landmark of the early ROM-hack era.", + "story": "", + "features": [ + "Post-apocalyptic zombie Hoenn, 3 years after Ruby", + "Surreal, dark-comedic, heavily-written story", + "40–50 Fakémon including hidden new evolutions", + "Zombie Pokémon replacing NPC encounters", + "Badges earned in unusual ways (most gyms destroyed)", + "Strange new areas: the Meathouse, Island of Calm, Hoenn University of Film", + "Unusually strong player-character presence" + ], + "links": [ + { + "label": "Source / info", + "url": "https://www.pokecommunity.com/threads/pokemon-snakewood.146749/" + }, + { + "label": "Lookup", + "url": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Snakewood%20rom%20hack" + } + ] + }, + { + "stem": "Solar Light Lunar Dark", + "title": "Pokémon Solar Light Lunar Dark", + "platform": "PC", + "base": null, + "version": null, + "status": null, + "generation": "Joiplay/RPGXP", + "developer": "previous games in the series", + "release_date": "2019", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Solar_Light_Lunar_Dark/Wiki-wordmark-c1cb37935fcb8b1f.webp", + "source": "https://www.mediafire.com/file/eki8zfakm66as1i/PokmonSolarLightLunarDark1.0.1.zip.html", + "library_path": "/storage1/labdata/romhacks/library/Pokemon_Solar_Light_Lunar_Dark/", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Solar_Light_Lunar_Dark", + "type": [ + "New Experience" + ], + "tags": [ + "hack", + "platform/pc", + "type/newexperience", + "source/discord" + ], + "summary": "Pokémon Solar Light & Lunar Dark is a free fangame made in RPG Maker XP and Pokémon Essentials. These games follow the trends set up by previous games in the series.", + "notability": "", + "story": "The game takes place in the Rikoto region, where the player must collect 8 Gym Badges in order to compete in the Rikoto Regional Championship. Along the way, the player must also fill up their Pokédex with the entries of more than 350 different species of Pokémon.", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/eki8zfakm66as1i/PokmonSolarLightLunarDark1.0.1.zip.html" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/eki8zfakm66as1i/PokmonSolarLightLunarDark1.0.1.zip" + } + ] + }, + { + "stem": "Solar Platinum", + "title": "Pokémon Solar Platinum", + "platform": "NDS", + "base": "Platinum", + "version": "2", + "status": "Complete", + "generation": "Gen IV", + "developer": "Kiriyawave", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Solar_Platinum/IMG_9370-f0c56d52a263a4f2.png", + "source": "https://1fichier.com/?sw1cshzhok36xfbbpyub&af=2885774", + "library_path": "/storage1/Emulation/roms/nds/SolarPlatinumv2-Ducumon.rar", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Solar_Platinum", + "type": [ + "Difficulty", + "New Experience" + ], + "tags": [ + "hack", + "platform/nds", + "base/platinum", + "status/complete", + "type/difficulty", + "type/newexperience", + "source/discord" + ], + "summary": "Rom link : https://1fichier.com/?sw1cshzhok36xfbbpyub&af=2885774", + "notability": "", + "story": "", + "features": [ + "Altered evolutions(IE: Combee evolves with the Honey item now)", + "The original script/dialogue has been modified to be sillier and or to alter the story slightly.", + "Harder battles(certain gym leaders have new Pokemon, and or items)", + "Pokemon BST have been altered for some weaker staged Pokemon(also some type changes)", + "Different shinies", + "Different forms for Pokemon(IE: Tropius and Buizel)" + ], + "links": [ + { + "label": "Link", + "url": "https://1fichier.com/?sw1cshzhok36xfbbpyub&af=2885774" + } + ] + }, + { + "stem": "Soothing Silver", + "title": "Pokémon Soothing Silver", + "platform": "NDS", + "base": "SoulSilver", + "version": "v1.2.2", + "status": null, + "generation": "Gen IV", + "developer": "HighFrequencyOcelot", + "release_date": "2022", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Soothing_Silver/image-360-9fac1d9312e2dff4.png", + "source": "https://www.pokeharbor.com/2022/08/pokemon-soothing-silver/", + "library_path": "/storage1/Emulation/roms/nds/Pokemon Soothing Silver Version 1.4.5.nds", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Soothing_Silver", + "type": [ + "Difficulty", + "QoL" + ], + "tags": [ + "hack", + "platform/nds", + "base/soulsilver", + "type/difficulty", + "type/qol", + "source/discord" + ], + "summary": "[Source Website](https://www.pokeporto.com/pokemon-soothing-silver/)", + "notability": "", + "story": "", + "features": [ + "Galarian forms.", + "Alolan forms.", + "All gen 1 & 2 Pokémon (apart from legendaries and fossils) are available before beating the league, and most gen 3 & 4 pokémon aside from the Sinnoh fossils, Spiritomb, and some legendaries.", + "Lyra is replaced entirely by Kris!", + "Gold/ Kris will now act like a rival with new dialogue and a few battles throughout the game!", + "Variety. Remember back in the original SoulSilver when you would find a trainer with 5 Pidgeys or when you fought Lance and he had 3 Dragonites? That won't happen anymore, trainers will have more varied teams and Pokémon that didn't appear much previously will now.", + "Easier Evolution. If a Pokémon has an evolution/pre-evolution introduced in gen 3/4 it'll be available pre-league and all evo items can be obtained in new ways. In addition, any evolutions will be possible without having to trade.", + "The type chart has been edited to help balance the game. Most notably Ice type is now immune to ice and resists water/ ground attacks.", + "New overworld events!", + "The shiny rate increased from 1/8192 to 1/2048!", + "Some pokémon will have custom shiny color palettes!", + "GB sounds from the start of the game.", + "The game corner has changed prizes and cheaper prices.", + "Early exp. share.", + "Removed the catching tutorial.", + "Repels and Max Repels last slightly longer and Max Repels are cheaper.", + "Some characters have their dialogue altered a little to be more memorable or to explain features like alolan forms." + ], + "links": [ + { + "label": "Info / thread", + "url": "https://www.pokeharbor.com/2022/08/pokemon-soothing-silver/" + }, + { + "label": "Download", + "url": "https://mega.nz/file/xR4BzQSY#dScFK0ntyKqIZJ0TPbs3Lawx0IEXdMMFnReAtQR6Yn8" + }, + { + "label": "Link", + "url": "https://www.pokeporto.com/pokemon-soothing-silver/" + } + ] + }, + { + "stem": "Sors 2", + "title": "Pokémon Sors 2", + "platform": "GBA", + "base": "Emerald", + "version": null, + "status": null, + "generation": "Gen III", + "developer": "Vytron", + "release_date": "2024", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Sors_2/IMG_6438-8d78ebf75fa0fe47.webp", + "source": "https://www.mediafire.com/file/buw7tdtqz54k65y/sors+2+tech+demo.zip/file", + "library_path": "/storage1/Emulation/roms/gba/sors 2 tech demo.zip", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Sors_2", + "type": [ + "Expansion", + "New Experience" + ], + "tags": [ + "hack", + "platform/gba", + "base/emerald", + "type/expansion", + "type/newexperience", + "source/discord" + ], + "summary": "As a sequal to the first Pokémon Sors, Pokémon Sors 2 is a ROM hack based on Pokémon Emerald. In this game you continue the last game in a new region with a new story. With challenges and side quests based on the last ones, you enter a game with new features combined with the old ones.", + "notability": "", + "story": "The International Police swiftly intervened in Hupest following the tumultuous events of Pokémon Sors. Siara's faction was apprehended, leading to the dissolution of their organization. Even Asher's circle faced legal scrutiny. Although Asher and Valora escaped charges, Jackson (Asher's father) and Prof. Ivo were not as fortunate. However, a pact struck between Asher and the IP secured their exoneration in exchange for their expertise on Eclipsing and cooperation in research, along with surrendering Asher's Eclipsing-related artifacts.\n\nThree years later, within Aclyn, the IP's headquarters, plans were underway to reconstruct a new iteration of the ITP Group post the disbandment following the events of Pokémon Saiph 2. Micah departed the force, his whereabouts unknown, while Darlo faced termination due to the Regris incident. Lori was assigned the pivotal role of assembling and leading the rejuvenated ITP Group. Meanwhile, Asher reneged on his agreement with the IP, orchestrating a daring raid on Aclyn's HQ to reclaim the artifacts, his motives shrouded in mystery to the authorities.", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/buw7tdtqz54k65y/sors+2+tech+demo.zip/file" + } + ] + }, + { + "stem": "Sors", + "title": "Pokémon Sors", + "platform": "GBA", + "base": "FireRed", + "version": "1.3", + "status": "Complete", + "generation": "Multi-gen", + "developer": "Vytron", + "release_date": "2021", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Sors/IMG_6437-0c4f51e52a6c5539.webp", + "source": "https://www.pokecommunity.com/threads/pokemon-sors.420576/", + "library_path": "roms/gba/Hacks/Pokemon - Sors (Hack).gba", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Sors", + "type": [ + "New Experience" + ], + "tags": [ + "hack", + "platform/gba", + "base/firered", + "status/complete", + "type/newexperience" + ], + "summary": "A complete story-driven hack with a full new region and extensive item/guide documentation.", + "notability": "", + "story": "> Prior to the game, 300 hundred years ago, an event called \"The Eclipse\" happened in the Hupest Region. During the eclipse, Pokemon were going wild and getting different forms. Now, in the current timeline of the game, you must unravel the mystery of where the villain groups are trying to recreate the Eclipse.\n> \n> They are actually doing good with it due to the fact that the Eclipse-type exists. Don't forget about doing the Pokemon elements like the other games.", + "features": [], + "links": [ + { + "label": "Source / info", + "url": "https://www.pokecommunity.com/threads/pokemon-sors.420576/" + }, + { + "label": "Lookup", + "url": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Sors%20rom%20hack" + } + ] + }, + { + "stem": "Soulsilver Fusion", + "title": "Pokémon Soulsilver Fusion", + "platform": "NDS", + "base": "SoulSilver", + "version": null, + "status": null, + "generation": null, + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Soulsilver_Fusion/IMG_9937-716e771767ff24d6.jpg", + "source": "https://www.mediafire.com/file/i17di57wf16490g/SoulSilverFusionC.zip/file", + "library_path": "—", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Soulsilver_Fusion", + "type": [], + "tags": [ + "hack", + "platform/nds", + "base/soulsilver", + "source/discord" + ], + "summary": "Pokemon SoulSilver Fusion The plot of the game does not change, participating in the game you will become a young trainer in the journey to explore the vast Johto and Kanto lands and challenge the Gym Leaders to become the next champion. In your journey, you can also collect more different Pokémon in the collection, in addition, you also have to confront Team Rocket, who specializes in abusing Pokémon for evil purposes. In addition to the familiar Pokémon in the original game,", + "notability": "", + "story": "", + "features": [ + "Over 160 mergers (more than any pokémon generation)", + "[Download Spanish Mediafire Link](https://www.mediafire.com/file/i17di57wf16490g/SoulSilverFusionC.zip/file)", + "[Download French Mega Link](https://mega.nz/file/QMYQmYaA#WrueoMh6mNmvtg9e6cH0gDhTxLBNXNRWOANjdVrmMFA)" + ], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/i17di57wf16490g/SoulSilverFusionC.zip/file" + }, + { + "label": "Download", + "url": "https://mega.nz/file/QMYQmYaA#WrueoMh6mNmvtg9e6cH0gDhTxLBNXNRWOANjdVrmMFA" + }, + { + "label": "Download", + "url": "https://mega.nz/file/QMYQmYaA" + } + ] + }, + { + "stem": "Sour Crystal", + "title": "Pokémon Sour Crystal", + "platform": "GB", + "base": "Crystal", + "version": "5.0", + "status": "Complete", + "generation": "Gen II", + "developer": "SoupPotato", + "release_date": "2024", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Sour_Crystal/Pokemon-Sour-Crystal-1-1e6535417b63ff2d.jpg", + "source": "https://www.pokeharbor.com/2021/07/pokemon-sour-crystal/", + "library_path": "/storage1/Emulation/roms/gb/sourcrystal v5.0.zip", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Sour_Crystal", + "type": [], + "tags": [ + "hack", + "platform/gb", + "base/crystal", + "status/complete", + "source/discord" + ], + "summary": "Pokémon Sour Crystal is an 'improvement hack' of Pokémon Crystal that has been 5 years in the making, created with the mindset of updating Crystal to current-gen standards but without losing the nostalgic feel of the original. The hack has many features that may make playing it more comfortable for newer players such as the \"PPS\" system (Pokéride).", + "notability": "", + "story": "", + "features": [ + "A Challenge Mode System which can be set during a New Game", + "A fully-functioning Safari Zone with 4 custom Biomes to explore", + "Unique Party sprites", + "Updated Stats up to gen9", + "Updated Move properties: Base Power, Accuracy, effects .etc", + "Updated Movepools", + "Upgraded trainer rematch system to make grinding more enjoyable and rewarding", + "Plus more, viewable on the linked site.", + "[PokéHarbor Link]()", + "[MediaFire Download]()" + ], + "links": [ + { + "label": "Info / thread", + "url": "https://www.pokeharbor.com/2021/07/pokemon-sour-crystal/" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/n3ovrgj7fnm8cfr/sourcrystal+v5.0.zip/file" + } + ] + }, + { + "stem": "Sovereign of the Skies", + "title": "Pokémon Sovereign of the Skies", + "platform": "GBA", + "base": "FireRed", + "version": "2.1.2", + "status": "Complete", + "generation": "Multi-gen", + "developer": "Dragonflye", + "release_date": "2022", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Sovereign_of_the_Skies/IMG_6607-742a4e7cd53c8fc7.webp", + "source": "https://www.pokecommunity.com/threads/pokemon-sovereign-of-the-skies.349500/", + "library_path": "roms/gba/Hacks/Pokemon - Sovereign of the Skies (Hack).gba", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Sovereign_of_the_Skies", + "type": [ + "New Experience" + ], + "tags": [ + "hack", + "platform/gba", + "base/firered", + "status/complete", + "type/newexperience" + ], + "summary": "A complete new region with custom dex and a sky-themed plot.", + "notability": "", + "story": "> The balance of a world is about to be shaken. While the mighty Guardians of Amitec can no longer leave their stronghold, the Sacred Shards of Celestis are stolen by the cold hands of Team Tundra. Find out what this is all about, and how a simple coach suddenly carries the fate of a world, in this unique adventure!", + "features": [], + "links": [ + { + "label": "Source / info", + "url": "https://www.pokecommunity.com/threads/pokemon-sovereign-of-the-skies.349500/" + }, + { + "label": "Lookup", + "url": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Sovereign%20of%20the%20Skies%20rom%20hack" + } + ] + }, + { + "stem": "Space World Crystal", + "title": "Pokémon Space World Crystal", + "platform": "GB", + "base": null, + "version": "of Crystal, from start to fini", + "status": "Complete", + "generation": "Gen II", + "developer": "TSK", + "release_date": "2020", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Space_World_Crystal/FB_IMG_1704155746366-1-cf9ca128ec5e9ea2.jpg", + "source": "https://www.mediafire.com/file/vnvtctid9nypxv0/Pokemon+Space+World+Crystal+v4.2.zip/file", + "library_path": "/storage1/Emulation/roms/gb/Pokemon Space World Crystal v4.2.zip", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Space_World_Crystal", + "type": [], + "tags": [ + "hack", + "platform/gb", + "status/complete", + "source/discord" + ], + "summary": "A fully playable version of Crystal, from start to finish. The Pokémon are as found in the 1997 Space World demo for Gold and Silver.", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/vnvtctid9nypxv0/Pokemon+Space+World+Crystal+v4.2.zip/file" + } + ] + }, + { + "stem": "Spirit of the Storm", + "title": "Pokémon Spirit of the Storm", + "platform": "GBA", + "base": null, + "version": null, + "status": null, + "generation": "Gen III", + "developer": "Runawayturtle1", + "release_date": "2025", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Spirit_of_the_Storm/IMG_8736-ec128042a9fee3b5.png", + "source": "https://www.mediafire.com/file/0qzt5vhtpjkd6zw/Spirits.zip/file", + "library_path": "/storage1/Emulation/roms/gba/Spirits.gba", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Spirit_of_the_Storm", + "type": [ + "New Experience" + ], + "tags": [ + "hack", + "platform/gba", + "type/newexperience", + "source/discord" + ], + "summary": "On a routine inspection in the bustling coastal port city of Porta Bella, Looker and Anabel are suddenly drawn into a mystery that runs deeper than expected. What secrets lie hidden within the city streets and the surrounding forest? With Looker's newfound ability to glimpse the future and your own detective skills, you'll battle, investigate, and uncover the truth while helping a colorful cast of citizens. Dive into this original story and battle hack where mystery and strategy go hand in hand!", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/0qzt5vhtpjkd6zw/Spirits.zip/file" + } + ] + }, + { + "stem": "Star Beasts - Asteroid Version [EN]", + "title": "Pokémon Star Beasts - Asteroid Version [EN]", + "platform": "GBC", + "base": "Red and Blue", + "version": null, + "status": null, + "generation": null, + "developer": "Soul Valor", + "release_date": "2024-09-03", + "banner": "https://romhacks-files.ginnoir.com/_meta/Star_Beasts_-_Asteroid_Version_EN/FJl1dHV-1-scaled-9efa9b966ffd926d.png", + "source": "https://www.mediafire.com/file/81doxww366xlo5k/starbeasts+v2.05.zip/file", + "library_path": "—", + "play_status": "Unplayed", + "scrape_dir": "Star_Beasts_-_Asteroid_Version_EN", + "type": [ + "New Experience", + "QoL" + ], + "tags": [ + "hack", + "platform/gbc", + "base/redandblue", + "type/newexperience", + "type/qol", + "source/discord" + ], + "summary": "**Star Beasts** is a GBC ROM Hack by Soul Valor based on Pokemon Red and Blue. It was last updated on September 3, 2024.", + "notability": "", + "story": "", + "features": [ + "Completely overhauled soundtrack, with almost no original music remaining.", + "Redesigned Pokédex, fixing balance issues and replacing outdated or inconsistent designs.", + "Updated movesets with even more new moves.", + "Introduction of Steel and Dark types.", + "New areas and in-game events.", + "Enhanced trainer rosters, new trainer types, and improved AI.", + "Updated dialogue, removing references to \"Pokemon\" (hopefully no slip-ups!).", + "Rebalanced gameplay to be more accessible, with helpful NPCs providing hints on rare Star Beasts.", + "Quality of life improvements like an experience bar.", + "Glitches to be aware of:**", + "Music can sound wrong or loop improperly on older, less accurate emulators like VisualboyAdvance or older versions of NO$GBA. Use accurate emulators like BGB or MGBA.", + "Certain areas and encounters may cause crashes on less accurate emulators. Save often, and avoid saving in specific areas, especially a certain location in Celadon City.", + "Rewinding can lead to severe glitches or crashes, similar to issues in vanilla Gen 1. It's safer to use savestates instead.", + "Beasts revived after fainting due to recoil damage will become poisoned. Heal them with an item or visit a Star Beast Center.", + ":Download: [MediaFire](https://www.mediafire.com/file/81doxww366xlo5k/starbeasts+v2.05.zip/file)", + ":Download: [MEGA](https://mega.nz/file/sykAXSZA#f5AovOI83nT28aavaDD_qxwykSegxAanPoIFgDPNqjc)" + ], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/81doxww366xlo5k/starbeasts+v2.05.zip/file" + }, + { + "label": "Download", + "url": "https://mega.nz/file/sykAXSZA#f5AovOI83nT28aavaDD_qxwykSegxAanPoIFgDPNqjc" + } + ] + }, + { + "stem": "Star", + "title": "Pokémon Star", + "platform": "3DS", + "base": "Pokemon Sun and Moon", + "version": null, + "status": null, + "generation": "Gen VII", + "release_date": "2018", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Star/IMG_8882-1-b7b36799eae98a18.webp", + "source": "https://mega.nz/file/7CQjhaha#YzIccggwYvGxIKdlZFTYw4wCx2n82PKEXfVojuY2C0g", + "library_path": "/storage1/Emulation/roms/3ds/Pokémon Star.7z", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Star", + "type": [ + "New Experience" + ], + "tags": [ + "hack", + "platform/3ds", + "base/pokemonsunandmoon", + "type/newexperience", + "source/discord" + ], + "summary": "Catalogued from the Discord ROM-hack archive. See links below.", + "notability": "", + "story": "", + "features": [ + "More Pokemon are available.", + "Ultra Evolutions.", + "Ultra starter.", + "Lillie Valley.", + "Brand new trainers.", + "Four new trails.", + "New Pokemon gyms.", + "A more festive PMC.", + "UBER ride is back.", + "Lusamine and Minilego.", + "Ultra Recon Squad.", + "Necroma's Ruins of light.", + "Discover secrets.", + "Elite Four and Title Defense", + ":DownloadArrow: [Download Link](https://mega.nz/file/7CQjhaha#YzIccggwYvGxIKdlZFTYw4wCx2n82PKEXfVojuY2C0g)", + "[Installation Guide For 3ds](https://github.com/Aqua-0/Pokemon_Star_Console_Edition)", + "# Pokemon Star is made using Pokemon Ultra Moon as its base!", + "Meant to be used with CITRA emulator for full experience" + ], + "links": [ + { + "label": "Download", + "url": "https://mega.nz/file/7CQjhaha#YzIccggwYvGxIKdlZFTYw4wCx2n82PKEXfVojuY2C0g" + }, + { + "label": "Download", + "url": "https://github.com/Aqua-0/Pokemon_Star_Console_Edition" + } + ] + }, + { + "stem": "Steve the Bibarel Heart of Darkness", + "title": "Pokémon Steve the Bibarel: Heart of Darkness", + "platform": "PC", + "base": null, + "version": "1.0 Completed", + "status": "Complete", + "generation": "Joiplay/RPGXP", + "developer": "Sparta", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Steve_the_Bibarel_Heart_of_Darkness/IMG_0109-7982cf433b7b064b.jpg", + "source": "https://mega.nz/file/gx52HTwa#wpsWmh-IBpwU_4Z6fNFXDBL_Sr8B7PomJ_yWT55BUKc", + "library_path": "/storage1/labdata/romhacks/library/Pokemon_Steve_the_Bibarel_Heart_of_Darkness/", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Steve_the_Bibarel_Heart_of_Darkness", + "type": [], + "tags": [ + "hack", + "platform/pc", + "status/complete", + "source/discord" + ], + "summary": "Catalogued from the Discord ROM-hack archive. See links below.", + "notability": "", + "story": "Steve the Bibarel wakes up with no memories in a strange dark world where he is quickly recruited into fighting an all-powerful, all-consuming darkness that threatens to corrupt the souls of those trapped in that world. After replaying through it while touching it up, I've come to the conclusion that I'm not too happy with the overall story, and it's likely to be considered non-canon to the Steve Universe Lore.", + "features": [ + "Play as a bibarel", + "## Download Links", + "[Download Link Mega](https://mega.nz/file/gx52HTwa#wpsWmh-IBpwU_4Z6fNFXDBL_Sr8B7PomJ_yWT55BUKc)" + ], + "links": [ + { + "label": "Download", + "url": "https://mega.nz/file/gx52HTwa#wpsWmh-IBpwU_4Z6fNFXDBL_Sr8B7PomJ_yWT55BUKc" + }, + { + "label": "Download", + "url": "https://mega.nz/file/gx52HTwa" + } + ] + }, + { + "stem": "Stone Dragon 3", + "title": "Pokémon Stone Dragon 3", + "platform": "GBA", + "base": null, + "version": "by_Raizen).zip/file)", + "status": null, + "generation": "Gen III", + "developer": "Ash Ketchum", + "release_date": "2023", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Stone_Dragon_3/maxresdefault_3-ab79b2c829e3a04f.jpg", + "source": "https://www.mediafire.com/file/f3o1trrp23z1hx2/Stone_Dragon_3_", + "library_path": "/storage1/Emulation/roms/gba/Stone Dragon 3 (ENG Version by Raizen).gba", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Stone_Dragon_3", + "type": [ + "Expansion", + "New Experience" + ], + "tags": [ + "hack", + "platform/gba", + "type/expansion", + "type/newexperience", + "source/discord" + ], + "summary": "About the Game:\n\nThe game takes place in the Unova Region, with Pokémon from the first to the sixth generation. On your journey, you will be accompanied by Ash Ketchum (IMPORTANT - talk to him at all times).\n\nCharacter choice changes the Pokémon you start the game with. The villainous team in the game is Team Plasma, the goal is to free people's Pokémon including yours in case of defeat to them.\n\nThe starters will be the Pokémon from Unova, all three of which are shiny with perfect IVs. During your adventure it is possible to find shiny Pokémon on the route (route 101) it is already possible t", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/f3o1trrp23z1hx2/Stone_Dragon_3_" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/f3o1trrp23z1hx2/Stone_Dragon_3_(ENG_Version_by_Raizen" + } + ] + }, + { + "stem": "Storm Silver", + "title": "Pokémon Storm Silver", + "platform": "NDS", + "base": "SoulSilver", + "version": "1.1", + "status": "Complete", + "generation": "Gen 1–4", + "developer": "Drayano", + "release_date": "2010", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Storm_Silver/Pokemon-Storm-Silver-549e018e427b24db.webp", + "homepage": "https://www.gamebrew.org/wiki/Pokemon_Sacred_Gold_and_Storm_Silver", + "source": "https://www.pokecommunity.com/threads/pokemon-sacred-gold-storm-silver.165088/", + "library_path": "roms/nds/Hacks/Pokemon - Storm Silver (Hack).nds", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Storm_Silver", + "type": [ + "Difficulty", + "Vanilla+" + ], + "tags": [ + "hack", + "platform/nds", + "base/soulsilver", + "status/complete", + "type/difficulty", + "type/vanillaplus", + "source/discord" + ], + "summary": "Pokémon Storm Silver is Drayano's enhanced, harder take on SoulSilver — the twin of Sacred Gold. All 493 Pokémon are catchable without trading, major trainers field full teams of six with rebalanced rosters, and new scripted battles and aesthetic changes flesh out Johto. The definitive whole-dex, real-difficulty way to play SoulSilver.", + "notability": "Part of Drayano's legendary enhancement series — the SoulSilver half of the definitive enhanced Johto experience.", + "story": "> The story of Pokemon Storm Silver is the same as the original Pokemon Soul Silver game. The player character sets out on a journey through the Johto region to collect and train a team of Pokemon, defeat the eight Gym Leaders, and ultimately challenge the Elite Four and Champion to become the best trainer in the region.\n> \n> Along the way, the player character encounters a variety of characters, including their rival, Team Rocket, and the legendary Pokemon of the region. The story also includes various subplots, such as helping the Kimono Girls, solving mysteries at the Ruins of Alph, and uncovering the story of the legendary Pokemon, Lugia and Ho-Oh.\n> \n> While the main story of Pokemon Storm Silver is the same as the original game, the ROM hack includes several gameplay improvements and changes, such as increased difficulty, new Gym Leaders, and a larger variety of Pokemon available to catch and train.\n\nhttps://drive.google.com/file/d/18Wz65wFrXXD-RPyAIF0u3hgUb7P7eJ_2/view?usp=drivesdk", + "features": [ + "All 493 Pokémon obtainable without trading", + "Greater difficulty curve; major trainers use full teams of six", + "New trainer battles — Cynthia, Steven, Ethan/Lyra and more", + "Evolution items and TMs available before the Elite Four", + "Trade evolutions reworked to be self-contained", + "Optional stat/movepool buffs and many scripted events" + ], + "links": [ + { + "label": "Source / info", + "url": "https://www.pokecommunity.com/threads/pokemon-sacred-gold-storm-silver.165088/" + }, + { + "label": "Lookup", + "url": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Storm%20Silver%20rom%20hack" + } + ] + }, + { + "stem": "Stunning Steel", + "title": "Pokémon Stunning Steel", + "platform": "GBA", + "base": null, + "version": "1.3.3 Completed", + "status": "Complete", + "generation": "Gen III", + "developer": "CaveNinja", + "release_date": "2008", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Stunning_Steel/IMG_0139-7c18e2efde91961a.png", + "source": "https://raw.githubusercontent.com/vbaemulator/GBA-Roms/main/Pokemon%20StunningSteel%20v1.3.3.zip", + "library_path": "/storage1/Emulation/roms/gba/Pokemon StunningSteel v1.3.3.zip", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Stunning_Steel", + "type": [], + "tags": [ + "hack", + "platform/gba", + "status/complete", + "source/discord" + ], + "summary": "The year is 2008, a decade after the Great Pokémon War. Your late father, a master of Steel-type Pokémon, is hailed as a national hero. However, you don't remember much about him, apart from the stories your mom tells you and the glorified accounts of the media.\nAlthough you didn't have time to raise your own Pokémon while you were in school, that didn't stop you from making a name for yourself at various battle facilities using rental Pokémon. Now, after graduating at 17, you decide to embark on your own journey to see what the world of Pokémon holds for you as a trainer.\nHowever, your path i", + "notability": "", + "story": "", + "features": [ + "Branching choice-based plot development: 3 possible endings", + "4-6 friends/rivals", + "151++ Pokémon: All 151 original Pokémon are available through traditional solo gameplay. In addition, almost every Pokémon from Gen 2 and 3 are available", + "Moderate difficulty", + "Losable battles", + "Revamped EV Training hotspots", + "Hidden abilities", + "Updated movesets", + "TM's reusable", + "Poison overworld effects disabled", + "EXP gain after catching Pokémon", + "Repel system from BW2", + "Anniversary Red", + "## Download Links", + "[Download Link](https://raw.githubusercontent.com/vbaemulator/GBA-Roms/main/Pokemon%20StunningSteel%20v1.3.3.zip)" + ], + "links": [ + { + "label": "Download", + "url": "https://raw.githubusercontent.com/vbaemulator/GBA-Roms/main/Pokemon%20StunningSteel%20v1.3.3.zip" + } + ] + }, + { + "stem": "Sun Sky & Moon Galaxy", + "title": "Pokémon Sun Sky & Moon Galaxy", + "platform": "GBA", + "base": "FireRed", + "version": "completed", + "status": "Complete", + "generation": "Gen III", + "developer": "ISHRAK'S POKETIPS and GOHAN'S TIPS", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Sun_Sky_Moon_Galaxy/IMG_9961-da8affd62584f159.jpg", + "source": "https://www.mediafire.com/file/6hnoz8dmgyrlnd5/Pokemon_Sun_Sky_Completed.zip/file", + "library_path": "/storage1/Emulation/roms/gba/Moon_Galaxy_Completed.gba", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Sun_Sky_Moon_Galaxy", + "type": [ + "Expansion", + "New Experience" + ], + "tags": [ + "hack", + "platform/gba", + "base/firered", + "status/complete", + "type/expansion", + "type/newexperience", + "source/discord" + ], + "summary": "It's a GBA Hack ROM and based on Pokemon Fire Red. It's a game alongside Pokemon Moon Galaxy. You are a trainer in Kanto Region but the map is changed too much. * Try to explore the region with mega evolution, z-moves, ultra beasts, and more new events. The author said it has Alola Region. It's good. Anyway, It's completed in English. And now, Let's play! * Features:
1. Mega Evolution
2. Alola Region and Kanto Region
3. Alola, Kanto and Galar forms
4. Shiny Pokemons
5. New Story
6. New Professor
7. Lillie and more alolan friends
8. Z moves
9. New Tilesets
10. All Pokemons
11. Ultra Beasts
12. Z-Moves are available
13. Trainers can use Mega Evolution in battle
14. A New Boss of team Rainbow Rocket is discovered!
15. A Mysterious Gift (Meltan) Alola Region
16. You can catch wild alolan starters.
17. Find more playing the game!!! [Download Sun Sky Link](https://www.mediafire.com/file/6hnoz8dmgyrlnd5/Pokemon_Sun_Sky_Completed.zip/file) [Download Moon Galaxy Link](https://www.mediafire.com/file/o6fu91ra0gnwuzd/Pokemon_Moon_Galaxy_Completed.zip/file)", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/6hnoz8dmgyrlnd5/Pokemon_Sun_Sky_Completed.zip/file" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/o6fu91ra0gnwuzd/Pokemon_Moon_Galaxy_Completed.zip/file" + } + ] + }, + { + "stem": "Sunset Orange", + "title": "Pokémon Sunset Orange", + "platform": "GBA", + "base": null, + "version": "Pokemon Fire Red", + "status": null, + "generation": "Gen III", + "developer": "Daman", + "release_date": "2017", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Sunset_Orange/Screenshot_20240627_100710_YouTube-ecc4e0e6115b4030.jpg", + "source": "https://www.mediafire.com/file/3vg0f6frbbov21i/Pokemon+Sunset+Orange.zip/file", + "library_path": "/storage1/Emulation/roms/gba/Pokemon_Sunset_Orange_a1.0.gba", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Sunset_Orange", + "type": [], + "tags": [ + "hack", + "platform/gba", + "source/discord" + ], + "summary": "INFORMATIONS Release Year: 2017 Original Version: Pokemon Fire Red", + "notability": "", + "story": "", + "features": [ + "The original Orange Archipelago is included;", + "Pokemon from Gen I to Gen IV;", + "New items, tiles, soundtracks;", + "Many things from the original 2000 anime.", + ":Download: [Mediafire](https://www.mediafire.com/file/3vg0f6frbbov21i/Pokemon+Sunset+Orange.zip/file)" + ], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/3vg0f6frbbov21i/Pokemon+Sunset+Orange.zip/file" + } + ] + }, + { + "stem": "Super Dark Worship", + "title": "Pokémon Super Dark Worship", + "platform": "GBA", + "base": null, + "version": null, + "status": null, + "generation": "Gen III", + "developer": "André Freitas", + "release_date": "2024", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Super_Dark_Worship/Pokemon-Super-Dark-Worship--f1e3d5c46645a85f.png", + "source": "https://www.mediafire.com/file/0gnb57ak1a7ados/Super+Dark+Worship+Oficial.zip/file", + "library_path": "/storage1/Emulation/roms/gba/Super Dark Worship Oficial.gba", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Super_Dark_Worship", + "type": [ + "Expansion", + "New Experience" + ], + "tags": [ + "hack", + "platform/gba", + "type/expansion", + "type/newexperience", + "source/discord" + ], + "summary": "Super Dark Worship is a hack with its own story that takes place in the Seafood Region.\nAn Evil Sect invades the region to try to capture the Sacred Pokémon.\nDo they intend to do any harm to the Pokémon world?\nOur protagonist will go on a journey to win the title of champion of the Seafood Region.\nOn your adventure you will meet familiar characters from other games, make friends and battle against the terrible Evil Sect.\n\nA sequence of mysterious events are taking place within the Sevii Islands' intriguing settings. Conquer the Pokémon League as a first step toward your journey to the Sevii Is", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/0gnb57ak1a7ados/Super+Dark+Worship+Oficial.zip/file" + } + ] + }, + { + "stem": "Super Mariomon", + "title": "Pokémon Super Mariomon", + "platform": "GBA", + "base": "Emerald", + "version": "1.5.2", + "status": "Complete", + "generation": "Crossover", + "banner": "https://romhacks-files.ginnoir.com/_meta/Super_MarioMon/alpharads-super-mariomon-1-1600x1595-6d817d44fddc502f.webp", + "source": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Super%20Mariomon%20rom%20hack", + "library_path": "roms/gba/Hacks/Pokemon - Super Mariomon (Hack).gba", + "play_status": "Unplayed", + "scrape_dir": "Super_MarioMon", + "type": [ + "New Experience", + "Cosmetic" + ], + "tags": [ + "hack", + "platform/gba", + "base/emerald", + "status/complete", + "type/newexperience", + "type/cosmetic" + ], + "summary": "A Mario × Pokémon crossover: catch and battle Mario-universe characters as 'Mariomon'. A complete novelty hack.", + "notability": "", + "story": "", + "features": [ + "Mariodex: A fully reworked Pokédex-style Mariodex featuring over 150 custom-designed Mariomon from across the Mario franchise.", + "Enhanced Visuals: Enjoy enhanced visuals and custom sprites that bring the world of Super Mariomon to life.", + "Turn-Based Mario Battles: Engage in strategic battles with familiar characters, each with unique abilities.", + "Item-Driven Chaos: Experience unpredictable item combinations and effects that can alter the course of battle.", + "Character-Specific Abilities: Discover the strengths and weaknesses of each character through their unique abilities and stats.", + "Randomized Events: No two playthroughs are the same, thanks to unpredictable events and scenarios.", + "Mario Meets Pokémon: Enjoy a seamless blend of classic Mario platforming and Pokémon-style battles.", + "__**Download:**__", + "[Mediafire Link]()" + ], + "links": [ + { + "label": "Lookup", + "url": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Super%20Mariomon%20rom%20hack" + } + ] + }, + { + "stem": "Supernova Sun & Penumbra Moon", + "title": "Pokémon Supernova Sun & Penumbra Moon", + "platform": "3DS", + "base": null, + "version": "of these games, as it’s what t", + "status": null, + "generation": "Gen VII", + "developer": "Dio Vento", + "release_date": "2018", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Supernova_Sun_Penumbra_Moon/IMG_6834-1-207e251133b9dd45.png", + "source": "https://mega.nz/file/ZIxhnQqL#3-YLgi2kK3SEhItxHDDzFcoqRc7lzVkQ_bFmtvRaGJU", + "library_path": "/storage1/Emulation/roms/3ds/Penumbra_Moon_Expanded.7z", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Supernova_Sun_Penumbra_Moon", + "type": [ + "New Experience" + ], + "tags": [ + "hack", + "platform/3ds", + "type/newexperience", + "source/discord" + ], + "summary": "**Note! This is the Expanded version of these games, as it's what the creator recommended to play the ROM hack and contains most features**", + "notability": "", + "story": "The story is primarely the same as Ultra Sun and Ultra Moon. The focus on this game is the new features and mechanics rather than creating a new storyline. However this will not make the games less interesting, as the more difficulty and challenges complements the story which makes these games worthy to try.", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://mega.nz/file/ZIxhnQqL#3-YLgi2kK3SEhItxHDDzFcoqRc7lzVkQ_bFmtvRaGJU" + }, + { + "label": "Download", + "url": "https://mega.nz/file/ZN4HSB6I#hi6OdusDNUtrC1XaIulUge0jG9m9ZGHK1zf4NtpLT1k" + } + ] + }, + { + "stem": "Supreme Ruby", + "title": "Pokémon Supreme Ruby", + "platform": "Patch", + "base": null, + "version": "0.9 Completed", + "status": "Complete", + "generation": "Gen VI", + "developer": "Sahinz", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Supreme_Ruby/IMG_0108-15d4599d5f90fa89.webp", + "source": "https://drive.google.com/drive/folders/1zYoq5EnamxM299ZXeHc0QblHiEa_UY0C", + "library_path": "/storage1/labdata/romhacks/library/Pokemon_Supreme_Ruby/", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Supreme_Ruby", + "type": [ + "Difficulty" + ], + "tags": [ + "hack", + "platform/patch", + "status/complete", + "type/difficulty", + "source/discord" + ], + "summary": "Completed Supreme Ruby is a carefully balanced difficulty hack of Pokémon Omega Ruby. Every change is intentional, aiming to provide: * Meaningful early-game variety * Competitive-style trainer battles * Smarter progression without artificial difficulty * A fresh Hoenn experience for players tired of the classic Normal/Bug early routes Starters are completely redesigned with new typings, abilities, and movepools 🌿 Snivy Line * Abilities: Contrary / Overgrow * Dragon-type moves added * Can learn Fly, Dragon TMs, and Dragon tutors 🌊 Froakie Line * Abilities: Protean / Torrent * Can learn Psychic and Poison-type moves * Water Shuriken now hits 4-5 times 🔥 Cyndaquil Line * Abilities: Drought / Levitate * Learns Ghost and select Psychic-type moves", + "notability": "", + "story": "", + "features": [ + "Healing items are rebalanced (no infinite safety nets)", + "Max Elixir, Max Revive, PP Max, Ability Capsule and Heart Scale", + "Shops offer meaningful progression items instead of filler", + "Evolution items and Mega Stones are placed logically", + "No forced grinding or artificial scarcity", + "The result is a game that respects the player's time.", + "Supreme Ruby is built around smart difficulty, not frustration:", + "Battles reward planning, coverage, and positioning", + "Trainers feel dangerous without being unfair", + "The game challenges experienced players while remaining intuitive", + "⭐ Why Play Supreme Ruby?", + "A harder Omega Ruby that feels natural", + "Early-game freedom instead of forced archetypes", + "Competitive-style battles without losing the RPG feel", + "## Download Links", + "[Download Link Doc and Patch](https://drive.google.com/drive/folders/1zYoq5EnamxM299ZXeHc0QblHiEa_UY0C)", + "[Download link full game citra](https://secure.ue.internxt.com/sh/file/3KJZV3HzS5u61ZZlLh_Dhg/5dmf1lB0)" + ], + "links": [ + { + "label": "Download", + "url": "https://drive.google.com/drive/folders/1zYoq5EnamxM299ZXeHc0QblHiEa_UY0C" + }, + { + "label": "Download", + "url": "https://secure.ue.internxt.com/sh/file/3KJZV3HzS5u61ZZlLh_Dhg/5dmf1lB0" + } + ] + }, + { + "stem": "SwSh Ultimate", + "title": "Pokémon SwSh Ultimate", + "platform": "GBA", + "base": null, + "version": null, + "status": null, + "generation": "Gen III", + "developer": "PCL.G", + "release_date": "2024", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_SwSh_Ultimate/pokemon-sword-and-shield-ultimate-ea759faf2e80aba6.jpg", + "source": "https://www.mediafire.com/file/edc595cj706nowg/SS+Ultimate+", + "library_path": "/storage1/Emulation/roms/gba/SS Ultimate (English v2.1).zip", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_SwSh_Ultimate", + "type": [ + "Expansion" + ], + "tags": [ + "hack", + "platform/gba", + "type/expansion", + "source/discord" + ], + "summary": "It's the same Pokémon Sword Shield GBA from PCL. G, but with new system changes that make it a whole new game.", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/edc595cj706nowg/SS+Ultimate+" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/edc595cj706nowg/SS+Ultimate+(English+v2.1" + } + ] + }, + { + "stem": "Sword and Shield Ultimate Plus", + "title": "Pokémon Sword and Shield Ultimate Plus", + "platform": "GBA", + "base": "FireRed", + "version": "1.2.1.2", + "status": "Ongoing", + "generation": "Gen 8 on GBA", + "developer": "PCL.G", + "release_date": "2024-08-28", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Sword_and_Shield_Ultimate_Plus/Pokemon-Sword-and-Shield-Ultimate-Plus-GBA-08f040f3a416d21c.png", + "source": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Sword%20and%20Shield%20Ultimate%20Plus%20rom%20hack", + "library_path": "roms/gba/Hacks/Pokemon - Sword and Shield Ultimate Plus (Hack).gba", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Sword_and_Shield_Ultimate_Plus", + "type": [ + "Demake", + "New Experience" + ], + "tags": [ + "hack", + "platform/gba", + "base/firered", + "status/ongoing", + "type/demake", + "type/newexperience" + ], + "summary": "A Galar (Sword/Shield) demake bringing Gen 8's region, Pokémon, and Dynamax-era content to the GBA.", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Lookup", + "url": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Sword%20and%20Shield%20Ultimate%20Plus%20rom%20hack" + } + ] + }, + { + "stem": "TCG Neo", + "title": "Pokémon TCG: Neo", + "platform": "GB", + "base": "TCG", + "version": "+v1.33.zip/file)", + "status": "Complete", + "generation": "Unique", + "developer": "Cataclyptic", + "release_date": "2024-06-27", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_TCG_Neo/Screenshot_20240723_143125_Chrome-1-1-0b88b7635cedbee3.jpg", + "source": "https://www.mediafire.com/file/njukrkjaa7kf4iu/tcgneo+-+boy+version+v1.33.zip/file", + "library_path": "/storage1/Emulation/roms/gb/tcgneolegacy - girl version v1.33.zip", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_TCG_Neo", + "type": [], + "tags": [ + "hack", + "platform/gb", + "base/tcg", + "status/complete", + "source/discord" + ], + "summary": "**Pokémon TCG: Neo** is a GBC Rom Hack by Cataclyptic based on Pokemon TCG. It was last updated on June 27, 2024.", + "notability": "", + "story": "", + "features": [ + "As previously stated, all 187 pokémon in this game have been replaced by generation 2 cards from real-life sets. This completes the real Johto Pokedex, with some Kanto Pokémon thrown into the mix. These cards' attacks and abilities either reflect their real-life counterparts, come close to them, or I ignored them for a better attack. Trainer cards have also been altered, but not as extensively. In particular, though, Super Energy Removal is no longer in the game, having been replaced by Master Ball and more!" + ], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/njukrkjaa7kf4iu/tcgneo+-+boy+version+v1.33.zip/file" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/3c7s8dfrcdvvjf2/tcgneolegacy+-+boy+version+v1.33.zip/file" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/q0zqjdjyhvds5yj/tcgneo+-+girl+version+v1.33.zip/file" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/yikl8dxbpktukcl/tcgneolegacy+-+girl+version+v1.33.zip/file" + } + ] + }, + { + "stem": "Team Rocket Edition 2", + "title": "Pokémon Team Rocket Edition 2", + "platform": null, + "base": null, + "version": null, + "status": null, + "generation": null, + "developer": "completing missions and taking over cities along the way", + "release_date": "2000", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Team_Rocket_Edition_2/IMG_0062-a930a1ce732c1a66.webp", + "source": "https://secure.eu.internxt.com/sh/file/UB8hChkUR-CztHZSj5bFVg/fIXj8X5V", + "library_path": "—", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Team_Rocket_Edition_2", + "type": [ + "New Experience" + ], + "tags": [ + "hack", + "type/newexperience", + "source/discord" + ], + "summary": "Pokemon Team Rocket Edition 2 Dev: Pokeglitch", + "notability": "", + "story": "", + "features": [ + "The game will feature two modes, Challenge (hard) or Adventure (normal).", + "You will be able to have one of each gamesave at the same time.", + "Hard Mode Features", + "1 life for your Pokémon. If they faint, they are gone for good", + "1 life for the player. If you black out, the game is over.", + "The game autosaves (both in an out of battle) to limit cheating", + "Normal Game Features", + "The game keeps track of your win/loss/kills/ko's throughout the game.", + "The game also keeps track of your high score and best time.", + "High score is only in hard mode, best time is in normal mode.", + "The scoring it based on just about everything you do in the game, from updating your pokedex to evolving a pokemon to defeating a trainer.", + "New Pokemon", + "Every Gen 1 Pokémon family will have their finished family lines in the games. That is 32 added Pokémon!", + "That means some Pokémon from Gen 2 up to Gen 6 will be featured in this game.", + "You will have a 1/2000 chance of encountering a Holo Pokémon! Holo Pokémon will have special abilities that normal Pokémon won't", + "## Download Links", + "[Download Link](https://secure.eu.internxt.com/sh/file/UB8hChkUR-CztHZSj5bFVg/fIXj8X5V)" + ], + "links": [ + { + "label": "Download", + "url": "https://secure.eu.internxt.com/sh/file/UB8hChkUR-CztHZSj5bFVg/fIXj8X5V" + } + ] + }, + { + "stem": "Team Rocket Edition", + "title": "Pokémon Team Rocket Edition", + "platform": "GBA", + "base": "Emerald", + "version": null, + "status": "Complete", + "generation": "Gen III", + "developer": "far one of the oldest", + "release_date": "2008", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Team_Rocket_Edition/FB_IMG_1710206062638-1-1-3f5780133274156d.jpg", + "source": "https://mega.nz/file/lH9ACDhQ#4crVtWVtWIwVyCFmNJ7RnV99S4AUXd_yiLMk_323EW4", + "library_path": "/storage1/Emulation/roms/gba/TRE Johto Release April 30, 2025.gba", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Team_Rocket_Edition", + "type": [ + "Expansion" + ], + "tags": [ + "hack", + "platform/gba", + "base/emerald", + "status/complete", + "type/expansion", + "source/discord" + ], + "summary": "You begin the journey as another recruit in the general headquarters of Isla Inta, in seven islands, with the purpose of gradually advancing in the organization. To do so, you must successfully complete the assignments assigned to you by your superiors. Your tale takes place in the same chronology as the beginning of Red and Blue's adventure, and because you'll be transferred to Kanto at some point, you'll be able to see Red/story Blue's from the perspective of a team member.", + "notability": "", + "story": "", + "features": [ + "Explore Kanto like never before:", + "Four full regions: Kanto, Sevii Islands (Archi7), Johto, and Hoenn, all spanning over three years between Gen 1 and Gen 2.", + "Rise through Team Rocket's ranks with a dynamic promotion system that changes your appearance as you progress.", + "Approximately 110 hours of content", + "Custom music for major battles and new areas.", + "Optional side quests and events that enrich your Rocket role and reward you with exclusive Pokémon and items.", + "Pokémon up to Gen 9, including designs from the 1997 Gold/Silver beta.", + "Dozens of new Pokémon, including Rocket experiments, bond evolutions, megas, and primals.", + "Extensive new mapping of areas not shown in the original games.", + "Over 1,500 trainers to battle.", + "Around 700 Pokémon are obtainable, covering most of the first four generations" + ], + "links": [ + { + "label": "Download", + "url": "https://mega.nz/file/lH9ACDhQ#4crVtWVtWIwVyCFmNJ7RnV99S4AUXd_yiLMk_323EW4" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/oukc7vrhgqnid41/TRE+Johto+Release+April+30,+2025.zip/file" + }, + { + "label": "Download", + "url": "https://mega.nz/file/lH9ACDhQ" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/i1qmkcnl5dftxm9/TRE+Spanish+" + }, + { + "label": "Download", + "url": "https://mega.nz/file/sfNXlBII#_Kb2_eIYpgt7XI_d37vHrXOCmNXBK9nwPIi-l8p8nis" + }, + { + "label": "Download", + "url": "https://mega.nz/file/sfNXlBII" + } + ] + }, + { + "stem": "Team Rocket Jessie & James Edition", + "title": "Pokémon Team Rocket Jessie & James Edition", + "platform": null, + "base": null, + "version": null, + "status": null, + "generation": null, + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Team_Rocket_Jessie_James_Edition/IMG_0064-c0d6ca775d487b1c.jpg", + "source": "https://drive.internxt.com/sh/file/5309b799-5a6a-42c1-8e7b-f726d6b6d2ca/0fa038e2f7c213d6f53fb1841181f843e3106adce43b733932a3bd016f7d246e", + "library_path": "—", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Team_Rocket_Jessie_James_Edition", + "type": [ + "Expansion" + ], + "tags": [ + "hack", + "type/expansion", + "source/discord" + ], + "summary": "Pokemon Team Rocket Jessie & James Edition Dev: MrNightology", + "notability": "", + "story": "", + "features": [ + "Kanto, Johto and Hoenn", + "Metro Battle Kanto and Johto", + "BW Repellent System", + "Mega Evolutions (Coming soon?)", + "Day and Night System", + "Wild Pokémon music by regions", + "Dynamic OW Palettes", + "Extended OW table", + "Extended Music Chart", + "Dynamic Healing Places", + "More melodies when finding trainers", + "VS Bars", + "ASM routines", + "shoplifting", + "Alpha Ruins Puzzle", + "Rocket Style Safari Zone", + "Stronger Gym Leaders", + "Travel the Kanto region as Team Rocket members", + "## Download Links", + "[Download Link](https://drive.internxt.com/sh/file/5309b799-5a6a-42c1-8e7b-f726d6b6d2ca/0fa038e2f7c213d6f53fb1841181f843e3106adce43b733932a3bd016f7d246e)" + ], + "links": [ + { + "label": "Download", + "url": "https://drive.internxt.com/sh/file/5309b799-5a6a-42c1-8e7b-f726d6b6d2ca/0fa038e2f7c213d6f53fb1841181f843e3106adce43b733932a3bd016f7d246e" + } + ] + }, + { + "stem": "Team Rocket Prepare for Trouble", + "title": "Pokémon Team Rocket Prepare for Trouble", + "platform": "GB", + "base": null, + "version": "1.0 Completed", + "status": "Complete", + "generation": "Gen II", + "developer": "Unknow", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Team_Rocket_Prepare_for_Trouble/IMG_0063-3e8c25526f3425ad.webp", + "source": "https://raw.githubusercontent.com/vbaemulator/GBC-Roms/main/Pokemon%20Team%20Rocket%20ROR%20Prepare%20for%20Trouble.zip", + "library_path": "/storage1/Emulation/roms/gb/Pokemon Team Rocket ROR Prepare for Trouble.zip", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Team_Rocket_Prepare_for_Trouble", + "type": [], + "tags": [ + "hack", + "platform/gb", + "status/complete", + "source/discord" + ], + "summary": "In Pokemon Team Rocket ROR Prepare for Trouble, you play as Jessie or James of Team Rocket and your starter Pokemon is Meowth. You play in the region of Kanto where Team Rocket starts at Mt. Moon and has to obtain a fossil. Play the game to follow the journey of Team Rocket.", + "notability": "", + "story": "", + "features": [ + "Play As Jessie and James", + "Meowth as the starter Pokemon", + "Travel the Kanto region as Team Rocket members", + "## Download Links", + "[Download Link](https://raw.githubusercontent.com/vbaemulator/GBC-Roms/main/Pokemon%20Team%20Rocket%20ROR%20Prepare%20for%20Trouble.zip)" + ], + "links": [ + { + "label": "Download", + "url": "https://raw.githubusercontent.com/vbaemulator/GBC-Roms/main/Pokemon%20Team%20Rocket%20ROR%20Prepare%20for%20Trouble.zip" + } + ] + }, + { + "stem": "Techno Emerald", + "title": "Pokémon Techno Emerald", + "platform": "GBA", + "base": null, + "version": "of this game in January of thi", + "status": null, + "generation": "Gen III", + "developer": "NotSuicuu's Vintage White", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Techno_Emerald/1684959444882-1-1-7035afb567ffc95c.jpg", + "source": "https://www.mediafire.com/file/eji0k27d1ac1e4y/Pokemon+Techno+Emerald+", + "library_path": "/storage1/Emulation/roms/gba/Pokemon Techno Emerald (v2.0.6).zip", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Techno_Emerald", + "type": [ + "Difficulty", + "Expansion" + ], + "tags": [ + "hack", + "platform/gba", + "type/difficulty", + "type/expansion", + "source/discord" + ], + "summary": "Techno Emerald is a difficulty hack of Emerald utilizing the pokeemerald Expansion, and inspired by NotSuicuu's Vintage White. I released the original version of this game in January of this year to a small community but wasn't satisfied with how it turned out, so I went back and redid it to be a lot better. It features Pokemon from Generations 1-8, with the central gimmick being that the player only has access to Generation 5-8 Pokemon, barring a few. There are plenty of QOL features, including instant text, an infinite Poke Vial, a Candy Bag for leveling your Pokemon, Poke Rider, and more.", + "notability": "", + "story": "", + "features": [ + "Soft Caps for Bosses (Candy Caps)", + "Instant Text", + "Infinite Poke Vial", + "Candy Bag", + "Poke Rider", + "No EVs", + "View IVs by pressing L on stat screen", + "Slightly Altered Story", + "Mega Evolution", + "Custom Field Effects", + "Free Move Releaner", + "Type Changes", + "New Moves & Abilities", + "[Mediafire](https://www.mediafire.com/file/eji0k27d1ac1e4y/Pokemon+Techno+Emerald+(v2.0.6).zip/file)" + ], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/eji0k27d1ac1e4y/Pokemon+Techno+Emerald+" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/eji0k27d1ac1e4y/Pokemon+Techno+Emerald+(v2.0.6" + } + ] + }, + { + "stem": "Terra", + "title": "Pokémon Terra", + "platform": "GBA", + "base": "Emerald", + "version": "09/2016", + "status": "Complete", + "generation": null, + "release_date": "2016", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Terra/IMG_9367-a0430f259c21a18c.jpg", + "source": "https://www.pokeharbor.com/2021/07/pokemon-terra/", + "library_path": "—", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Terra", + "type": [ + "Difficulty" + ], + "tags": [ + "hack", + "platform/gba", + "base/emerald", + "status/complete", + "type/difficulty", + "source/discord" + ], + "summary": "Pokemon Terra Based on : Emerald You play as Brendan and you venture out to a new version of the Hoenn region. While traveling He finds out that two Evil Teams each with their own goals have been wrecking havoc in the Hoenn region. When He arrives in Xenta City He is stopped by the evil team Ander and When Brendan finds out about the evil teams He sets out to stop them and maintain peace in the Hoenn region. After traveling far and wide Brendan winds up in the new Battle Resort (Not the ORAS one) Which features tough trainers to battle. You can fight the Elite 4 in any order you like and you can roam around if you want to. -Rom link https://www.pokeharbor.com/2021/07/pokemon-terra/", + "notability": "", + "story": "", + "features": [ + "Revamped Hoenn", + "Starters are Eevee, Spheal and Larvitar", + "Two Evil teams: Team Ander (Purple) Team Cypher (Green)", + "Harder difficulty", + "Gen 4-5 Pokemon", + "The Mysterious Yiki", + "Two rivals", + "Pikachu is captureable when choosing starter" + ], + "links": [ + { + "label": "Info / thread", + "url": "https://www.pokeharbor.com/2021/07/pokemon-terra/" + } + ] + }, + { + "stem": "The Light in our Hearts", + "title": "Pokémon The Light in our Hearts", + "platform": null, + "base": null, + "version": null, + "status": null, + "generation": null, + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_The_Light_in_our_Hearts/IMG_9761-1225d386205ded9b.png", + "source": "https://ufile.io/y3e9dyji", + "library_path": "—", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_The_Light_in_our_Hearts", + "type": [], + "tags": [ + "hack", + "source/discord" + ], + "summary": "Name: Pokemon The Light in Our Hearts Created by: DrawnToast The Light in Our Hearts is a story that follows the adventure of you and Alexa, your partner, as you travel through the Tentin Region, four years after the events of Tentin Redux. Through your journey, you two will eventually discover what makes you special. The lights in both of your hearts, shining through darkness and light.", + "notability": "", + "story": "", + "features": [ + "Skilled Mode - Optional method of playing where enemy Pokémon are scaled depending on your team! Wild Pokémon are affected, too.", + "Grinding spot - A Trainer in the Battle Company in Sparkpaku City can be battled once daily with two Blissey! Great for grinding!", + "Friendship Checker - Call them anytime on the Pokégear, to check if your Pokémon's friendship levels!", + "Mach Pizza - A pizza delivery service that will deliver HP-restoring pizza anywhere you are!", + "The Move Master - Can be called anywhere and can relearn moves, delete moves, and change nicknames!", + "The Guide - Can be called any time. He will tell you where to go next if you're lost or forget where to go.", + "Advanced Pokédex - Will let you see all info on Pokémon you've caught, such as its Abilities, area, and evolution, and more!", + "Zodiac Signs - All Pokémon have Zodiac signs which can be used to help inside or outside of battle!", + "Following Pokémon - Enjoy your journey with your buddy following you!", + "Quicksave - Quicksave the game anytime, quickly! Default key is 'V'. Can be changed in Options menu.", + "Controls Menu - The in-game controls can be edited to your liking anytime!", + "Wild Pokémon may have their Hidden Abilities.", + "Many Pokémon had edits to their movesets. To view these changes, check the \"Advanced\" tab on the Pokédex!", + "Many different TMs are available now!", + "Send your Pokémon on explorations to get rare items!", + "New items, such as Tropical Drinks and Pocky!" + ], + "links": [ + { + "label": "Link", + "url": "https://ufile.io/y3e9dyji" + } + ] + }, + { + "stem": "The Pit", + "title": "Pokémon The Pit", + "platform": "GBA", + "base": "Emerald", + "version": "2.5.1", + "status": "Ongoing", + "generation": "Multi-gen", + "developer": "Team Aqua Leader Archie", + "release_date": "2025-05-20", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_The_Pit/Pokemon-The-Pit-Roguelite-Style-Hack-e3baab7af065ec6a.png", + "source": "https://www.hackdex.app/hack/the-pit", + "library_path": "roms/gba/Hacks/Pokemon - The Pit (Hack).gba", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_The_Pit", + "type": [ + "Roguelite", + "Difficulty", + "Expansion" + ], + "tags": [ + "hack", + "platform/gba", + "base/emerald", + "status/ongoing", + "type/roguelite", + "type/difficulty", + "type/expansion" + ], + "summary": "A roguelite/battle-focused descent: climb floors, draft a team, and fight escalating encounters. Built on the Emerald expansion.", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Source / info", + "url": "https://www.hackdex.app/hack/the-pit" + }, + { + "label": "Lookup", + "url": "https://duckduckgo.com/?q=Pok%C3%A9mon%20The%20Pit%20rom%20hack" + } + ] + }, + { + "stem": "The Red & Blue sequel", + "title": "Pokémon The Red & Blue sequel", + "platform": null, + "base": null, + "version": null, + "status": null, + "generation": null, + "developer": "creatures called Pokemon", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_The_Red_Blue_sequel/IMG_9875-b60d8aed44002b1a.jpg", + "source": "https://raw.githubusercontent.com/vbaemulator/GBA-Roms/main/Pokemon%20The%20Red%20%26%20Blue%20Sequel%20", + "library_path": "—", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_The_Red_Blue_sequel", + "type": [ + "Expansion" + ], + "tags": [ + "hack", + "type/expansion", + "source/discord" + ], + "summary": "Pokemon The Red & Blue Sequel", + "notability": "", + "story": "This world is inhabited far and wide by creatures called Pokemon. For some people, Pokemon are pets. Others use them for battle. There are numerous mysteries surrounding them, and they are a popular subject of research. Either way, humans live in harmony with Pokemon, and they have done so for ages. Meanwhile, three teenagers, two from Pallet Town and one from Viridian City, decide to travel through the Kanto region in order to collect the eight Kanto badges and compete in the Pokemon League Challenge.\nThe teens' names are Red, Green, and Blue, and Professor Oak has given them each a Pokemon. They have no idea what awaits them, such as the ever-increasingly dangerous crime syndicate known as Team Rocket. On their journey, the three of them will meet a variety of people, some of whom will be helpful, such as Blue's older sister Daisy. They will also encounter Kamon, a younger boy who claims to despise Team Rocket and is constantly on their tail. What are Kamon's motivations? \nWhat, more importantly, are Team Rocket's motivations?", + "features": [ + "Entire game re-scripted & re-mapped from scratch", + "210 Pokemon available", + "DS-style Pokemon sprites", + "113 new moves from Gen 4 & 5", + "Physical/Special split", + "Redone music", + "New movesets based closely on B2/W2 movesets", + "Map layouts based off of HG/SS", + "[Download Link](https://raw.githubusercontent.com/vbaemulator/GBA-Roms/main/Pokemon%20The%20Red%20%26%20Blue%20Sequel%20(v2.1.2).zip)" + ], + "links": [ + { + "label": "Download", + "url": "https://raw.githubusercontent.com/vbaemulator/GBA-Roms/main/Pokemon%20The%20Red%20%26%20Blue%20Sequel%20" + }, + { + "label": "Download", + "url": "https://raw.githubusercontent.com/vbaemulator/GBA-Roms/main/Pokemon%20The%20Red%20%26%20Blue%20Sequel%20(v2.1.2" + } + ] + }, + { + "stem": "The Teal Mask", + "title": "Pokémon The Teal Mask", + "platform": "GBA", + "base": "FireRed", + "version": null, + "status": null, + "generation": "Gen III", + "developer": "TeamSolga", + "release_date": "2023-08-19", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_The_Teal_Mask/FB_IMG_1719343354775-3c17db243fd47960.jpg", + "source": "https://www.mediafire.com/file/z1rq2qekiq4vsd1/Pokemon_-_The_Teal_Mask_GBA_1.5.gba/file", + "library_path": "/storage1/Emulation/roms/gba/Pokemon - The Teal Mask GBA 1.5.gba", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_The_Teal_Mask", + "type": [], + "tags": [ + "hack", + "platform/gba", + "base/firered", + "source/discord" + ], + "summary": "In this sequel to Pokémon Scarlet & Violet, you'll find yourself in the land of Teal Mask. You will only know the new Pokémon seen so far, such as: Okidogi, Fezandipiti and Munkidori.\n\nThis game is the first small sequel to Scarlet & Violet GBA, after The Teal Mask GBA. Indigo Disk GBA will also arrive, which will be longer and more substantial than this chapter.", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/z1rq2qekiq4vsd1/Pokemon_-_The_Teal_Mask_GBA_1.5.gba/file" + } + ] + }, + { + "stem": "The Unown King", + "title": "Pokémon The Unown King", + "platform": "GBA", + "base": "Emerald", + "version": null, + "status": null, + "generation": "Gen III", + "developer": "Clessidra", + "release_date": "2025-11-04", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_The_Unown_King/UnownKingTitleScreen_1-b1b61373d6aad6dc.gif", + "source": "https://mega.nz/file/1LVESKiL#Ot8epVk1Lir0Tuzcvt1Pzb_11UMOQkyBBsmMH7DuHIs", + "library_path": "/storage1/Emulation/roms/gba/the-unown-king.gba", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_The_Unown_King", + "type": [ + "Expansion" + ], + "tags": [ + "hack", + "platform/gba", + "base/emerald", + "type/expansion", + "source/discord" + ], + "summary": "**PokémonThe Unown King** is a GBA ROM Hack by Clessidra based on Pokémon Emerald. It was released on November 4, 2025", + "notability": "", + "story": "", + "features": [ + "This ROM hack might appear grindy at first glance. Depending on how you approach it, it can be as well as not. I promise, the cheese factor is high.", + "After obtaining each HM, the corresponding move can be used outside of battle even if a Pokémon hasn't learned it, as long as it can learn it.", + "Some bosses, instead of being traditional trainers with full teams, consist of a single Pokémon with a thick health bar.", + "The overworld is clearly inspired by the Gen 5 games.", + "Almost the entire soundtrack is composed of remixed tracks from Final Fantasy VIII.", + "Reading NPC dialogue is extremely important, especially early on. It can literally save you.", + "There are around 100 obtainable Pokemon, almost all from Generations 1-5, with only a couple of exceptions.", + "NOTE**", + "English is not the developer's first language (their native language is Italian, and this is technically an Italian ROM hack). They made every effort to ensure the dialogue is as correct and polished as possible, but some errors may still remain." + ], + "links": [ + { + "label": "Download", + "url": "https://mega.nz/file/1LVESKiL#Ot8epVk1Lir0Tuzcvt1Pzb_11UMOQkyBBsmMH7DuHIs" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/5pijjpfsw1e6pb9/the-unown-king.zip/file" + }, + { + "label": "Download", + "url": "https://mega.nz/file/1LVESKiL" + } + ] + }, + { + "stem": "The Wooper Who Saved Christmas", + "title": "Pokémon The Wooper Who Saved Christmas", + "platform": "GBA", + "base": null, + "version": null, + "status": "Beta", + "generation": "Gen III", + "developer": "Joexv", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_The_Wooper_Who_Saved_Christmas/Pokemon-The-Wooper-Who-Saved-Christmas-2-bed294fc53048b08.png", + "source": "https://www.mediafire.com/file/5jyzsifcwzi120b/Pokemon+The+Wooper+Who+Saved+Christmas+", + "library_path": "/storage1/Emulation/roms/gba/Pokemon The Wooper Who Saved Christmas (Beta 3).zip", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_The_Wooper_Who_Saved_Christmas", + "type": [ + "Difficulty" + ], + "tags": [ + "hack", + "platform/gba", + "status/beta", + "type/difficulty", + "source/discord" + ], + "summary": "Catalogued from the Discord ROM-hack archive. See links below.", + "notability": "", + "story": "One fateful Christmas night, a Wooper was getting ready for Santa's arrival. As Santa was leaving his trustworthy Delibrid was kidnapped by a man dressed all in black! Now its up to you to save him! Play as the legendary Wooper who saved Christmas during the times of the Pokemon War!", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/5jyzsifcwzi120b/Pokemon+The+Wooper+Who+Saved+Christmas+" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/5jyzsifcwzi120b/Pokemon+The+Wooper+Who+Saved+Christmas+(Beta+3" + } + ] + }, + { + "stem": "Theta Emerald EX", + "title": "Pokémon Theta Emerald EX", + "platform": "GBA", + "base": "Emerald", + "version": "EX", + "status": "Complete", + "generation": "Gen 1–6 mons", + "source": "https://www.pokecommunity.com/threads/pokemon-theta-emerald-ex.366617/", + "library_path": "roms/gba/Hacks/Pokemon - Theta Emerald EX (Hack).gba", + "play_status": "Unplayed", + "type": [ + "Expansion", + "Vanilla+" + ], + "tags": [ + "hack", + "platform/gba", + "base/emerald", + "status/complete", + "type/expansion", + "type/vanilla+" + ], + "summary": "Classic 'all 800+ mons in Emerald' hack — Megas, Fairy type, and the full dex obtainable within Hoenn's story.", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Source / info", + "url": "https://www.pokecommunity.com/threads/pokemon-theta-emerald-ex.366617/" + }, + { + "label": "Lookup", + "url": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Theta%20Emerald%20EX%20rom%20hack" + } + ] + }, + { + "stem": "Theta Emerald The Last Dance", + "title": "Pokémon Theta Emerald The Last Dance", + "platform": "GBA", + "base": "Emerald", + "version": null, + "status": null, + "generation": "Gen III", + "developer": "LCCoolJ95", + "release_date": "2023-10-14", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Theta_Emerald_The_Last_Dance/Pokemon-Theta-Emerald-The-Last-Dance-9fbe7aecf9992370.png", + "source": "https://www.mediafire.com/file/jvnlf1mpwhjlmta/Pokemon+Theta+Emerald+The+Last+Dance", + "library_path": "/storage1/Emulation/roms/gba/Pokemon Theta Emerald The Last Dance(Completo).gba", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Theta_Emerald_The_Last_Dance", + "type": [], + "tags": [ + "hack", + "platform/gba", + "base/emerald", + "source/discord" + ], + "summary": "Pokemon Theta Emerald The Last Dance is a GBA ROM Hack by LCCoolJ95 based on Pokemon Emerald. And it is now available to download. It was last updated on October 14, 2023.", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/jvnlf1mpwhjlmta/Pokemon+Theta+Emerald+The+Last+Dance" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/jvnlf1mpwhjlmta/Pokemon+Theta+Emerald+The+Last+Dance(Completo" + } + ] + }, + { + "stem": "This Gym of mine", + "title": "Pokémon This Gym of mine", + "platform": null, + "base": null, + "version": null, + "status": null, + "generation": null, + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_This_Gym_of_mine/mbM7yzy-9d4c57b09d694eb0.png", + "source": "https://www.pokecommunity.com/threads/pokemon-this-gym-of-mine-rank-up-edition.527424/", + "library_path": "—", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_This_Gym_of_mine", + "type": [], + "tags": [ + "hack", + "source/discord" + ], + "summary": "You are the newest Gym Leader for Umbal City! Battle Trainers that challenge you, spruce up the city, and help out the citizens! How you do it is all up to you! https://www.pokecommunity.com/threads/pokemon-this-gym-of-mine-rank-up-edition.527424/", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Info / thread", + "url": "https://www.pokecommunity.com/threads/pokemon-this-gym-of-mine-rank-up-edition.527424/" + } + ] + }, + { + "stem": "Thyme", + "title": "Pokémon Thyme", + "platform": "PC", + "base": null, + "version": "Completed", + "status": "Complete", + "generation": "Joiplay/RPGXP", + "developer": "Hukon", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Thyme/IMG_9978-3e222edd8b45d9ce.jpg", + "source": "https://www.mediafire.com/file/v65c5upccy3s3j5/Pok%25C3%25A9mon_Thyme.zip/file", + "library_path": "/storage1/labdata/romhacks/library/Pokemon_Thyme/", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Thyme", + "type": [], + "tags": [ + "hack", + "platform/pc", + "status/complete", + "source/discord" + ], + "summary": "It's a fan-made game on PC where you can travel through the time. Hukon makes it. You are a trainer on an island, you can explore that island with some sidequests. Some Pokemon have had their evolution requirements slightly changed. I don't know more about that. Well, I feel it's a good game. It's a PC game in English. And Now, Let's play! Following the direction of the shout, you find a Strange Charm. Little do you know that this charm will be the centre (or like, somewhere close to it at least) of an adventure of thymely proportions! Travel through two versions of Jammest Island - past and present to stop an eccentric thief from the past and a not very interesting historian from the present from catching Celebi and causing the world as we know it to fall into chaos! Or, at least, that's what I assume would happen if Richard got it. Features:
Thyme travel I mean time travel haha get it?? You can travel through time. 
One entire island to explore. 
Some cheeky sidequests. 
Richard is a whole feature unto himself. 
Certain Pokémon have had their evolution requirements slightly changed so you can more realistically get them without grinding for several hours. ## Download Links [Download Link Mediafire](https://www.mediafire.com/file/v65c5upccy3s3j5/Pok%25C3%25A9mon_Thyme.zip/file) [Download Link GDrive](https://drive.google.com/file/d/0B5wO_dg9Q94NYV9VeXpHX1VNOG8/view?usp=drivesdk&resourcekey=0-lpteRrjtPKGN-1qykF0Ilg)", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/v65c5upccy3s3j5/Pok%25C3%25A9mon_Thyme.zip/file" + }, + { + "label": "Download", + "url": "https://drive.google.com/file/d/0B5wO_dg9Q94NYV9VeXpHX1VNOG8/view?usp=drivesdk&resourcekey=0-lpteRrjtPKGN-1qykF0Ilg" + } + ] + }, + { + "stem": "Too Many Types 2", + "title": "Pokémon Too Many Types 2", + "platform": "GBA", + "base": "Emerald", + "version": null, + "status": null, + "generation": "Gen III", + "developer": "kobazco", + "release_date": "2025-12-20", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Too_Many_Types_2/pokemon_too_many_types_2-1024x576-c981d90a7c8cc0e2.jpg", + "source": "https://www.mediafire.com/file/7vm9adbu3iz32yl/Too+Many+Types+2+", + "library_path": "/storage1/Emulation/roms/gba/Too Many Types 2 (v1.0.5).gba", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Too_Many_Types_2", + "type": [ + "Expansion", + "New Experience" + ], + "tags": [ + "hack", + "platform/gba", + "base/emerald", + "type/expansion", + "type/newexperience", + "source/discord" + ], + "summary": "Two years after the events of Too Many Types 1 (so basically just Pokémon Emerald), a young boy/girl moves to Lilycove town. This is you! Start out on your adventure and see how Hoenn has been affected by the Kyogre/Groudon disaster two years ago, and meet many different new types!", + "notability": "", + "story": "", + "features": [ + "Too Many Types 2 is a sequel to our silly little reskin hack, Too Many Types. This time around, the Hoenn region has undergone many different changes to make this a unique experience!", + "A total of 80 types! (30 new to TMT2!)", + "Pokémon can have up to 3 types", + "A new story featuring a new villainous team", + "New type boosting icons for every new type", + "131 new moves -17 new mega evolutions", + "Custom post game", + "Regional dex of 398", + "Dexnav", + "Autoheal from modern Pokémon games by pressing L in the party select screen", + "Features, including, but not limited to:", + "Soft Level Caps", + "Level Scaling", + "Randomized trainers based on trainer classes to show off new types", + "Gym Leaders, Rivals, Elite Four, etc are not randomized.", + "No EVs", + "Infinite & Cap Candy", + "Pressing L to see enemy info in battle", + "More informations**", + "[Document](https://docs.google.com/spreadsheets/d/1lclbDiHdUnETmFQRm0v_capEqSJaVBG2OsLuOJ6L9Kk/htmlview?usp=sharing&pru=AAABm2Bb6ak*DgqFr22MwEogUbgsPYEX1g#)" + ], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/7vm9adbu3iz32yl/Too+Many+Types+2+" + }, + { + "label": "Guide / docs", + "url": "https://docs.google.com/spreadsheets/d/1lclbDiHdUnETmFQRm0v_capEqSJaVBG2OsLuOJ6L9Kk/htmlview?usp=sharing&pru=AAABm2Bb6ak*DgqFr22MwEogUbgsPYEX1g#" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/7vm9adbu3iz32yl/Too+Many+Types+2+(v1.0.5" + } + ] + }, + { + "stem": "Too Many Types", + "title": "Pokémon Too Many Types", + "platform": "GBA", + "base": "Emerald", + "version": "1.6", + "status": null, + "generation": null, + "release_date": "2023", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Too_Many_Types/pokemon-too-many-types-v0-aq0j5ly76yob1-58695d052dc24ac1.png", + "source": "https://www.pokeharbor.com/2023/09/pokemon-too-many-types/", + "library_path": "—", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Too_Many_Types", + "type": [], + "tags": [ + "hack", + "platform/gba", + "base/emerald", + "source/discord" + ], + "summary": "**Creator**: Kobazco, marinepez, & CannonsCreative **Version**: 1.6 **Hack of**: Emerald **Updated**: September 17, 2023 [Source Website](https://www.pokeharbor.com/2023/09/pokemon-too-many-types/) [Documentation](https://www.pokeharbor.com/2023/09/pokemon-too-many-types/) [Discord](https://discord.com/invite/Wf42mHRwWq) # __Description__ > Pokémon Emerald with almost 50 new added types to the game, such as Gamer, Smash, Furry, Magic, Sus, & many more! **__Gameplay Changes__** - Added 44 types, for a total of 62. - Created 118 new moves. -Changed types of 180 existing moves. -Pokemon can have up to three types. -Created a regional dex of 295 Pokemon, all with new types **__Story Changes__** - Gym Leaders and E4 members use new types. - All non-gym, non-rival trainers have randomized teams. Randomization is scaled based on similar strength. - New cutscenes to obtain certain event Pokemon, and Gen8 Fossil Pokemon. **__QoL Changes__** - Added infinite Rare Candy key item. - Added Escape Rope key item. - Press L in battle to view enemy party. - Pokemon can relearn moves from party screen. - Latest generation mechanics and Pokemon stats. - Ability patch and ability capsule can be purchased at most marts. - Evolution methods changed slightly. - Trade Evolutions evolve with Link Cable Item. - Trade Evolutions w/ item (Like Slowpoke to Slowking with Kings Rock) only require the item like evolution stones. - All Evo and Battle items can be bought at Lilycove Dept. Store. __**Special Type Interactions**__ - Dream type cannot be put to sleep. - Dance type cannot be paralyzed. - Fluffy type cannot be frozen. - Silly type cannot be confused. - Bad type cannot be burned. - Gamer type is immune to sandstorm. - Boring type raises spDef on turns where it fails to attack. - Pikachu type is the only type that can use Pikachu moves. - Reverse type reverses the type effectiveness of any moves hitting the Pokemon. - Type type doubles type modifiers.", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Info / thread", + "url": "https://www.pokeharbor.com/2023/09/pokemon-too-many-types/" + }, + { + "label": "Link", + "url": "https://discord.com/invite/Wf42mHRwWq" + } + ] + }, + { + "stem": "Touhoumon Another World", + "title": "Pokémon Touhoumon Another World", + "platform": "GBA", + "base": null, + "version": null, + "status": null, + "generation": null, + "release_date": "2024", + "banner": "https://romhacks-files.ginnoir.com/_meta/Touhoumon_Another_World/FB_IMG_1704305717715-19712284c1fea799.jpg", + "source": "https://www.pokeharbor.com/2023/11/touhoumon-another-world-revised/", + "library_path": "—", + "play_status": "Unplayed", + "scrape_dir": "Touhoumon_Another_World", + "type": [ + "Expansion", + "QoL" + ], + "tags": [ + "hack", + "platform/gba", + "type/expansion", + "type/qol", + "source/discord" + ], + "summary": "**Creator:** AichiyaSANAE & Nyomu **Type:** GBA **Last Updated:** August 6, 2024", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Info / thread", + "url": "https://www.pokeharbor.com/2023/11/touhoumon-another-world-revised/" + } + ] + }, + { + "stem": "Tourmaline", + "title": "Pokémon Tourmaline", + "platform": "GBA", + "base": "Emerald", + "version": "1.1.1", + "status": "Ongoing", + "generation": "Multi-gen", + "source": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Tourmaline%20rom%20hack", + "library_path": "roms/gba/Hacks/Pokemon - Tourmaline (Hack).gba", + "play_status": "Unplayed", + "type": [ + "New Experience", + "Expansion" + ], + "tags": [ + "hack", + "platform/gba", + "base/emerald", + "status/ongoing", + "type/newexperience", + "type/expansion" + ], + "summary": "A new-region adventure on the Emerald expansion.", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Lookup", + "url": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Tourmaline%20rom%20hack" + } + ] + }, + { + "stem": "Transform", + "title": "Pokémon Transform", + "platform": "GBA", + "base": null, + "version": null, + "status": null, + "generation": null, + "release_date": "2025", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Transform/IMG_9266-b362324679fdba65.png", + "source": "https://share.eu.internxt.com/sh/file/Pm3zCcZeRCqXkUVY8iRKCw/qK4OcHw1", + "library_path": "—", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Transform", + "type": [], + "tags": [ + "hack", + "platform/gba", + "source/discord" + ], + "summary": "**Creator:** Phantonomy & Zatsu **Type:** GBA **Last Updated:** October 3, 2025", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://share.eu.internxt.com/sh/file/Pm3zCcZeRCqXkUVY8iRKCw/qK4OcHw1" + } + ] + }, + { + "stem": "Two", + "title": "Pokémon Two", + "platform": "GBA", + "base": "Emerald", + "version": null, + "status": null, + "generation": null, + "developer": "Shachar700", + "release_date": "2025-12-13", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Two/IMG_9611-6e75b70e25e54504.webp", + "source": "https://secure.eu.internxt.com/sh/file/SfUXrD1jRPqccWL9zfgxgQ/dMu0mnkJ", + "library_path": "—", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Two", + "type": [], + "tags": [ + "hack", + "platform/gba", + "base/emerald", + "source/discord" + ], + "summary": "POKéMON The Wooloo & Obstagoon (TWO) is a fable/myth based on The Wolves & the Sheep. Solve puzzles swiftly, switching roles between Obstagoon and Wooloo. Can you beat the run fast and faultlessly?", + "notability": "", + "story": "In a quiet pasture somewhere in Galar, a flock of Wooloo lived in peace. They grazed the grassy fields and wandered happily, always protected by their faithful dog guardians such as Zigzagoon, Houndour, and the mighty Arcanine. But lurking in the shadows was Obstagoon, waiting for a chance to strike.\n\nThey approached the Wooloo with sly words: \"Why all this tension between us? If not for those overprotective guardians, we could all live together as friends.\" Easily deceived, the Wooloo were persuaded to send their guardians away. And that very evening, the Obstagoon had the grandest feast of their lives. Do not give up friends for foes.", + "features": [ + "New battle engine option: Sway (25% chance per choice to auto win combat)", + "New puzzles", + "New graphics", + "New maps", + "New scripts", + "New song", + "New stats tracked", + "Swap roles" + ], + "links": [ + { + "label": "Download", + "url": "https://secure.eu.internxt.com/sh/file/SfUXrD1jRPqccWL9zfgxgQ/dMu0mnkJ" + } + ] + }, + { + "stem": "Ultimate Fusion", + "title": "Pokémon Ultimate Fusion", + "platform": "GBA", + "base": null, + "version": null, + "status": null, + "generation": "Gen III", + "developer": "Migueon22", + "release_date": "2022", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Ultimate_Fusion/pokemon-ultimate-fusion-862ce6914a6fd7d6.jpg", + "source": "https://www.mediafire.com/file/cnb0107itrenprf/Pokemon+Ultimate+Fusion+", + "library_path": "/storage1/Emulation/roms/gba/Pokemon Ultimate Fusion.gba", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Ultimate_Fusion", + "type": [], + "tags": [ + "hack", + "platform/gba", + "source/discord" + ], + "summary": "Begin your adventure in Littleroot town, where you save the region's professor. Your reward for saving him, the same as in the original Pokemon Emerald, is a starter pokemon.\n\nBut… the starters are all fusions of 2 different Pokemon! And the same goes for all the other Pokemon in the game. Pokemon Ultimate Fusion is basically an Emerald Hack with Fusion Pokémon instead of normal ones and some Minor Changes to improve your experience.", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/cnb0107itrenprf/Pokemon+Ultimate+Fusion+" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/cnb0107itrenprf/Pokemon+Ultimate+Fusion+(1" + } + ] + }, + { + "stem": "Ultra Shiny Gold Sigma", + "title": "Pokémon Ultra Shiny Gold Sigma", + "platform": "GBA", + "base": "FireRed", + "version": null, + "status": null, + "generation": "Gen III", + "developer": "Alex Sanchez", + "release_date": "2024", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Ultra_Shiny_Gold_Sigma/IMG_6560-5e158a8c4e21baac.webp", + "source": "https://www.mediafire.com/file/zva1vhp2apb30og/Pokemon+Ultra+Shiny+Gold+Sigma+Completo+1.5.0.gba/file", + "library_path": "/storage1/Emulation/roms/gba/Pokemon Ultra Shiny Gold Sigma Completo 1.5.0.gba", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Ultra_Shiny_Gold_Sigma", + "type": [ + "Expansion" + ], + "tags": [ + "hack", + "platform/gba", + "base/firered", + "type/expansion", + "source/discord" + ], + "summary": "Pokemon Ultra Shiny Gold Sigma is a Rom Hack based on Fire Red. It takes place in the Gold, Silver and Crystal games with features from multiple pokemon games. A developed and expanded story line with new challenges waiting. A journey starting in Johto which leads you to explore new interactions in different regions, such as Kanto, Orange islands, Alola and Hoenn. A recommended game for players new to romhacks.", + "notability": "", + "story": "The story takes place in the original Gold, Silver and Crystal games with modern game features. The story expands to different regions where you find more pokemons, characters and challenges to face.", + "features": [ + "Pokemons from gen 1-9", + "New characters", + "New places, history and story", + "Mega evolution and Terastallize", + "New items", + "New battle stations and battle mechanics", + "Improved graphics", + "New music", + "Multiple colors", + "New time mechanics", + "Weather and effects added", + "And much more", + ":Download: [**Download Link**](https://www.mediafire.com/file/zva1vhp2apb30og/Pokemon+Ultra+Shiny+Gold+Sigma+Completo+1.5.0.gba/file)" + ], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/zva1vhp2apb30og/Pokemon+Ultra+Shiny+Gold+Sigma+Completo+1.5.0.gba/file" + } + ] + }, + { + "stem": "Ultra Something", + "title": "Pokémon Ultra Something", + "platform": null, + "base": null, + "version": null, + "status": null, + "generation": null, + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Ultra_Something/IMG_0135-5c0a4f2430e1c9e6.webp", + "source": "https://secure.eu.internxt.com/sh/file/Ql8dJZfDTbeBMh6HRfEf5A/_DWN1h8_", + "library_path": "—", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Ultra_Something", + "type": [ + "Difficulty", + "Expansion" + ], + "tags": [ + "hack", + "type/difficulty", + "type/expansion", + "source/discord" + ], + "summary": "Pokemon Ultra Something Dev: Big Baz", + "notability": "", + "story": "", + "features": [ + "Pokémon changes", + "Nearly every Pokémon has had their level-up moveset overhauled.", + "They now learn more moves by level-up than before, and their movesets can include moves they can't normally learn in USUM, but can learn in other games.", + "Wild Pokémon changes", + "You can obtain all 807 Pokémon in this hack, so naturally, wild Pokémon are a lot more varied than in vanilla USUM.", + "Every non-Legendary/Mythical Pokémon should be available before the Pokémon League, and even among the Legendary/Mythical Pokémon, there are only about 20 that can't be caught before the postgame.", + "Trainer/Trial changes", + "The game is generally more difficult than the vanilla games, though not ridiculously so.", + "All Trainers are notably more competent, having better AI and maxed IVs, carrying more Pokémon on average, and using a greater variety of Pokémon.", + "Shop item changes", + "All Poké Marts now sell Adrenaline Orbs right after you complete your first Trial.", + "The Route 8 Poké Mart sells most Evolution items, while Evolution stones can be purchased in Konikoni City; some are sold in Olivia's jewellery store, while others are sold at the Poké Mart.", + "and many more …", + "## Download Links", + "[Download Link](https://secure.eu.internxt.com/sh/file/Ql8dJZfDTbeBMh6HRfEf5A/_DWN1h8_)" + ], + "links": [ + { + "label": "Download", + "url": "https://secure.eu.internxt.com/sh/file/Ql8dJZfDTbeBMh6HRfEf5A/_DWN1h8_" + } + ] + }, + { + "stem": "Unbound", + "title": "Pokémon Unbound", + "platform": "GBA", + "base": "FireRed", + "version": "2.1.1.1", + "status": "Complete", + "generation": "Gen 1–8 (post-game)", + "developer": "Skeli (Skeli Games)", + "release_date": "2022-11-08", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Unbound/pokemon-unbound-5d630366e3975a52.jpg", + "homepage": "https://www.pokecommunity.com/threads/pok%C3%A9mon-unbound-completed.382178/", + "source": "https://www.mediafire.com/file/rq72yc9dyj9r9a5/Pokemon_Unbound_2.1.1.gba/file", + "library_path": "/storage1/Emulation/roms/gba/Pokemon Unbound 2.1.1.gba", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Unbound", + "type": [ + "New Experience", + "Difficulty" + ], + "tags": [ + "hack", + "platform/gba", + "base/firered", + "status/complete", + "type/newexperience", + "type/difficulty", + "source/discord" + ], + "summary": "Pokémon Unbound is widely regarded as one of the most polished FireRed hacks ever made. Developed by Skeli, it's set in the original Borrius region with a complex, war-torn plot, a Gen-8-level custom battle engine, four selectable difficulty modes (Easy to Insane), a mission system, Max Raids, and an enormous pile of quality-of-life features. Generations 1–7 are available, with some Gen 8 in the post-game.", + "notability": "A benchmark for modern GBA hacking — routinely tops 'best ROM hack' lists for its production values, difficulty options and post-game depth.", + "story": "", + "features": [ + "Original Borrius region with a deep, war-driven story", + "Custom battle engine on par with Gen 8 mechanics", + "Four difficulty modes — Easy, Normal, Hard, Insane (advanced AI)", + "Mission system and Max Raid Dens", + "QoL galore: unlimited bag, auto-run, DexNav, daily raids", + "Extensive post-game — battle facilities, missions, legendaries", + "Gen 1–7 obtainable, with select Gen 8 in post-game" + ], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/rq72yc9dyj9r9a5/Pokemon_Unbound_2.1.1.gba/file" + } + ] + }, + { + "stem": "Unbreakable Ties", + "title": "Pokémon Unbreakable Ties", + "platform": null, + "base": null, + "version": null, + "status": null, + "generation": null, + "release_date": "2024", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Unbreakable_Ties/pokemon-unbreakable-ties-4423d85cdb0bb75c.jpg", + "source": "https://www.pokeharbor.com/2024/11/pokemon-unbreakable-ties/", + "library_path": "—", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Unbreakable_Ties", + "type": [], + "tags": [ + "hack", + "source/discord" + ], + "summary": "https://www.pokeharbor.com/2024/11/pokemon-unbreakable-ties/", + "notability": "", + "story": "", + "features": [ + "Classic Gym Challenge: Travel the Akebia region to collect 8 Gym Badges and compete to become Champion. Currently, the beta includes 6 Gym Leaders and 2 Rival Story Arcs.", + "Pokemon Gens 1 to 9", + "Animated Sprites: Pokémon have entry and exit animations during battles for a more dynamic experience.", + "Multiple Playable Characters: Your rivals play a bigger role, with unique story arcs where you'll control their character and Pokémon teams.", + "Achievements and Side Quests: Over 55 side quests and achievements to discover as you explore the Akebia region.", + "New Mechanics: Includes a collection and mining mechanic to earn exclusive rewards.", + "Enhanced Graphics and Tiles: Features updated visuals from Generation 5 (Black/White) with some Gen 4 (Diamond/Pearl) elements.", + "Following Pokémon:", + "Custom Character Designs and Mugshots: Unique, original character designs and mugshots that display various expressions during dialogue. Pokémon also have mugshots with unique backgrounds.", + "Story and Scene Detail: Known for strong story elements, character development, and well-crafted scenes.", + "Adjusted EXP and Level Cap: EXP gain is set at 70-80% of normal, and there's a level cap keeping you one level above each Gym Leader's top Pokémon.", + "Internal Clock and Day/Night Cycles: An in-game clock (20 minutes per in-game day) features changing color tones for the time of day.", + "Advanced Menu Functions: Includes route encounters, flight system, achievements, and more for a complete menu experience.", + "Multiple Save Files: Keep up to 8 different save files, allowing multiple playthroughs and experiments." + ], + "links": [ + { + "label": "Info / thread", + "url": "https://www.pokeharbor.com/2024/11/pokemon-unbreakable-ties/" + } + ] + }, + { + "stem": "Unova Emerald", + "title": "Pokémon Unova Emerald", + "platform": "GBA", + "base": null, + "version": null, + "status": null, + "generation": null, + "release_date": "2023", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Unova_Emerald/IMG_9602-057159a3d155b2b7.webp", + "source": "https://www.pokeharbor.com/2023/04/pokemon-unova-emerald/", + "library_path": "—", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Unova_Emerald", + "type": [ + "QoL" + ], + "tags": [ + "hack", + "platform/gba", + "type/qol", + "source/discord" + ], + "summary": "**Creator:** Jaizu **Type:** GBA **Last Updated:** July 7, 2023", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Info / thread", + "url": "https://www.pokeharbor.com/2023/04/pokemon-unova-emerald/" + } + ] + }, + { + "stem": "Uranium", + "title": "Pokémon Uranium", + "platform": null, + "base": null, + "version": null, + "status": null, + "generation": null, + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Uranium/pokemon_uranium_fi-dea83ecc017e53e8.png", + "source": "https://mega.nz/file/gh82ST6S#makZr_hsZAcMOIKSEPUwejVJ_N4OW7Mk9wEBlWIoIG0", + "library_path": "—", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Uranium", + "type": [ + "Difficulty", + "Expansion" + ], + "tags": [ + "hack", + "type/difficulty", + "type/expansion", + "source/discord" + ], + "summary": "> The game takes place in the Tandor region, where the player must collect 8 Gym Badges in order to compete in the Tandor Regional Championship. Along the way, the player must also fill up their PokéDex with the entries of more than 190 different species of Pokémon. > > In Pokemon Uranium, obtaining your Starter Pokemon offers a unique twist. Rather than the traditional three choices, Uranium borrows a page from the Pokémon Mystery Dungeon series. You'll engage in a questionnaire, and your responses will dictate which Starter Pokemon becomes yours. This means that to secure your desired Pokemon, you can consult a guide for the correct answers or embark on a trial-and-error quest. ## __Features__ - Nuclear Type - Over 150+ Original Fakemon. - Pokemon Trainer Test (Starter Pokemon). - Randomizer and Nuzlocke Mode. - Mega Evolution. - 8 gyms, 13 towns, and 7 optional Side quests. - PokePod. - Poké Radar, a tool to search for special and shiny Pokémon. - Battle or trade with your friends in the Lobby. - Pokemon Speech Translator. - Mystery Gifts. - Several New Moves and Abilities. - GTS, Wonder Trade, and Virtual Trainer. ## :Download: [Joiplay Download](https://mega.nz/file/gh82ST6S#makZr_hsZAcMOIKSEPUwejVJ_N4OW7Mk9wEBlWIoIG0) ## :Download: [PC Download](https://mega.nz/file/Qg1x2TSJ#BQ_NU6_VqqYEXEIXydq6OdCXfXGePiK7U_aftriRqQI)", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://mega.nz/file/gh82ST6S#makZr_hsZAcMOIKSEPUwejVJ_N4OW7Mk9wEBlWIoIG0" + }, + { + "label": "Download", + "url": "https://mega.nz/file/Qg1x2TSJ#BQ_NU6_VqqYEXEIXydq6OdCXfXGePiK7U_aftriRqQI" + }, + { + "label": "Download", + "url": "https://mega.nz/file/gh82ST6S" + }, + { + "label": "Download", + "url": "https://mega.nz/file/Qg1x2TSJ" + } + ] + }, + { + "stem": "Utopia", + "title": "Pokémon Utopia", + "platform": null, + "base": null, + "version": null, + "status": null, + "generation": "Joiplay/RPGXP", + "release_date": "2026", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Utopia/IMG_9626-3f5390cee4061874.png", + "source": "https://drive.google.com/drive/folders/1bU9T6GXL_MbkICrUyqyrU9ulhWJDkjcN", + "library_path": "/storage1/labdata/romhacks/library/Pokemon_Utopia/", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Utopia", + "type": [ + "Difficulty", + "Expansion" + ], + "tags": [ + "hack", + "type/difficulty", + "type/expansion", + "source/discord" + ], + "summary": "Release 27/02/2026 V 1.0.1 INFO: • Extensive Quality of Life improvements • Custom AI /UI • Custom Battle System • Many unique features • Custom Region • Custom Music • Pokémon up to Gen 9 • Moves up to Gen 9 • Crit rate: 1/24 • Crit damage: x1.5 • EVs removed • Permanent weather conditions • Permanent terrain effects • Permanent field effects • Mobile PC access • Trade and friendship evolutions removed (they now evolve normally!) • Gender-based evolutions removed (no longer depends on male or female!) • Adjusted Pokémon, moves, and abilities • Slightly adjusted Pokémon types (only a few this time!) • Trainers have max IVs • Trainers can use HM/TM moves • Trainers can use competitive items • Trainers use competitive movesets • Most TMs are reusable (some exceptions!) • Custom trainers added • Custom trainers give bonus rewards • Competitive items available in the shop • Entirely new TMs and items • Repel system works like in Gen 5 and later • Shiny rate with Shiny Charm is 1/500 (optional to obtain!) • High level curve", + "notability": "", + "story": "", + "features": [ + "Battle Style is locked to Set (in Hard Mode & Kaizo)", + "The Bag cannot be used during Trainer battles (in Hard Mode & Kaizo)", + "Gym Trainers and Gym Leaders heal your party before battle", + "Built-in Level Caps, choose between None, Soft, or Hard Caps & Game Modes (accessible via the console in the player's room)", + "Built-in Randomizer", + "HMs no longer need to be taught — having the related badge is enough", + "Pre-status check at the Pokémon Center (free of charge)", + "Starter selection up to Gen 9", + "Playable protagonists: Red, Leaf, May, and Brendan", + "Poké Vial accessible from the party menu (new mechanic for Hard Mode)", + "And more ..", + "Utopia mode", + "Easy Mode: 5.5/10", + "Normal Mode: 6.5/10", + "Hard Mode: 7.5/10" + ], + "links": [ + { + "label": "Download", + "url": "https://drive.google.com/drive/folders/1bU9T6GXL_MbkICrUyqyrU9ulhWJDkjcN" + }, + { + "label": "Download", + "url": "https://drive.google.com/file/d/1Mni5A5BpYwDwwdubl5NImnELrMGhZkC0/view?usp=drivesdk" + } + ] + }, + { + "stem": "Valiant", + "title": "Pokémon Valiant", + "platform": "GBA", + "base": "Emerald", + "version": "4.2.3", + "status": "Ongoing", + "generation": "Multi-gen", + "developer": "Shahar", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Valiant/0FCCE31A-A3F0-49E1-AF42-40411594CB97-f2627b1aa9a6bd0c.jpg", + "source": "https://www.hackdex.app/hack/pokemon-valiant", + "library_path": "roms/gba/Hacks/Pokemon - Valiant (Hack).gba", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Valiant", + "type": [ + "New Experience", + "Expansion" + ], + "tags": [ + "hack", + "platform/gba", + "base/emerald", + "status/ongoing", + "type/newexperience", + "type/expansion" + ], + "summary": "An original-region story hack on the Emerald expansion with custom characters and content.", + "notability": "", + "story": "", + "features": [ + "Dive into the new world of LAVAN, a custom brand new region based on the LEVANT region. Lavan region is filled with new cities, routes, caves and a lot of new surprises.", + "Enjoy a rich storyline revolving around the mysterious the time travelling mythical Pokemon CELEBI.", + "Pokemon availability till gen 3.", + "Become the champion in the Lavan region then head next to the new HOEEN REGION showcasing new towns, new exciting challenges and a brand new plot.", + "Expect a bit increased difficulty comparing to vanilla games but it's fair, not so easy neither too hard.", + "Fairy type included.", + "The game has some new moves with the old one's.", + "Travel through time! Learn the history of the region and of your own.", + "Sacred places located in different parts of the region has Legendary visiting so be prepared & Classic old emerald soundtrack merged in a new story and region." + ], + "links": [ + { + "label": "Source / info", + "url": "https://www.hackdex.app/hack/pokemon-valiant" + }, + { + "label": "Lookup", + "url": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Valiant%20rom%20hack" + } + ] + }, + { + "stem": "Vanguard", + "title": "Pokémon Vanguard", + "platform": null, + "base": null, + "version": null, + "status": "Complete", + "generation": null, + "release_date": "2024", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Vanguard/Pokemon_Vanguard-cd7de7b420b78d04.png", + "source": "https://www.mediafire.com/file/w9gy3qldi29imhk/Vanguard+3.0.12.7z/file", + "library_path": "—", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Vanguard", + "type": [ + "New Experience" + ], + "tags": [ + "hack", + "status/complete", + "type/newexperience", + "source/discord" + ], + "summary": "**Creator**: Ayrei **Language**: English **Latest Version**: v3.0.12 **Last Updated**: June 27, 2024 **Status**: 27 Chapters (32 Hours) ## __Description__ > Fifty years ago, a group called \"The Defiance\" launched a shocking attack that changed everything. Nowadays, Trainers must get proper licenses to use Pokemon. > > You wake up in front of a girl named Destiny, who says she found you unconscious in a nearby forest. You've lost all your memories. With no other choice, you go with Destiny to the Vanguard Academy, a school that trains beginner Pokemon Trainers to become professionals aiming to protect the region from Renegades, who are Trainers that break the new rules. > > At the Vanguard Academy, you'll make friends with many different people! Skilled Trainers will help guide your journey! > > You'll face Renegades and rivals along the way—defeat them and prove yourself! This world is full of hidden mysteries. ## __Features__ - Pokemon from Generations 1-9. - Discover a new area! - 270 new regional Pokemon and Fakemons. - Customizable player characters. - Amazing soundtrack. - Improved user interface. - Lots of extra content! - Experience candies are everywhere in any shop. - Vitamins now increase IVs instead of EVs. - EVs can be adjusted - Choose Ability, Nature, and hidden power type of a Pokemon when caught! - New captivating story. - No Gyms, no Pokemon League. - Three difficulty levels. - In-party move re-learner. - More starter Pokemon available. - Enhanced Generation 4 graphics. - 30 starter Pokemon to choose from! - Almost every Pokemon has had their stats improved or changed! - Double battle only mode. - View all Pokemon stats. ## :Download: [Download Here](https://www.mediafire.com/file/w9gy3qldi29imhk/Vanguard+3.0.12.7z/file)", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/w9gy3qldi29imhk/Vanguard+3.0.12.7z/file" + } + ] + }, + { + "stem": "Vanishing Point", + "title": "Pokémon Vanishing Point", + "platform": null, + "base": null, + "version": null, + "status": null, + "generation": null, + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Vanishing_Point/84D189B7-D9B6-43F3-9061-787FA97906B1-ad9bedbdf1f52228.jpg", + "source": "http://www.mediafire.com/file/acl7ll2uxbgxjie/Pokémon+Vanishing+Point+v1.5.rar/file", + "library_path": "—", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Vanishing_Point", + "type": [ + "New Experience" + ], + "tags": [ + "hack", + "type/newexperience", + "source/discord" + ], + "summary": "Pokémon Vanishing Point After the events of Sun & Moon, Auso Island is now being threatened by the presence of Ultra Beasts! It is up to International Police agents Looker and Anabel to keep the island safe ...But what is lurking in the shadows?", + "notability": "", + "story": "", + "features": [ + "Play and switch between 3 characters as you play through the game!", + "Encounter 2 brand new Ultra Beasts!", + "2 Endings?!", + "Play through an engrossing story which continues from Pokémon Sun & Moon", + "Game Download:", + "http://www.mediafire.com/file/acl7ll2uxbgxjie/Pokémon+Vanishing+Point+v1.5.rar/file" + ], + "links": [ + { + "label": "Download", + "url": "http://www.mediafire.com/file/acl7ll2uxbgxjie/Pokémon+Vanishing+Point+v1.5.rar/file" + }, + { + "label": "Download", + "url": "http://www.mediafire.com/file/acl7ll2uxbgxjie/Pok%C3%A9mon+Vanishing+Point+v1.5.rar/file" + } + ] + }, + { + "stem": "Victory Fire", + "title": "Pokémon Victory Fire", + "platform": "GBA", + "base": "Emerald", + "version": null, + "status": null, + "generation": "Gen III", + "developer": "Wind1158", + "release_date": "2024-03-08", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Victory_Fire/pokemon-victory-fire-a8fada1146863d0f.jpg", + "source": "https://mega.nz/file/omdTCJ4C#Djst4gY6rvvAT50zSBeUv5IR9Mp4tW9AtQNqv4sqRHs", + "library_path": "/storage1/Emulation/roms/gba/victory fire v2.7 fixed.zip", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Victory_Fire", + "type": [ + "New Experience" + ], + "tags": [ + "hack", + "platform/gba", + "base/emerald", + "type/newexperience", + "source/discord" + ], + "summary": "\"The victory is yours, it's time to save the whole Tyron Region.\"", + "notability": "", + "story": "Iron/Pure, a determined young boy/girl, had an unwavering ambition—to become the greatest trainer in the Tyron Region. With a burning passion for Pokemon, they dreamed of embarking on an extraordinary journey filled with challenges. But little did they know that fate had something in store.\n\nOne night, a mysterious Pokemon appeared in their dream, reaching out to them with a connection. The creature revealed that it had chosen them as its partner. Iron/Pure awakened from the dream, a newfound sense of purpose surged within.\n\nEager to embark on his Pokemon journey, they ventured into the world, clutching a Poke Ball containing his very first companion. Along the way, he encountered Uranium—an unfriendly boy who, rather than training his own Pokemon, relied on the strength of others. Despite the initial reception, Iron remained undeterred, determined to forge a friendship with Uranium.\n\nJust as Iron/Pure was ready to bid farewell to their hometown and set off on their grand adventure, a distressing sight unfolded before their eyes. Professor Ivan, a well-respected Pokemon expert, found himself under attack by none other than members of Team Mirage—an elusive and formidable organization wreaking havoc across the Tyron Region. The true intentions of Team Mirage remained shrouded in mystery, leaving the entire region on edge.", + "features": [ + "New region", + "New Tyron-styled Trick House", + "Underground Black Market in Marble City", + "Some Gen 4 and 5 Pokemon", + "Some new tiles" + ], + "links": [ + { + "label": "Download", + "url": "https://mega.nz/file/omdTCJ4C#Djst4gY6rvvAT50zSBeUv5IR9Mp4tW9AtQNqv4sqRHs" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/wm2wmambazdmjbo/victory+fire+v2.7+fixed.zip/file" + }, + { + "label": "Download", + "url": "https://mega.nz/file/omdTCJ4C" + } + ] + }, + { + "stem": "Vintage White", + "title": "Pokémon Vintage White", + "platform": "NDS", + "base": "White", + "version": null, + "status": null, + "generation": "Gen V", + "developer": "Not Suicuu", + "release_date": "2026-01-23", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Vintage_White/Vintage-White-54a920c77f35c6d3.jpg", + "source": "https://www.mediafire.com/file/hwlcxb8hu4p4gak/vintage+white-plus+-v1.5.zip/file", + "library_path": "/storage1/Emulation/roms/nds/vintage white-plus -v1.5.zip", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Vintage_White", + "type": [ + "New Experience" + ], + "tags": [ + "hack", + "platform/nds", + "base/white", + "type/newexperience", + "source/discord" + ], + "summary": "A reimagination of Pokemon White only using Pokemon from the first three generations. This hack features a significant increase in trainer difficulty and several changes to Pokemon types, stats, and learned moves to increase viability across the board.\n\nThis builds off of the original Pokemon Vintage White by significantly updating the learnsets for every main game Pokemon and updating several trainer teams to increase the difficulty of some splits of the game.", + "notability": "", + "story": "", + "features": [ + "Those Pokemon which can only be evolved by trading before will evolve normally with other methods now.", + "Eeveelutions That Are Brand New (No Other Fakemon).", + "Gender based evolution has been added for Nidoran and Calfeebl.", + "Several Pokemon got buffed/nerfed.", + "All Pokemon Have A B2/W2 moveset.", + "There Are A Lot Of New Attacks for Your Pokemon.", + "The Elite Battle System.", + "New soundtracks inserted from Gold/Silver.", + "Updated Pokemon Sets", + "Pokémon Type Changes", + "Trainer Changes for Increase Difficulty", + "More informations**", + "[Documentations](https://docs.google.com/spreadsheets/u/0/d/14FMwCY8PLrcx315dE6I4QF110yrx5T3DS90zQXD-mH8/htmlview#gid=0)" + ], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/hwlcxb8hu4p4gak/vintage+white-plus+-v1.5.zip/file" + }, + { + "label": "Download", + "url": "https://mega.nz/file/vNdRiaJY#yc1W_IsJl2IcR3XrF3QHeljud1YMuIFQBp4OCdzNcTY" + }, + { + "label": "Guide / docs", + "url": "https://docs.google.com/spreadsheets/u/0/d/14FMwCY8PLrcx315dE6I4QF110yrx5T3DS90zQXD-mH8/htmlview#gid=0" + } + ] + }, + { + "stem": "Violette", + "title": "Pokémon Violette", + "platform": "GBC", + "base": null, + "version": "v1.2.6", + "status": "Complete", + "generation": "Gen I", + "developer": "Daft Hunk", + "release_date": "2026", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Violette/labelviolette-0ef797850ba65496.png", + "source": "https://mega.nz/file/EI4hnARZ#ZjdHd8gLmvmgh0OYKn84uQNn6zu_Thg-_2B4q-_qjaY", + "library_path": "/storage1/Emulation/roms/gbc/Pokémon Version Violette 1.2.6.gbc", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Violette", + "type": [ + "QoL" + ], + "tags": [ + "hack", + "platform/gbc", + "status/complete", + "type/qol", + "source/discord" + ], + "summary": "* Latest Version: v1.2.6 * Last Updated on: February 2026", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://mega.nz/file/EI4hnARZ#ZjdHd8gLmvmgh0OYKn84uQNn6zu_Thg-_2B4q-_qjaY" + }, + { + "label": "Download", + "url": "https://mega.nz/file/EI4hnARZ" + } + ] + }, + { + "stem": "Void", + "title": "Pokémon Void", + "platform": "PC", + "base": null, + "version": "v0.1.4", + "status": null, + "generation": "Joiplay/RPGXP", + "developer": "Pokédex Fillers and Edsthetic", + "release_date": "2026", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Void/IMG_6982-27ce135fc5b48c36.jpg", + "source": "https://www.mediafire.com/file/qiirj25m8s2fu78/Pokemon+Void+0.1.5+", + "library_path": "/storage1/labdata/romhacks/library/Pok_mon_Void/", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Void", + "type": [ + "Expansion", + "New Experience" + ], + "tags": [ + "hack", + "platform/pc", + "type/expansion", + "type/newexperience", + "source/discord" + ], + "summary": "[Wiki Website](https://pokevoid.miraheze.org/wiki/)", + "notability": "", + "story": "", + "features": [ + "New Region.", + "Mega Evolution.", + "Character Customization.", + "Fakemon.", + "New Gimmick.", + "Anomaly's which are more rare than Shinys.", + "1 Gym (Currently as of now).", + "New Story.", + "Animated Pokemon Sprites.", + "New Mechnacis.", + "## :Download: [Download](https://www.mediafire.com/file/qiirj25m8s2fu78/Pokemon+Void+0.1.5+(encryptionfix).zip/file)" + ], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/qiirj25m8s2fu78/Pokemon+Void+0.1.5+" + }, + { + "label": "Link", + "url": "https://pokevoid.miraheze.org/wiki/" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/qiirj25m8s2fu78/Pokemon+Void+0.1.5+(encryptionfix" + } + ] + }, + { + "stem": "Volt White 2 Redux", + "title": "Pokémon Volt White 2 Redux", + "platform": "NDS", + "base": "White 2", + "version": "1.4.1", + "status": "Complete", + "generation": "Gen 1–5 mons", + "developer": "AphexCubed & Drayano", + "release_date": "2023", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Volt_White_2_Redux/IMG_7040-b8735394c528b477.jpg", + "source": "https://www.pokecommunity.com/", + "library_path": "roms/nds/Hacks/Pokemon - Volt White 2 Redux (Hack).nds", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Volt_White_2_Redux", + "type": [ + "Vanilla+", + "Difficulty", + "Expansion" + ], + "tags": [ + "hack", + "platform/nds", + "base/white2", + "status/complete", + "type/vanilla+", + "type/difficulty", + "type/expansion" + ], + "summary": "A community 'Redux' fork of Drayano's Volt White 2 — expanded availability and rebalanced difficulty.", + "notability": "", + "story": "> The story is primarely the same as in Pokémon White 2. You play as trainer from Aspertia City, you walk through the region, challenge gym leaders, evil team and Pokémon League and try to catch all pokémon. While the main plot mirrors White 2, Redux adds refined encounters and slight narrative enhancements to deepen the experience.", + "features": [], + "links": [ + { + "label": "Source / info", + "url": "https://www.pokecommunity.com/" + }, + { + "label": "Lookup", + "url": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Volt%20White%202%20Redux%20rom%20hack" + } + ] + }, + { + "stem": "Volt White", + "title": "Pokémon Volt White", + "platform": "NDS", + "base": "White", + "version": null, + "status": "Complete", + "generation": "Gen 1–5 mons", + "source": "https://www.pokecommunity.com/threads/pokemon-blaze-black-volt-white.252355/", + "library_path": "roms/nds/Hacks/Pokemon - Volt White (Hack).nds", + "play_status": "Unplayed", + "type": [ + "Vanilla+", + "Difficulty" + ], + "tags": [ + "hack", + "platform/nds", + "base/white", + "status/complete", + "type/vanilla+", + "type/difficulty" + ], + "summary": "Drayano's White overhaul — full availability and boosted difficulty. The White counterpart to Blaze Black.", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Source / info", + "url": "https://www.pokecommunity.com/threads/pokemon-blaze-black-volt-white.252355/" + }, + { + "label": "Lookup", + "url": "https://duckduckgo.com/?q=Pok%C3%A9mon%20Volt%20White%20rom%20hack" + } + ] + }, + { + "stem": "Voyager", + "title": "Pokémon Voyager", + "platform": "GBA", + "base": "Emerald", + "version": "v0.3.6", + "status": "Complete", + "generation": "Gen III", + "developer": "ghoulslash & klemniops", + "release_date": "2022", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Voyager/pokemon-voyager-a2c08348bdf42e77.gif", + "source": "https://www.pokeharbor.com/2021/05/pokemon-voyager/", + "library_path": "/storage1/Emulation/roms/gba/Pokemon Voyager (v0.3.6).gba", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Voyager", + "type": [ + "Difficulty", + "New Experience" + ], + "tags": [ + "hack", + "platform/gba", + "base/emerald", + "status/complete", + "type/difficulty", + "type/newexperience", + "source/discord" + ], + "summary": "[Source Website](https://www.pokeharbor.com/2021/05/pokemon-voyager/) [Documentation](https://ghoulslash.github.io/pokevoyager/index.html)", + "notability": "", + "story": "You have lived your whole life in Andromeda City, the metropolitan heart of Keplara. Your father works for the Andromeda PD; your mother is the local Antares League, gym leader. Someday you'll get a Trainer's License of your own and become a well-regarded Pokémon trainer yourself.\n\nBut today is not that day. Instead, today is an exciting day for Andromeda City: your mother's Antares League gym is moving into the snazziest new digs, all the way up to the top floors of the recently-completed Pokémon community skyscraper! There are still a few things left to move and unpack before the grand opening, but it's nothing that you and your father can't handle.", + "features": [ + "New story.", + "New characters.", + "Customizable playable character.", + "76 Fakemon scattered throughout the region (game focus & initials.)", + "Battle Factory mode: play a challenge with a Pokémon team for hire.", + "Contains some original Pokémon scattered throughout the game between the 1 - 8 generations.", + "A highly customizable difficulty, randomizers, challenges, & Nuzlocke modes.", + "Updated battle engine.", + "Character customization - 60 outfits total!", + "Charisma system - Some events have charisma options that change how NPCs & story event characters interact with you!", + "Field moves - HMs can be used by any species with the capability to learn it. Register them to L, R, or Select! Auto-perform field moves!", + "Casino games - Blackjack & Texas hold'em added, in addition to a suite of casino prize booths!", + "Daily Pokémart specials.", + "City maps - help find important landmarks in big cities!", + "Journal & side quest system!", + "Stray overworld Pokémon.", + "Alternate forms are instead alternate evolutions with unique names!" + ], + "links": [ + { + "label": "Info / thread", + "url": "https://www.pokeharbor.com/2021/05/pokemon-voyager/" + }, + { + "label": "Download", + "url": "https://drive.google.com/file/d/1i2sRJOCKg9k7ic-wfSz3MZgSnMwZ8rOn/view?usp=drivesdk" + }, + { + "label": "Download", + "url": "https://ghoulslash.github.io/pokevoyager/index.html" + } + ] + }, + { + "stem": "War of Masters", + "title": "Pokémon War of Masters", + "platform": null, + "base": null, + "version": null, + "status": null, + "generation": null, + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_War_of_Masters/IMG_9959-da2de24cdb23cc05.webp", + "source": "https://secure.eu.internxt.com/sh/file/8_mFMr9NSy6yeK2P8YjJiQ/1U-cjOvr", + "library_path": "—", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_War_of_Masters", + "type": [], + "tags": [ + "hack", + "source/discord" + ], + "summary": "Pokemon War of Masters", + "notability": "", + "story": "", + "features": [ + "Environmental Revolution The Pokémon world has been fundamentally redesigned for a more mature, strategic experience", + "New Class System - Every Pokemon type transforms into a distinct character class", + "No Stones - Only Weapons (Job‑Based Gear Progression) Evolution stones are relics of a peaceful past. Now, like the clans of Ivalice, power comes from weapons, armor, and relics that unlock abilities and shape your Job path. Blades, staves, shields, and enchanted artifacts define your role on the battlefield.", + "No Evolutions - Only Class Ascension (True Job System) Creatures no longer evolve… They ascend into Jobs. Warrior. Mage. Assassin. Paladin. And now BEAST, the feral frontline Job. Your class determines your abilities, your growth, and your tactical identity.", + "Shops Replaced With RPG Systems (Ivalice‑Inspired Economy) - Poké Marts are gone. In their place stand systems worthy of a tactical JRPG:", + "Blacksmiths - Forge weapons. Upgrade armor. Unlock Job‑exclusive gear and ability‑granting equipment.", + "Merchants - Buy spell scrolls, potions, relics, and rare crafting materials — just like preparing for a clan mission.", + "[Download Link](https://secure.eu.internxt.com/sh/file/8_mFMr9NSy6yeK2P8YjJiQ/1U-cjOvr)" + ], + "links": [ + { + "label": "Download", + "url": "https://secure.eu.internxt.com/sh/file/8_mFMr9NSy6yeK2P8YjJiQ/1U-cjOvr" + } + ] + }, + { + "stem": "Wasteland", + "title": "Pokémon Wasteland", + "platform": "GBC", + "base": "Crystal", + "version": null, + "status": null, + "generation": null, + "developer": "z3bra", + "release_date": "2023-04-28", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Wasteland/Pokemon-Wasteland-1-5d7a774b971b7d6b.png", + "source": "https://www.mediafire.com/file/1sdd5dbc6sx8yy0/Pokemon+Wasteland+", + "library_path": "—", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Wasteland", + "type": [ + "Difficulty", + "Cosmetic" + ], + "tags": [ + "hack", + "platform/gbc", + "base/crystal", + "type/difficulty", + "type/cosmetic", + "source/discord" + ], + "summary": "**Pokémon Wasteland** is a GBC ROM Hack by z3bra based on Pokemon Crystal. It was last updated on April 28, 2023.", + "notability": "", + "story": "", + "features": [ + "Original Wasteland Tileset and Story", + "The game's setting and storyline revolve around the original Wasteland tileset, offering a post-apocalyptic environment with a well-developed storyline that keeps players engaged throughout the game.", + "Starter Given at Level 30", + "To offer players a challenging experience, the game starts with players receiving a starter Pokémon at level 30. This makes the battles more competitive and engaging from the very beginning, as players must use all their skills and knowledge to succeed.", + "Challenging Battles with Fine-Tuned Trainers", + "Increased Wilderness Diversity (with Day/Night Cycle)", + "Exp. Share Benefits Your Whole Party", + "Running Shoes from the Start", + "Reusable TM.", + ":Download: [Mediafire](https://www.mediafire.com/file/1sdd5dbc6sx8yy0/Pokemon+Wasteland+(1.4).zip/file/)", + ":Download:[MEGA](https://mega.nz/file/VpFxTD5Q#kUTz-f_QINQUSZHsFhbrMig_gU0Dxnl3d0LH_melmfo)" + ], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/1sdd5dbc6sx8yy0/Pokemon+Wasteland+" + }, + { + "label": "Download", + "url": "https://mega.nz/file/VpFxTD5Q#kUTz-f_QINQUSZHsFhbrMig_gU0Dxnl3d0LH_melmfo" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/1sdd5dbc6sx8yy0/Pokemon+Wasteland+(1.4" + } + ] + }, + { + "stem": "Water Blue", + "title": "Pokémon Water Blue", + "platform": "GBA", + "base": null, + "version": null, + "status": null, + "generation": null, + "release_date": "2023", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Water_Blue/FB_IMG_1704486002441-8bbae39be4f90981.jpg", + "source": "https://www.pokeharbor.com/2021/07/pokemon-water-blue/", + "library_path": "—", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Water_Blue", + "type": [ + "Expansion" + ], + "tags": [ + "hack", + "platform/gba", + "type/expansion", + "source/discord" + ], + "summary": "**Creator:** caminopreacher **Type:** GBA **Last Updated:** November 9, 2023", + "notability": "", + "story": "> The story is exactly the same as Pokemon Fire Red and Leaf Green. However, if you have never played those games here it is anyway", + "features": [], + "links": [ + { + "label": "Info / thread", + "url": "https://www.pokeharbor.com/2021/07/pokemon-water-blue/" + } + ] + }, + { + "stem": "WaveBlue", + "title": "Pokémon WaveBlue", + "platform": "GBA", + "base": "FireRed", + "version": "1.7.5", + "status": "Ongoing", + "generation": "Multi-gen", + "developer": "Raduziel", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Wave_Blue/IMG_9957-d1eb456f4e663045.webp", + "source": "https://duckduckgo.com/?q=Pok%C3%A9mon%20WaveBlue%20rom%20hack", + "library_path": "roms/gba/Hacks/Pokemon - WaveBlue (Hack).gba", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Wave_Blue", + "type": [ + "New Experience" + ], + "tags": [ + "hack", + "platform/gba", + "base/firered", + "status/ongoing", + "type/newexperience" + ], + "summary": "A new-region adventure built on FireRed.", + "notability": "", + "story": "", + "features": [ + "Toggle Run On/Off by pressing B. You no longer need Running Shoes and don't need to hold B to keep running anymore;", + "Physical / Special split (PSS);", + "Fairy type;", + "Expanded TMs focused on making better use of the PSS as well as introducing more Fairy, Dark and Steel moves to the game — TM10 (Hidden Power) no longer requires Pickup to be obtained;", + "Movesets, abilities and moves were updated to the latest Gen it was available for them;", + "Hail changed to Snow (with Defense boost to Ice-types) and Freeze to Frostbite;", + "TMs are reusable and HMs can be forgotten;", + "TMs are no longer purchasable, with the exception of new TMs sold on One Island;", + "Shortened the animation from using HMs;", + "Cut, Strength, Flash and Rock Smash were buffed to be useful in combat (see below);", + "List of items expanded up to Gen 9 (including Nature Mints);", + "Exp. Share working as modern generations, if you have the item on your inventory and toggle it ON all Pokémon in your party will receive XP;", + "Pokémon Box Link available to allow the player to manage their team anywhere (sending a Pokémon to a box no longer heals it);", + "Oak's Aides will give items no matter how many Pokémon you caught;", + "Trees and Rocks removed by Cut/Rock Smash are now removed permanently;", + "No Megaevolutions, Dynamax or Z-Moves;", + "Aurora Ticket and Mystic Ticket can be obtained;", + "Improved some map's layout especially in Pewter, Cerulean and Fuchsia;", + "Gym Battles are now 3v3 Single Battles;", + "[Download Link](https://share.eu.internxt.com/sh/file/goG7PDKuTkeWvwIY5Y96KA/scyLK3nS)" + ], + "links": [ + { + "label": "Lookup", + "url": "https://duckduckgo.com/?q=Pok%C3%A9mon%20WaveBlue%20rom%20hack" + } + ] + }, + { + "stem": "White 2 Black 2 Kaizo", + "title": "Pokémon White 2 / Black 2 Kaizo", + "platform": "NDS", + "base": null, + "version": null, + "status": null, + "generation": null, + "release_date": "2022", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_White_2_Black_2_Kaizo/IMG_7054-30abea3ce90ebb17.jpg", + "source": "https://www.mediafire.com/file/46kyf5b8lwgi7n7/Pokemon+Black+2+Kaizo+Full+Release+v1d6.zip/file", + "library_path": "—", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_White_2_Black_2_Kaizo", + "type": [ + "Difficulty", + "QoL" + ], + "tags": [ + "hack", + "platform/nds", + "type/difficulty", + "type/qol", + "source/discord" + ], + "summary": "**Creator:** Insipid Axiom **Type:** NDS **Last Updated:** November 8, 2022", + "notability": "", + "story": "> The story in Pokémon Kairo Black 2 and Kaizo White 2 follows the same plot as the original Black 2 and White 2: you begin your journey as a new Trainer in Unova, face off against Team Plasma, and work your way toward becoming the Champion. However, the hacks enhance the narrative experience by raising the stakes through tougher opponents, smarter AI, and more intense battles.", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/46kyf5b8lwgi7n7/Pokemon+Black+2+Kaizo+Full+Release+v1d6.zip/file" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/axqw4f3rsuapcyq/Pokemon+White+2+Kaizo+Full+Release+v1d5.zip/file" + } + ] + }, + { + "stem": "White Gold", + "title": "Pokémon White Gold", + "platform": "GBC", + "base": "Gold", + "version": null, + "status": null, + "generation": null, + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_White_Gold/IMG_9958-32b25724778a3a93.jpg", + "source": "https://mega.nz/file/ZU4TmbrA#g8x-PuPc5mB8V6WNy-m_MTFNdz5MP9UiAn8CrfoSKT0", + "library_path": "—", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_White_Gold", + "type": [], + "tags": [ + "hack", + "platform/gbc", + "base/gold", + "source/discord" + ], + "summary": "Pokemon White Gold", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://mega.nz/file/ZU4TmbrA#g8x-PuPc5mB8V6WNy-m_MTFNdz5MP9UiAn8CrfoSKT0" + }, + { + "label": "Download", + "url": "https://mega.nz/file/ZU4TmbrA" + } + ] + }, + { + "stem": "Wings of Chaos", + "title": "Pokémon Wings of Chaos", + "platform": "GBA", + "base": null, + "version": null, + "status": null, + "generation": "Gen III", + "developer": "Ice Winged Magical Otter", + "release_date": "2024", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Wings_of_Chaos/Pokemon-Wings-of-Chaos-GBA-formerly-Isles--0ef32b2a042bacd2.jpg", + "source": "https://www.mediafire.com/file/4b9knv0j4cq4sze/wings+of+chaos+alpha+v2.5.zip/file", + "library_path": "/storage1/Emulation/roms/gba/wings of chaos alpha v2.5.gba", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Wings_of_Chaos", + "type": [ + "Difficulty", + "Expansion" + ], + "tags": [ + "hack", + "platform/gba", + "type/difficulty", + "type/expansion", + "source/discord" + ], + "summary": "Catalogued from the Discord ROM-hack archive. See links below.", + "notability": "", + "story": "You, an adolescent and aspiring trainer from a foreign land, have been given the opportunity to travel abroad to the tropical region of Marya! Your new professor, Sheldon Palm, has graciously accepted you as one of his pupils to help him conduct field research around the isles. You've also arrived just in time for the upcoming Silverwing Festival, a grand celebration hosted by the Silverwing Order each year to honor their glorious savior, Lugia.\n\nYou set forth on an adventure across the three main islands of Oranna, Lumine, and Minerva, challenging their respective gym leaders in hopes of gaining entry into the renowned Silverwing Festival Tournament as well as completing the Pokédex for your professor. But as you continue to explore the isles, you gradually begin to unveil a dark secret that seemingly only you can see and it's up to you to bring it into the light.", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/4b9knv0j4cq4sze/wings+of+chaos+alpha+v2.5.zip/file" + } + ] + }, + { + "stem": "Wob Version", + "title": "Pokémon Wob Version", + "platform": "GBA", + "base": null, + "version": "Version completed 1.1", + "status": "Complete", + "generation": "Gen III", + "developer": "The Igmeister", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Wob_Version/IMG_9935-542e29284bdfc1c2.jpg", + "source": "https://raw.githubusercontent.com/vbaemulator/GBA-Roms/main/Pokemon%20Wob%20v1.1.zip", + "library_path": "/storage1/Emulation/roms/gba/Pokemon Wob v1.1.zip", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Wob_Version", + "type": [], + "tags": [ + "hack", + "platform/gba", + "status/complete", + "source/discord" + ], + "summary": "* Pokemon Wob Version is a little hack in which every Pokémon's face is sloppily slapped onto the body of a Wobbuffet or Wynaut. In addition to this, each Pokemon has been given the ability to use Counter and Mirror Coat at the expense of all but one of their previously learned moves (HMs are also usable).\n* When a Pokemon evolves, it immediately learns the signature move of its evolution (for example, an Ivynaut learns PoisonPowder at Lv. 16 as well as at Lv. 1). Pokemon that evolve via stone or friendship learn their signature move every ten levels.\n\n[Download Link](https://raw.githubusercon", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://raw.githubusercontent.com/vbaemulator/GBA-Roms/main/Pokemon%20Wob%20v1.1.zip" + } + ] + }, + { + "stem": "World Stadium", + "title": "Pokémon World Stadium", + "platform": "GBA", + "base": null, + "version": null, + "status": null, + "generation": "Gen III", + "developer": "taking on 20 action-packed fights at the World Stadium", + "release_date": "2025", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_World_Stadium/Screen-Shot-2023-03-29-at-9.00.59-AM-Chris-29ce2173bfec5ac1.png", + "source": "https://www.mediafire.com/file/3v738opbmemfkia/W.S.+v2.1.zip/file", + "library_path": "/storage1/Emulation/roms/gba/W.S. v2.1.zip", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_World_Stadium", + "type": [ + "Difficulty", + "Expansion" + ], + "tags": [ + "hack", + "platform/gba", + "type/difficulty", + "type/expansion", + "source/discord" + ], + "summary": "Get ready for an exciting challenge! In this hack, you'll embark on a thrilling journey to the Pokémon center and build your ultimate team using the pokemon on your PC. Once your team is ready, it's time to prove your skills by taking on 20 action-packed fights at the World Stadium.\n\nYou'll encounter some familiar faces along the way but be prepared to face some new and challenging opponents. And don't worry if you don't recognize someone, a quick Google search will help you uncover their identity. Get ready to show off your strategic prowess and become a true Pokémon master!\n\nPokemon World St", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/3v738opbmemfkia/W.S.+v2.1.zip/file" + } + ] + }, + { + "stem": "X & Y Disruption", + "title": "Pokémon X & Y: Disruption", + "platform": null, + "base": null, + "version": "• Custom logos for both versio", + "status": null, + "generation": "Gen VI", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_X_Y_Disruption/IMG_5239-f65c590dcbd3678e.png", + "source": "https://drive.google.com/drive/mobile/folders/17D3H599q-93M5kGtmx2dmn0GOYq6jHCO?usp=sharing", + "library_path": "/storage1/labdata/romhacks/library/Pok_mon_X_Y_Disruption/", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_X_Y_Disruption", + "type": [], + "tags": [ + "hack", + "source/discord" + ], + "summary": "Here's what's in this version: • Custom logos for both version, as you can see. • This new version ONLY works with the 1.5 Update for Pokémon X & Y, so make sure you have downloaded it before putting in the new files. • Every Pokémon in the wild has a chance of holding an item, with different rates for different items. • Learnsets were updated with Legends Z-A Move Compatibility. Garchomp now learns Vacuum Wave, for example. • Two new items were implemented: Box Link, which allows you to access your PC Box anywhere but only when registered, and the Hyperspace Stone, which allows the 1st Pokémon in your party to briefly use Teleport and get you back to safety. The Hyperspace Stone is given to you by your Rival after Santalune Forest, but the Box Link will have to be found while you travel through Kalos. • A Move Relearner and a Move Deleter were placed in Geosenge Town. Look for a Scientist and a Pokémon Breeder inside of one of the houses. • Ambush Encounters were updated! This includes Bushes, Trash Cans and even Berry Tress. Also, look for valuable items in Trash Cans on Tuesdays and Thursdays. • You can now register Honey for easier access. • Many Trainers Teams and dialogues throughout the game were updated. • Items obtained through Pickup were also updated. • Poké Mile Shop and Battle Maison Shop were updated with new items. You can now get a Discount Coupon at Kiloude for only 5 BP to help you in your shopping sprees. • And almost every UPPER CASE WORD was retyped to Lower Case Word (Ex: SAVE - Save) Download and Information [Link](https://drive.google.com/drive/mobile/folders/17D3H599q-93M5kGtmx2dmn0GOYq6jHCO?usp=sharing)", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://drive.google.com/drive/mobile/folders/17D3H599q-93M5kGtmx2dmn0GOYq6jHCO?usp=sharing" + } + ] + }, + { + "stem": "XD DX [Director's Cut]", + "title": "Pokémon XD: DX [Director's Cut]", + "platform": null, + "base": "XD: Gale of Darkness", + "version": "V3.0.1", + "status": "Complete", + "generation": "Unique", + "developer": "PepGames", + "release_date": "2025", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_XD_DX_Director_s_Cut/DX_logo-1-151e46033f99f30c.png", + "source": "https://www.mediafire.com/file/0tcjy30pyo4emdd/PKM_DX_Director%27s_Cut_%28v3.0.1%29-PokeAndroid.7z/file", + "library_path": "/storage1/labdata/romhacks/library/Pok_mon_XD_DX_Director_s_Cut/", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_XD_DX_Director_s_Cut", + "type": [ + "Expansion", + "New Experience" + ], + "tags": [ + "hack", + "base/xd:galeofdarkness", + "status/complete", + "type/expansion", + "type/newexperience", + "source/discord" + ], + "summary": "[Source Website](https://www.pokecommunity.com/threads/pok%C3%A9mon-xd-dx-directors-cut.538680/)", + "notability": "", + "story": "", + "features": [ + "Over 120+ Shadow Pokémon", + "Over 75+ Wild Pokémon", + "10+ Regional Variants from Modern Games", + "18 'Starter' Pokémon available early", + "30+ Custom Orre Regional Variants", + "95% of Gen 1-3 Evolution Lines Obtainable", + "Overhauled Abilities, Stats, and Learnsets", + "Overhauled and Stylized Trainer Teams", + "More than 40+ Trainers inspired by main-line games", + "Reworked Item Drops + New Items", + "Gen 6+ Mechanics including Fairy type and the Physical/Special Split", + "Modern Exp. Share (always on)", + "Widened Level Curve (Lv 1-100)", + "1 in 64 Shiny Odds", + "Significantly more varied music" + ], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/0tcjy30pyo4emdd/PKM_DX_Director%27s_Cut_%28v3.0.1%29-PokeAndroid.7z/file" + }, + { + "label": "Info / thread", + "url": "https://www.pokecommunity.com/threads/pok%C3%A9mon-xd-dx-directors-cut.538680/" + } + ] + }, + { + "stem": "XG - NeXt Gen", + "title": "Pokémon XG: NeXt Gen", + "platform": null, + "base": null, + "version": null, + "status": null, + "generation": null, + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_XG_NeXt_Gen/1183164594_ScreenShot2019-03-08at19_17_12.-7e7fc26dcf6baf78.png", + "source": "https://drive.google.com/file/d/1GgDOfZYkXr6bKlxIVR7GZpAHd0woMJjC/view?usp=sharing", + "library_path": "—", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_XG_NeXt_Gen", + "type": [ + "Difficulty", + "Expansion" + ], + "tags": [ + "hack", + "type/difficulty", + "type/expansion", + "source/discord" + ], + "summary": "**Pokemon XG: NeXt Gen** System: Nintendo Gamecube **DISCLAIMER**: YOU WILL REQUIRE THE DOLPHIN EMULATOR IN ORDER TO PLAY THIS GAME. **Main Features:** - Physical/Special Split - Gen VII type matchup chart including fairy type - New set of shadow pokemon and other obtainable pokemon - Over 100 Shadow Pokemon - Over 50 Shadow Moves - Over 75 Wild Pokemon - Moves and abilities from later generations - Mostly Gen VII Game Mechanics - More challenging opponents", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://drive.google.com/file/d/1GgDOfZYkXr6bKlxIVR7GZpAHd0woMJjC/view?usp=sharing" + } + ] + }, + { + "stem": "Xenoverse", + "title": "Pokémon Xenoverse", + "platform": null, + "base": null, + "version": null, + "status": null, + "generation": "Joiplay/RPGXP", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Xenoverse/jbowjpcc3j661-2-aa0a8d772f1f68ea.jpg", + "source": "https://mega.nz/file/pCBWBaxK#5LZjsYXaMu3CQhX9zz0EkSeTqIeqmyVD39ME8TYZj6U", + "library_path": "/storage1/labdata/romhacks/library/Pok_mon_Xenoverse/", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Xenoverse", + "type": [], + "tags": [ + "hack", + "source/discord" + ], + "summary": "The game has a really well-written story, and the tone of voice is quite different from other official and fan-made Pokémon titles. Both the story and the events are well thought out. You'll be surprised how your starter Pokémon are linked to the story and how it develops. The narrative is designed to surprise you in many ways. Although the story is a little more dramatic, it's appropriate for adults as well as the Pokémon player age group. Download From Mega: https://mega.nz/file/pCBWBaxK#5LZjsYXaMu3CQhX9zz0EkSeTqIeqmyVD39ME8TYZj6U Download From Source: https://gitlab.com/weedleteam/Xenoverse-Source", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://mega.nz/file/pCBWBaxK#5LZjsYXaMu3CQhX9zz0EkSeTqIeqmyVD39ME8TYZj6U" + }, + { + "label": "Download", + "url": "https://mega.nz/file/pCBWBaxK" + }, + { + "label": "Link", + "url": "https://gitlab.com/weedleteam/Xenoverse-Source" + } + ] + }, + { + "stem": "Yellow - Cramorant Edition [EN]", + "title": "Pokémon Yellow: Cramorant Edition [EN]", + "platform": "GBC", + "base": "Yellow", + "version": null, + "status": null, + "generation": null, + "developer": "Cram-o-dev", + "release_date": "2022-06-09", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pok_mon_Yellow_Cramorant_Edition_EN/7831titlescreen_1-a8c829e90f3d4af5.png", + "source": "https://www.mediafire.com/file/trxthkf3pxmmtgw/Pokemon+Yellow+-+Cramorant+Edition.zip/file/", + "library_path": "—", + "play_status": "Unplayed", + "scrape_dir": "Pok_mon_Yellow_Cramorant_Edition_EN", + "type": [ + "New Experience" + ], + "tags": [ + "hack", + "platform/gbc", + "base/yellow", + "type/newexperience", + "source/discord" + ], + "summary": "**Pokémon Yellow: Cramorant Edition** is a GBC ROM Hack by Cram-o-dev based on Pokemon Yellow. It was last updated on June 9, 2022.", + "notability": "", + "story": "", + "features": [ + "Journey through the region, beat Team Rocket, collect all badges, catch every Pokemon, and become the Champ with a Cramorant by your side!", + "Following Pikachu has been replaced with Following Cramorant! Every sprite, graphic, sound, and text associated with Pikachu has been changed to fit with Cramorant. Cramorant's movepool, experience growth, and stats are loosely based off of Pokemon Sword/Shield.", + "Pikachu's Beach minigame is now Cramorant's Beach! As long as Cramorant knows Surf, you can play it!", + "New exclusive battle move added for Cramorant.", + "Many wild and Trainer Pokemon have had their levels raised slightly in an effort to provide more of a challenge.", + ":Download:[Mediafire](https://www.mediafire.com/file/trxthkf3pxmmtgw/Pokemon+Yellow+-+Cramorant+Edition.zip/file/)" + ], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/trxthkf3pxmmtgw/Pokemon+Yellow+-+Cramorant+Edition.zip/file/" + } + ] + }, + { + "stem": "Yellow Plus", + "title": "Pokémon Yellow Plus", + "platform": null, + "base": null, + "version": null, + "status": null, + "generation": null, + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Yellow_Plus/IMG_0105-2361a2e15591c09c.png", + "source": "https://raw.githubusercontent.com/vbaemulator/GBC-Roms/main/Pokemon%20Yellow%20Plus%20v1.3.gbc.zip", + "library_path": "—", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Yellow_Plus", + "type": [], + "tags": [ + "hack", + "source/discord" + ], + "summary": "Pokemon Yellow plus Dev: Dearman4", + "notability": "", + "story": "", + "features": [ + "All 151 Pokemon obtainable", + "Crit rate fixed (1/16 chance and Focus Energy/Dire Hits work properly)", + "Type effectiveness updated (ghost is now super effective against psychic, poison normally effective against bug, ice not very effective against fire, bug not very effective against poison and ghost)", + "Trade evolutions changed to evolve at Level 37", + "## Download Links", + "[Download Link](https://raw.githubusercontent.com/vbaemulator/GBC-Roms/main/Pokemon%20Yellow%20Plus%20v1.3.gbc.zip)" + ], + "links": [ + { + "label": "Download", + "url": "https://raw.githubusercontent.com/vbaemulator/GBC-Roms/main/Pokemon%20Yellow%20Plus%20v1.3.gbc.zip" + } + ] + }, + { + "stem": "Yu-Gi-Oh Pok├⌐Duel", + "title": "Pokémon Yu-Gi-Oh PokéDuel", + "platform": "GBA", + "base": null, + "version": null, + "status": null, + "generation": "Gen III", + "banner": "https://romhacks-files.ginnoir.com/_meta/Yu-Gi-Oh_Pok_Duel/Yu-Gi-Oh-POKeDUEL-GBA-b4bcc5b36d100072.webp", + "source": "https://www.mediafire.com/file/3pp8u446kzetmyj/yugipkduel+v4.0.6.zip/file", + "library_path": "/storage1/Emulation/roms/gba/yugipkduel v4.0.6.gba", + "play_status": "Unplayed", + "scrape_dir": "Yu-Gi-Oh_Pok_Duel", + "type": [ + "Difficulty", + "Expansion" + ], + "tags": [ + "hack", + "platform/gba", + "type/difficulty", + "type/expansion", + "source/discord" + ], + "summary": "Keep an eye out, because there are also many Yu-Gi-Oh characters throughout the region ready to challenge you in a duel! NPC's throughout the region will also make enjoyable references to the Yu-Gi-Oh anime and trading card game. There are currently around 163* monsters, with plenty more to come in future iterations.\n\nAround 400 as of v4.0.6", + "notability": "", + "story": "", + "features": [ + "All Pokemon were replaced with iconic Yu-Gi-Oh monsters", + "Pokemon mechanics up to gen 9 (Moves, Abilities, DexNav, Fairy Type, and more)", + "Multiple difficulty settings, Minimal Grind Mode, Randomizer, Smart AI, Sandbox, and more", + "All Gym Leaders, Elite 4, and Champion were replaced with Yu-Gi-Oh characters", + "NPC's throughout the region have their dialogue updated to make references to the Yu-Gi-Oh anime and trading card game", + "New maps", + "Many Yu-Gi-Oh characters are spread throughout the region for you to battle", + "Music from the Yu-Gi-Oh anime", + "150+ Custom Moves", + "Tons of QOL features", + "Plus more in 4.0.6" + ], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/3pp8u446kzetmyj/yugipkduel+v4.0.6.zip/file" + } + ] + }, + { + "stem": "Z", + "title": "Pokémon Z", + "platform": "PC", + "base": null, + "version": "v2.16 Spanish & English , 2.12", + "status": "Complete", + "generation": "Joiplay/RPGXP", + "developer": "Eric Lostie", + "release_date": "2026", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_Z/IMG_9791-8e98d56da67bd03a.png", + "source": "https://www.mediafire.com/file/6aiyxey4vd1gd8h/Z_V2.12_-_Fran%25C3%25A7ais.zip/file", + "library_path": "/storage1/labdata/romhacks/library/Pokemon_Z/", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_Z", + "type": [ + "Difficulty" + ], + "tags": [ + "hack", + "platform/pc", + "status/complete", + "type/difficulty", + "source/discord" + ], + "summary": "* Latest Version: v2.16 Spanish & English , 2.12 French * Last Updated on: February 2026 My most ambitious and highest quality game to date. The story is set in the Kalos region from centuries ago and tells the events of the great war and the Ultimate Weapon. - 12 gyms + postgame - All Pokémon of the 9 generations obtainable - Nuzlocke Mode, Random Mode and Monotype Mode available - Crafting system - Own soundtrack [French Mediafire Link](https://www.mediafire.com/file/6aiyxey4vd1gd8h/Z_V2.12_-_Fran%25C3%25A7ais.zip/file) [Spanish Mediafire Link](https://www.mediafire.com/file/fjkiu9vyfrzx74i/POKEMON+Z+V2.16.zip/file) [English Mediafire link](https://www.mediafire.com/file/duked14xpb847ds/POKEMON_Z_V2.13.zip/file)", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Download", + "url": "https://www.mediafire.com/file/6aiyxey4vd1gd8h/Z_V2.12_-_Fran%25C3%25A7ais.zip/file" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/fjkiu9vyfrzx74i/POKEMON+Z+V2.16.zip/file" + }, + { + "label": "Download", + "url": "https://www.mediafire.com/file/duked14xpb847ds/POKEMON_Z_V2.13.zip/file" + } + ] + }, + { + "stem": "bushido", + "title": "Pokémon bushido", + "platform": "PC", + "base": null, + "version": null, + "status": null, + "generation": null, + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_bushido/NLihHbc-924807f554fe09e6.gif", + "source": "https://www.pokecommunity.com/threads/pokemon-bushido.447182/", + "library_path": "—", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_bushido", + "type": [ + "Expansion" + ], + "tags": [ + "hack", + "platform/pc", + "type/expansion", + "source/discord" + ], + "summary": "Welcome to the Aisho Region!", + "notability": "", + "story": "", + "features": [ + "A Complete Story", + "10-15 Hours of Gameplay", + "Mid-Battle Dialogue", + "Shadow Pokémon", + "Katanas that replace HMs", + "MKXP for Increased Performance", + "Pokémon up to Gen 8", + "New Battle Animations (Reborn)", + "Speed-Up Toggle (Alt Key)", + "Pokémon Bushido is a Pokémon fangame developed in RPG Maker XP using the Pokémon Essentials v18.1 starter kit and MKXP.", + "Pokémon Bushido utilizes Gen 4-styled graphics, and includes Pokémon from up to Gen 8!", + "Features from later generations, such as the Exp. All and HM Items are also seen in this game, but with a unique twist!" + ], + "links": [ + { + "label": "Info / thread", + "url": "https://www.pokecommunity.com/threads/pokemon-bushido.447182/" + } + ] + }, + { + "stem": "clockwork", + "title": "Pokémon clockwork", + "platform": null, + "base": null, + "version": null, + "status": "Complete", + "generation": null, + "release_date": "2026", + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_clockwork/ClockworkMain-c679fa3b23223aaf.webp", + "source": "https://www.pokemoncoders.com/pokemon-clockwork/", + "library_path": "—", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_clockwork", + "type": [ + "Difficulty", + "Expansion" + ], + "tags": [ + "hack", + "status/complete", + "type/difficulty", + "type/expansion", + "source/discord" + ], + "summary": "https://www.pokemoncoders.com/pokemon-clockwork/ -Specs- Release Date: 1/1/2026 - For PC. The only way you can play it on mobile devices is if you use the app called Joiplay, however, it is not certain if the game fully supports Joiplay, and we have yet to confirm that information. -", + "notability": "", + "story": "The story is the usual Pokemon stuff. The game takes place in the Rosari Region, and your character is an up-and-coming Trainer. Traverse through the Region and encounter numerous Pokemon.\n\nApparently, Celebi plays a role in the story, but you'll have to find that out for yourself. Plus, there's the usual villain group called Team Epsilon. Can you save the world before the clock runs out?\n-", + "features": [ + "Roster goes up to Gen 4", + "Quest system", + "Time Travel to the Past and Present", + "Some Gym Leaders will have six Pokemon", + "Day and Night cycle", + "Increased difficulty", + "Custom Pokédex: Every Pokémon in the game is a new creation; no official Pokémon appear.", + "Simplified Evolutions: All Fakemon evolve solely via level-up, removing the need for stones, trading, or special items.", + "Updated Moves: Moves and abilities match their Generation 9 versions.", + "High Shiny Rate: The shiny encounter chance is increased to 1% to help players see the alternate colors for all new designs." + ], + "links": [ + { + "label": "Link", + "url": "https://www.pokemoncoders.com/pokemon-clockwork/" + } + ] + }, + { + "stem": "trading card game 2 - the invasion of team GR", + "title": "Pokémon trading card game 2 : the invasion of team GR", + "platform": null, + "base": null, + "version": null, + "status": null, + "generation": null, + "banner": "https://romhacks-files.ginnoir.com/_meta/Pokemon_trading_card_game_2_the_invasion_of_team_GR/IMG_9766-cb5fb01df322e927.png", + "source": "https://kdrive.infomaniak.com/app/share/1670975/5ffed29e-03c7-45e1-bb2e-735b4aa89514", + "library_path": "—", + "play_status": "Unplayed", + "scrape_dir": "Pokemon_trading_card_game_2_the_invasion_of_team_GR", + "type": [], + "tags": [ + "hack", + "source/discord" + ], + "summary": "Game Description: Pokémon Card GB2: Here Comes Team GR!, abbreviated Pokémon Card GB2, is the Japan-only sequel to Pokémon Trading Card Game. The game story revolves around a new villainous team, Team Great Rocket, and contains nearly all of the cards from Base Set, Jungle, Fossil, and Team Rocket. The game adds many new features not present in the original, such as new cards, the ability to play as a female character, a much larger in-game world, and a more developed story. This game was English translated Download: https://kdrive.infomaniak.com/app/share/1670975/5ffed29e-03c7-45e1-bb2e-735b4aa89514", + "notability": "", + "story": "", + "features": [], + "links": [ + { + "label": "Link", + "url": "https://kdrive.infomaniak.com/app/share/1670975/5ffed29e-03c7-45e1-bb2e-735b4aa89514" + } + ] + } + ] +} \ No newline at end of file