CobbleScheduler - Calendar-Based Cobblemon Pokemon Spawn Scheduler
CobbleScheduler is a Fabric server-side modification that enables server administrators to schedule the appearance of Cobblemon pokemon and their special forms according to specific calendar dates. The entire system is configured through a single configuration file.
Features and Configuration
To configure the appearance of only special forms, add the form identifier after the pokemon's name. For example: meaning the use of custom form "newyear". Specified as parameter = "pichu newyear".
The list of allowed biomes is formatted as an array:
"allowedBiomes": [
"minecraft:forest",
"minecraft:plains"
]
Default Configuration File
{
"holidays": [
{
"holiday": "New Year's Day",
"startDate": "01-01",
"pokemonEntityList": [
{
"name": "pichu",
"level": 10,
"spawn_rate": 0.6,
"allowedBiomes": []
},
{
"name": "clefairy",
"level": 15,
"spawn_rate": 0.4,
"allowedBiomes": []
}
],
"holidayMessage": "Happy New Year! Celebrate with a special Pichu!"
},
{
"holiday": "March Break",
"startDate": "03-10",
"endDate": "03-14",
"pokemonEntityList": [
{
"name": "togekiss",
"level": 15,
"spawn_rate": 0.7,
"allowedBiomes": []
},
{
"name": "leafeon",
"level": 40,
"spawn_rate": 0.3,
"allowedBiomes": []
}
],
"holidayMessage": "Enjoy your March Break Pokemon Spawns!"
},
{
"holiday": "Independence Day",
"startDate": "07-04",
"pokemonEntityList": [
{
"name": "pikachu",
"level": 25,
"spawn_rate": 0.7,
"allowedBiomes": []
},
{
"name": "charizard",
"level": 40,
"spawn_rate": 0.3,
"allowedBiomes": []
}
],
"holidayMessage": "Celebrate freedom with a Pikachu and Charizard!"
},
{
"holiday": "Thanksgiving",
"startDate": "11-25",
"pokemonEntityList": [
{
"name": "farfetchd",
"level": 20,
"spawn_rate": 0.5,
"allowedBiomes": []
},
{
"name": "squirtle",
"level": 10,
"spawn_rate": 0.5,
"allowedBiomes": []
}
],
"holidayMessage": "Give thanks with Farfetch'd and Squirtle!"
},
{
"holiday": "Halloween",
"startDate": "10-31",
"pokemonEntityList": [
{
"name": "gastly",
"level": 25,
"spawn_rate": 0.6,
"allowedBiomes": []
},
{
"name": "pumpkaboo",
"level": 20,
"spawn_rate": 0.4,
"allowedBiomes": []
}
],
"holidayMessage": "Spooky season with Gastly and Pumpkaboo!"
},
{
"holiday": "Christmas",
"startDate": "12-25",
"pokemonEntityList": [
{
"name": "delibird",
"level": 15,
"spawn_rate": 0.7,
"allowedBiomes": [
"minecraft:forest",
"minecraft:plains"
]
},
{
"name": "snorlax",
"level": 35,
"spawn_rate": 0.3,
"allowedBiomes": [
"minecraft:forest",
"minecraft:plains"
]
}
],
"holidayMessage": "Merry Christmas with Delibird and Snorlax!"
}
],
"cooldown": 7200000,
"sendMessagesEnabled": false,
"messageCooldown": 7200000
}