Compatibility
Minecraft: Java Edition
Platforms
Supported environments
Links
Creators
Details
Created with https://player.games/create, a no-code AI mod builder.
Santa's Cobblemon is a server-side Fabric mod for Minecraft 1.21.1 designed for Cobblemon servers. It lets admins create customizable "Santa presents" that players can receive and open for rewards. Presents are defined in a JSON config file, where you can list potential item drops, Cobblemon rewards, and their respective chances. Admins (console or OP-level players) can give presents with a command, and players receive them as special Santa-themed skull items.
When a present is opened, the mod rolls each configured reward and gives any successful items or Cobblemon directly to the player. The mod supports custom NBT, custom skull textures, configurable announcement messages, and provides a reload command so changes to the config can take effect without restarting.
Commands:
- /santapresent list
- /santapresent give <player> <present name inside config> <amount>
- /santapresent reload
Default Configuration:
{
"presents": [
{
"id": "standard",
"displayName": "Santa's Welcome Gift",
"description": "Example present that mixes vanilla loot with Cobblemon rolls. Duplicate this block to add more presents.",
"items": [
{
"itemId": "minecraft:diamond",
"min": 1,
"max": 3,
"chance": 75.0
},
{
"itemId": "minecraft:cookie",
"min": 4,
"max": 12,
"chance": 100.0
},
{
"itemId": "minecraft:netherite_scrap",
"min": 1,
"max": 1,
"chance": 15.0
}
],
"cobblemon": [
{
"species": "delibird",
"chance": 35.0,
"level": 25
},
{
"chance": 5.0,
"properties": "species=pikachu level=30 shiny=true"
}
]
},
{
"id": "legendary",
"displayName": "North Pole Vault",
"description": "High tier loot with a low chance to award a configured legendary Cobblemon.",
"items": [
{
"itemId": "minecraft:golden_apple",
"min": 2,
"max": 5,
"chance": 100.0
},
{
"itemId": "minecraft:nether_star",
"min": 1,
"max": 1,
"chance": 20.0
},
{
"itemId": "minecraft:emerald_block",
"min": 2,
"max": 4,
"chance": 60.0
}
],
"cobblemon": [
{
"chance": 10.0,
"properties": "species=articuno level=70 ability=pressure pokeball=master_ball"
}
]
}
],
"skull": {
"customName": "Santa Present",
"lore": [
"Right click to unwrap!",
"Configured via config/santascobblemon.json"
],
"textureValue": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNzhkNjJmMThiNzQ0ZTdmYmZkNmYxZjhkYWQxN2UwYTJhMGI2MDhiMTE4NmY0MGNlZTdiZWU1NzIxMTdjNzkzMCJ9fX0="
},
"announcements": {
"enabled": false,
"messages": [
"{player} unwrapped {present} and received {rewards}"
]
}
}



