Guides

Player-written tips and knowledge for popular Cobblemon modpacks. Not official; focused on practical info missing from wikis.

Community Driven
Expert Tips
Always Updated

Cobbleverse Farming Guide

A quick scuffed guide on farming in Cobbleverse.

Community Guide

Shoutout to azera for making a helpful video on basic Cobbleverse farms. Watch it here:

Watch on YouTube

Pasture Loot Mod

The Pasture Loot mod allows farming of Pokémon drops. Wild Pokémon you defeat in battle will drop their items. Those same items are also dropped when you catch them and place them inside a Pasture Block.

Pokémon in the Pasture Block will occasionally drop their natural items automatically, letting you farm resources (like Gimmighoul Coins) over time.

💡 Pro tip: Victini is arguably one of the best Pokémon to put in a pasture block as it drops fire type gems, nether stars, rare candies, ability capsules and patches.

🔗 Use these resources to check drops:

Pasture Block farming
Credit: Pasture Loot

Farming Pokémon EXP

  • Battle wild Pokémon and trainer NPCs. Make sure your Trainer Card is in your inventory (not in a backpack or chest) so trainers spawn around you.
  • Loot structures for EXP Candies and Rare Candies.
  • Ancient Cities are the best in my opinion.

  • You can buy EXP Candies in Department Stores. See the Items Guide for where to find them.

How to Farm CobbleDollars

  • Trainer & Wild Battles: Battling Pokémon and trainer NPCs gives CobbleDollars. Higher-level trainers reward more.
  • Relic Coin Farming (Pasture Loot): If you built a Gimmighoul farm, you’ll get Relic Coins. Convert these into Relic Coin Pouch and then Relic Coin Sack for maximum profit.
    💰 (Prices: Coin = 50, Pouch = 475, Sack = 4500)
  • Villager Trading: Trade renewable resources for Emeralds, then convert Emeralds into Blocks for profit (emerald block sells high in bank.json).
  • Infinite String Farms: If your server allows string dupers, you can trade strings to Fisherman villagers for Emeralds → Blocks → CobbleDollars.
  • Potions & Vitamins: Sell potions, revives and vitamins (hp up, protein, etc.) — they’re in the default bank.json and can be consistent revenue.

⚖️ Recommended priority: Relic Coin farms > Selling potions/vitamins > Villager stick/emerald trading > String Duper Trades.

Find & edit bank.json

Location (your Minecraft/modpack installation folder):

<installation_folder> / config / cobbledollars / bank.json
  1. Stop the game / server before editing (changes must be applied on restart).
  2. Backup the original file (copy `bank.json` to `bank.json.bak`).
  3. Open bank.json with a text editor (VS Code, Notepad++ or similar).
  4. Edit the bank array — change item entries, add or remove items, or change prices. Make sure the JSON stays valid.
  5. Save the file and restart your game or server. If on a hosted server, restart the server so changes take effect.

Example: here’s the default `bank` array (drop this into your bank.json if you want to restore defaults):

{
  "bank": [
    {
      "item": "minecraft:emerald",
      "price": 750
    },
    {
      "item": "minecraft:emerald_block",
      "price": 7000
    },
    {
      "item": "cobblemon:relic_coin",
      "price": 50
    },
    {
      "item": "cobblemon:relic_coin_pouch",
      "price": 475
    },
    {
      "item": "cobblemon:relic_coin_sack",
      "price": 4500
    },
    {
      "item": "cobblemon:potion",
      "price": 50
    },
    {
      "item": "cobblemon:super_potion",
      "price": 175
    },
    {
      "item": "cobblemon:hyper_potion",
      "price": 375
    },
    {
      "item": "cobblemon:max_potion",
      "price": 625
    },
    {
      "item": "cobblemon:full_restore",
      "price": 750
    },
    {
      "item": "cobblemon:ether",
      "price": 300
    },
    {
      "item": "cobblemon:max_ether",
      "price": 500
    },
    {
      "item": "cobblemon:elixir",
      "price": 750
    },
    {
      "item": "cobblemon:max_elixir",
      "price": 1125
    },
    {
      "item": "cobblemon:revive",
      "price": 500
    },
    {
      "item": "cobblemon:max_revive",
      "price": 1000
    },
    {
      "item": "cobblemon:hp_up",
      "price": 2500
    },
    {
      "item": "cobblemon:protein",
      "price": 2500
    },
    {
      "item": "cobblemon:iron",
      "price": 2500
    },
    {
      "item": "cobblemon:calcium",
      "price": 2500
    },
    {
      "item": "cobblemon:zinc",
      "price": 2500
    },
    {
      "item": "cobblemon:carbos",
      "price": 2500
    },
    {
      "item": "cobblemon:pp_up",
      "price": 2500
    },
    {
      "item": "cobblemon:pp_max",
      "price": 3500
    },
    {
      "item": "lumymon:glacier_feather",
      "price": 5000
    },
    {
      "item": "lumymon:thunder_feather",
      "price": 5000
    },
    {
      "item": "lumymon:ember_feather",
      "price": 5000
    },
    {
      "item": "lumymon:soul_feather",
      "price": 30000
    }
  ]
}

Tip: Keep price units as plain numbers (no commas). If you mess up, restore from the `.bak` copy and restart.

CobbleDollars bank screen
CobbleDollars merchant bank UI

💬 Still stuck? Join the LUMYVERSE Discord server to ask questions and share discoveries.

📖 Check the Cobbleverse Wiki for official documentation and updates.