PixelSeasons
Dependencies
This modification requires the following components:
- Pixelmon (Minecraft 1.12.2 version)
- SereneSeasons (Minecraft 1.12.2 version)
Installation
The installation process is straightforward:
- Ensure you have all required mods installed in the correct version
- Place the PixelSeasons file in the mods directory
- Launch the game - everything is ready to use!
Configuration
To begin setup:
- Enable external JSON spawn files in Pixelmon
- Customize spawn conditions according to your needs
PixelSeasons adds three types of Pokémon spawn conditions related to seasons:
- seasons - defines the main season
- subSeasons - sets the sub-season (early, mid, late)
- tropicalSeasons - determines the tropical season
Values for these parameters can be set in any case (case-insensitive).
Spawn Configuration Example
Here's a JSON configuration example for the Pokémon Entei, which spawns only during early and mid-summer periods:
{
"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
}
]
}
This configuration allows the legendary Pokémon Entei to appear only during specific periods of the year, adding seasonal dynamics to the gameplay.