PokéPath TD

Item Injector | By Lachlan Young

1
Open PokéPath TD
Launch the game and load your save (reach the map screen).
2
Choose items below
Select one or more items to add to your inventory.
3
Open Developer Tools
Press ... while the game window is focused.
4
Click the Console tab
At the top of the DevTools panel, click Console.
5
Paste the command
Click "Copy Command" below, paste into the console and press Enter.
6
Restart the game
Close DevTools, then quit and relaunch PokéPath TD. The items will be in your inventory.
Select Items 0 selected

Then paste into the game's Console with ...


Experimental Features

These inject directly into your save data. Use a separate paste from the item command above.

Gholdengo SECRET

Adds a Lv.1 Gholdengo to your PC box. In-game this is normally unlocked by purchasing the Gimmighoul item for 10 billion gold.


Add Gold

Adds the specified amount to your current gold balance. Max cap is $99,999,999,999.


Bicycle Instakill

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.

What does this do?

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);
FAQ / Troubleshooting

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.