Item Injector | By Lachlan Young
Then paste into the game's Console with ...
These inject directly into your save data. Use a separate paste from the item command above.
Adds a Lv.1 Gholdengo to your PC box. In-game this is normally unlocked by purchasing the Gimmighoul item for 10 billion gold.
Adds the specified amount to your current gold balance. Max cap is $99,999,999,999.
Enables instakill for the Bicycle item. Any Pokemon with the Bicycle equipped will one-shot enemies. Run in console while playing (no restart needed). Effect lasts until game is closed.
The command reads your save data from localStorage, adds the selected items (skipping any you already own), and writes it back. Here's the logic:
// 1. Read save data from localStorage var d = JSON.parse(localStorage.getItem("data")); // 2. Check save data exists if (!d || !d.save || !d.save.player || !d.save.player.items) { alert("ERROR: No save data found."); return; } // 3. For each selected item, add if not already owned var added = []; var skipped = []; selectedItems.forEach(function(id) { if (d.save.player.items.some(function(i) { return i.id === id; })) { skipped.push(id); } else { d.save.player.items.push({ id: id }); added.push(id); } }); // 4. Save and report results localStorage.setItem("data", JSON.stringify(d)); alert("Added: " + added.length + ", Skipped: " + skipped.length);
Q: DevTools won't open
Make sure the game window is focused (click on it first). On Mac use Cmd+Option+I, on Windows/Linux use Ctrl+Shift+I. If the shortcut conflicts with another app, try F12 on Windows/Linux.
Q: I see "No save data found"
You need to have played the game at least once so a save file exists. Start a new game, reach the map, then try again.
Q: Items say "skipped"
Skipped items are ones you already own. Only new items get added.
Q: Nothing happened after pasting
Make sure you pasted into the Console tab (not Elements or Sources). Also make sure you pressed Enter after pasting. You should see an alert pop up.
Q: Items don't appear after restart
Make sure you fully quit the game (not just close the window) and relaunch it. The save is written to localStorage, which persists between sessions.