Logo
MINECRAFTBIBLE
Items
Items

All game items

Blocks
Blocks

Building blocks

Mobs
Mobs

Creatures & monsters

Biomes
Biomes

World biomes

Structures
Structures

Generated structures

Recipes
Recipes

Crafting guides

Advancements
Advancements

Achievements

Loot Tables
Loot Tables

Drop rates

Tags
Tags

Item groupings

All Versions
View all data →
Capes
Cape ArchiveNEW

Browse rare Minecon capes, OptiFine capes, and custom capes from players worldwide

Browse

Player Database
Player DatabasePopular

Search any player

Skin Browser
Skin Browser

Browse & download skins

Cape Gallery
Cape GalleryNEW

Minecon & OptiFine capes

Seed Vault
Seed Vault

Curated seeds

Learn

Guides
GuidesNew

Tutorials & tips

Blog
Blog

News & updates

Community

Community Hub
Community HubHub

Posts, discussions & more

All Versions
View community →
Seed Analyzer
Seed Analyzer

World seed analysis

Loot Explorer
Loot Explorer

Drop rates

Crafting Calculator
Crafting Calculator

Material planning

Enchant Calculator
Enchant Calculator

Probability math

Redstone Lab
Redstone Lab

Signal timing

Trading Profit
Trading Profit

Villager ROI

All Versions
View all tools →
Mods
Mods

Browse all mods

Plugins
Plugins

Server plugins

Resource Packs
Resource Packs

Textures & sounds

Shaders
Shaders

Visual enhancements

Datapacks
Datapacks

World logic

Scanner
Mod Intelligence

Scan & analyze any mod

All Versions
View all mods →
Loading...
IntroductionIntroductionVersion HistoryVersion HistoryGuidesGuidesBlog & NewsBlog & News
ItemsItemsBlocksBlocksMobsMobsRecipesRecipesBiomesBiomesStructuresStructuresAdvancementsAdvancementsLoot TablesLoot TablesTagsTags
ModsModsPluginsPluginsResource PacksResource PacksShadersShadersDatapacksDatapacks

MinecraftBible

The Ultimate Wiki

Logo
MINECRAFTBIBLE

The ultimate Minecraft reference. Every item, block, mob, and recipe documented with precision.

Community

  • Skin Browser
  • Cape Gallery
  • Seed Vault
  • Blog
  • Guides

Database

  • Items
  • Blocks
  • Mobs
  • Recipes
  • Biomes
  • Structures

Tools

  • Seed Analyzer
  • Mod Intelligence
  • Crafting Calculator
  • Enchant Calculator

Mods & Packs

  • Mods
  • Plugins
  • Resource Packs
  • Shaders
  • Datapacks

Site & Legal

  • About
  • Authors
  • Editorial Policy
  • Corrections
  • Contact
  • Privacy Policy
  • Terms of Service
  • DMCA
  • Sitemap

© 2026 MinecraftBible. Not affiliated with Mojang or Microsoft.

PrivacyTermsContact
CobbleRegions
ModMIT

CobbleRegions

Server-side Cobblemon sidemod that adds region-based level caps with per-player progression.

31
Downloads
1
Followers
3 months ago
Updated
📦
2
Versions
adventuregame-mechanicsutilityfabricneoforge
Download Latestv1.0.0View on Modrinth

📖About CobbleRegions

CobbleRegions

Server-side Cobblemon sidemod that adds region-based level caps with per-player progression.

Each Minecraft world/dimension is assigned to a Region. Every Region has its own ordered cap track
(for example: 14 -> 22 -> 28). Players can travel freely, but a Pokemon can never level past the
cap currently unlocked in its origin Region.

Core Behavior

  • The player's current Region is based on their dimension/world.
  • The active cap is the current unlocked cap of that Region.
  • Each Pokemon has a persistent Origin Region (caught/hatched/received).
  • EXP is blocked so Pokemon cannot exceed their Origin Region cap, even in higher-cap Regions.

Config

Config is stored at config/cobbleregions.json on the server.

Example:

{
  "enableProgressCommands": false,
  "regions": [
    {
      "id": "region_a",
      "dimensions": ["minecraft:overworld"],
      "caps": [14, 22, 28, 40],
      "capMessages": {
        "14": "Level cap reached for this region.",
        "22": "Another cap reached."
      }
    },
    {
      "id": "region_b",
      "prerequisite": "region_a",
      "prerequisiteMessage": "Complete {prerequisite} before leveling in {region}.",
      "dimensions": ["minecraft:the_nether"],
      "caps": [14]
    }
  ]
}

If a Region has no caps configured, it is treated as unlimited.

Commands

Command access uses permission node cobbleregions.command.regions (defaults to permission level 2).
Optional progress commands use permission node cobbleregions.command.regions.progress.

  • /regions opens the admin UI for region management.
  • /regions progress get <player> <region> shows a player's cap for the region.
  • /regions progress set <player> <region> <cap> sets a player's cap value for the region.
  • /regions progress advance <player> <region> advances to the next cap.
  • /regions progress reset <player> <region> resets to the first cap.
  • /regions progress complete <player> <region> sets progress to the final cap.

API

The RegionProgressApi class provides programmatic progress control for other mods or integrations.

Notes:

  • Caps must be strictly increasing.
  • Origin Region is set automatically when a Pokemon is captured, hatched, or gained.
  • Progress set requires a cap value that exists in the region's caps list.
  • A region can define a prerequisite; players cannot gain XP in that region until the prerequisite region is completed.
  • Messages support MiniMessage formatting and {cap}, {region}, {prerequisite}, {pokemon} placeholders.
  • The admin UI opens a region list; use Create to enter an id in chat, left-click to edit, right-click to delete.
  • The region edit screen manages dimensions, caps, cap messages, and player progress.

👥 Team & Contributors

kiriheu
kiriheuOwner

⚙️ Compatibility

Environment
🖥️ Server-side
Loaders
fabricneoforge
Minecraft Versions
1.21.1

🔗 Links

Modrinth Page