NoMonsInMyWorld

Quick rating

NoMonsInMyWorld

No reviews yet

a lightweight, server-side Minecraft Fabric mod for Cobblemon that gives you per-world control over Pokémon spawning. Block specific species, filter by type/shiny status, or completely disable spawns in hub worlds, minigame maps, or curated dimensions.

QoL & Tweaks
Mod Loaders
Fabric
Minecraft

Community voices

Reviews

Versions
Loading versions…
Match includes

Click once to include, again to exclude, again to clear

Rating Any
Any 0.5 1.0 1.5 2.0 2.5 3.0 3.5 4.0 4.5 5.0
Min
Max
Play Status
Reviews
Time Played
hrs+
Verified developers only
Has developer response
List view
Grid view
Compact view
Sort by
Date
Rating
Helpful
Unhelpful
Edited
Sort ascending
Delete this review?

This removes your review from the project. You can write a new review after.

Review submitted for moderation

Your review has been sent to moderators, who will check that it meets our guidelines before it appears publicly.

No reviews yet. Be the first to review this project!

Get it on

Available Platforms

Compatibility

Supported Environments

Dev Environment
Client Unsupported
Server Required

About

Project Details

Type
Mod
License
MIT License
Latest Version
nomonsinmyworld-1.0.3.jar
Authors
CurseForge
Modrinth

For authors

Embed Badge

If you're the author of this project, you can embed a live badge anywhere that supports HTML or Markdown. It updates automatically whenever ratings change.

Custom banner text
ModDex rating badge preview

Use HTML for any page that supports it, or Markdown for README files and Markdown-based descriptions.

Identifiers

Platform IDs

CurseForge ID
Modrinth ID

Resources

External Links

Source Issues Wiki Discord

About

Description

NoMonsInMyWorld

NoMonsInMyWorld is a lightweight, server-side Minecraft Fabric mod for Cobblemon that gives you per-world control over Pokémon spawning. Block specific species, filter by type/shiny status, or completely disable spawns in hub worlds, minigame maps, or curated dimensions.

Features

Per-World Spawning Control

  • Species Blacklists: Block specific Pokémon by ID in any world (e.g., cobblemon:rattata)
  • Advanced Conditions: Filter by type (type=ghost), shiny/legendary status (shiny=true), or any Pokémon property
  • Global Spawn Toggle: Disable ALL Cobblemon spawns per-world with one config option
  • Owned Pokémon Filter: Allow player-owned Pokémon to be summoned even in worlds where wild spawns are blocked

Per-World Riding Control (New!)

  • Dimension-Specific Bans: Completely disable the ability to ride Pokémon in specific worlds (perfect for spawns or hubs)
  • Mount Whitelisting/Blacklisting: Prevent players from riding specific species (e.g., ban cobblemon:charizard in the Overworld)
  • Conditional Riding: Restrict riding based on properties (e.g., prevent riding legendary=true Pokémon in survival worlds)

Simple JSON Configuration

  • Automatic config versioning and backup (no manual migration needed)
  • Live reload support
  • Clear syntax: use species IDs, property filters, or boolean flags
{
  "version": "1.0.0",
  "worlds": {
    "minecraft:overworld": {
      "spawning": {
        "disallowedSpecies": ["cobblemon:rattata", "cobblemon:pidgey"],
        "exclusionConditions": ["type=ghost", "shiny=true"],
        "disableAll": false,
        "excludeOwnedPokemon": true
      },
      "riding": {
        "disallowedSpecies": ["cobblemon:charizard"],
        "exclusionConditions": ["legendary=true"],
        "disableAll": false,
        "excludeOwnedPokemon": false
      }
    },
    "minecraft:the_nether": {
      "spawning": {
        "disallowedSpecies": [],
        "exclusionConditions": [],
        "disableAll": true,
        "excludeOwnedPokemon": true
      },
      "riding": {
        "disallowedSpecies": [],
        "exclusionConditions": [],
        "disableAll": true,
        "excludeOwnedPokemon": false
      }
    }
  }
}

Performance & Safety

  • 100% Server-Side: No client mods required
  • Zero Tick Overhead: Event-based, runs only when Cobblemon tries to spawn

Dependencies

NoMonsInMyWorld

NoMonsInMyWorld is a lightweight but powerful server-side utility for Cobblemon that gives you precise, per-world control over both Pokémon spawning and riding. Whether you need to create a Pokémon-free hub, ban specific species from a dimension, or prevent players from riding legendaries in certain worlds, this mod provides a simple, config-driven solution.

Dependencies


Features

  • Per-World Spawning Rules: Create unique spawning rules for each dimension. Completely disable spawning in your hub, allow only specific types in another, and leave the main world untouched.
  • Advanced Spawn Filtering: Block Pokémon using simple species names (e.g., cobblemon:zubat) or use powerful conditions to filter by type (type=flying), rarity (legendary=true), or attribute (shiny=true).
  • Per-World Riding Rules: Independently control which Pokémon can be ridden in each dimension. Completely disable riding in event worlds or blacklist specific powerful mounts from your survival worlds.
  • Owned Pokémon Protection: A smart filter allows players to send out their own Pokémon, even in dimensions where wild spawns of that species are disabled.
  • Live Reload: A simple command lets you apply configuration changes instantly without needing a server restart.
  • 100% Server-Side: No installation is required for players to join your server.

Commands

The mod is designed to be managed primarily through its configuration file, with a single command for convenience.

Command Permission Description
/nomonsinmyworld reload nomonsinmyworld.reload Reloads the config.json file from disk, applying any changes immediately.

Configuration

NoMonsInMyWorld uses a single, easy-to-understand configuration file located at config/nomonsinmyworld/config.json. The entire configuration is managed within a worlds object, where you can add an entry for each dimension you want to control.

Example Configuration

{
  "version": "1.0.0",
  "worlds": {
    // Rules for the Overworld
    "minecraft:overworld": {
      "spawning": {
        "disallowedSpecies": ["cobblemon:rattata", "cobblemon:pidgey"],
        "exclusionConditions": ["type=ghost", "shiny=true"],
        "disableAll": false,
        "excludeOwnedPokemon": true
      },
      "riding": {
        "disallowedSpecies": ["cobblemon:charizard"],
        "exclusionConditions": ["legendary=true"],
        "disableAll": false,
        "excludeOwnedPokemon": false
      }
    },
    // Rules for a hub world (e.g., from another mod)
    "some_mod:hub_world": {
      "spawning": {
        "disableAll": true, // Master switch to block all wild spawns
        "excludeOwnedPokemon": true // Still allows players to send out their own Pokémon
      },
      "riding": {
        "disableAll": true // Master switch to block all riding
      }
    }
  }
}

Spawning Control (spawning section)

This section controls which wild Pokémon are allowed to spawn in a dimension.

Setting Description
disableAll The master switch. If true, no wild Pokémon will spawn in this world, and all other spawning rules are ignored.
disallowedSpecies A list of Pokémon species to block by name. Example: ["cobblemon:zubat", "cobblemon:magikarp"].
exclusionConditions (Powerful!) A list of conditions used to filter spawns. The syntax is key=value. This allows you to block entire categories of Pokémon. Examples: ["type=dragon"], ["legendary=true"], ["shiny=true"].
excludeOwnedPokemon A critical safety feature. If true (default), the spawn-blocking rules will not apply to Pokémon being sent out of a Poké Ball by a player. This prevents the mod from interfering with a player's own team.

Riding Control (riding section)

This section controls which Pokémon players are allowed to mount and ride in a dimension.

Setting Description
disableAll The master switch. If true, players will be unable to mount or ride any Pokémon in this world.
disallowedSpecies A list of specific Pokémon species that cannot be ridden. Perfect for banning certain powerful or large mounts. Example: ["cobblemon:rayquaza"].
exclusionConditions A list of conditions to prevent riding. This is extremely useful for creating server-wide rules. Example: ["legendary=true"] would prevent anyone from riding a legendary Pokémon in this dimension.
excludeOwnedPokemon This is typically set to false for riding, as the intention is to control the player's ability to mount their own Pokémon. If true, the riding rules would be ignored.

Screenshots

Gallery

This project has no gallery images yet.

Versions

Files

Relations

Project Relations

More like this

Similar Mods

Suggestions use data such as tags, dependencies, dependents, descriptions, titles, and more to rank how much they overlap with this mod.

On ModDex

Community snapshot

0
Ratings
0
Followers
0
In stacks

By the numbers

Statistics

~1,000
Total Downloads
CurseForge
<1,000
Modrinth
<1,000
Last Updated
CurseForge
Modrinth
Created
CurseForge
Modrinth
Last synced
When ModDex last fetched this project from CurseForge or Modrinth. Every project is re-checked on a schedule, and any project that ships a new file is synced automatically within hours of the release.
New file updates sync automatically
How syncing works