A moderation message is optional, but it can be used to communicate problems with a project's team members. The body is also optional and supports markdown formatting!
Project moderation
GNU Lesser General Public License v3.0 only
External resources
Featured versions
See allProject members

Hi_Im_Licious
Owner
Technical information
License
LGPL-3.0-only
Client side
optional
Server side
required
Project ID
Dependencies
Installation
- Check if you have both of the required mods installed (see above) while also making sure you're using their 1.12.2 version.
- Drop PixelSeasons in the mods folder.
- Startup your game and you're good to go!
Configuration
- Enable Pixelmon external spawn files.
- Customize your different spawn conditions to fit your goal.
PixelSeasons adds in 3 spawn conditions: seasons, subSeasons and tropicalSeasons. You can populate seasons with any valid Season, subSeasons with a valid SubSeason and tropicalSeasons with a valid Tropical Season. These options are case insensitive.
Here is an example Entei that can only spawn between the early and mid Summer.
{
"id": "Entei",
"spawnInfos": [
{
"spec": {
"name": "Entei",
"level": 70
},
"stringLocationTypes": [
"Land"
],
"tags": [
"legendary"
],
"interval": "legendary",
"typeID": "pokemon",
"condition": {
"times": [
"DAY"
],
"stringBiomes": [
"mountainous",
"volcanic_island"
],
"subSeasons": [
"early_summer",
"Mid_Summer"
]
},
"rarity": 3.0
}
]
}