Classic Missions
📖 Mission Creation Guide for Cobblemissions
This guide will teach you how to create your own custom missions for the Cobblemissions mod. Missions are defined using JSON files located in the config\CobbleMissions\Missions folder.
For example: config\CobbleMissions\Missions\my_custom_mission.json
A mission file has the following general structure:
id
Unique identifier for the mission. Must be different for each mission.
"id": 1
page
The page where the mission appears in the UI menu. Useful for organizing missions by category or pages.
"page": 1
repeatable
Indicates whether the mission can be completed multiple times.
"repeatable": true
cooldown
Indicates whether the mission has a cooldown period after completion.
"cooldown": true
cooldownDuration
Duration of the cooldown. Formats: "15s", "5m", "2h", "1d", "1w". Can be combined: "1d2h30m".
"cooldownDuration": "15s"
{
"id": 1,
"page": 1,
"repeatable": true,
"cooldown": true,
"cooldownDuration": "15s",
"display": { ... },
"id": 15,
"tasks": [ ... ],
"rewards": [ ... ],
"requirement": [ ... ]
}🖥️ Display section: UI visualization
Defines how the mission will appear in the user menu.
material
Item material representing the mission in the UI.
"material": "poke_ball"
title
Title displayed in the menu. Can use placeholders like %status%.
"title": "Capture Mission
[%status%]"
slot
Position in the user interface where the mission will appear (0–53). Assigning a negative slot will prevent it from being displayed in the UI. Example: -1
"slot": 10
lore
Additional text shown on hover. Can include placeholders and color formatting.
See example in JSON
amount
Amount of the item displayed in the UI.
"amount": 1
customModelData
CustomModelData value for custom models.
"customModelData": 0
🎯 Tasks section: Mission Objectives
A mission can have one or more tasks. Each task must be defined within an array.
🎨 Specs, Further customize and specify your missions
species
Pokémon species name. This is written without a key and should be the first value.
Pikachu
level / lvl
Exact Pokémon level required.
lvl:25
shiny
Whether the Pokémon must be shiny.
shiny:true
move / moves
Pokémon must know all listed moves.
moves:Thunderbolt,Quick Attack
ability
Required active ability.
ability:Static
abilities
Pokémon must have all listed abilities.
abilities:Static,Lightning Rod
friendship
Required friendship value.
friendship:200
gender
Pokémon gender. Automatically capitalized.
gender:Male
type
Pokémon must contain this elemental type.
type:Electric
types
Pokémon must contain all listed types.
types:Electric,Steel
nature
Pokémon nature. Automatically capitalized.
nature:Timid
✔️ Full Example Mission
Last updated