Customize Pokémon loot drops using Minecraft's loot tables.
Cobblemon Drop Loot Tables is a sidemod for Cobblemon, designed to offer customization for server administrators and modpack creators. This mod enables the use of Minecraft's loot table system to define the items dropped by Pokémon upon defeat in battle or when slain in the world, replacing Cobblemon's default drop mechanism.
LOOT_DROPPED event, ensuring compatibility and responsiveness within the game's ecosystem./data/droploottables/loot_tables/gameplay/pokedrops/species
Each Pokémon species will look for its loot table in this directory using its resource identifier. For example, a Pikachu would look for:
/data/droploottables/loot_tables/gameplay/pokedrops/species/pikachu.json
{
"type": "minecraft:entity",
"pools": [
{
"rolls": 1,
"entries": [
{
"type": "minecraft:item",
"name": "minecraft:yellow_wool",
"functions": [
{
"function": "minecraft:set_count",
"count": {
"min": 1,
"max": 3
}
}
]
}
]
}
]
}
/data/droploottables/loot_tables/gameplay/pokedrops/all.json
Conversation