File Details
cierpixels-1.5.1.jar
- R
- Jul 9, 2026
- 1.29 MB
- 9
- 1.21.1
- NeoForge
File Name
cierpixels-1.5.1.jar
Supported Versions
- 1.21.1
Curse Maven Snippet
CierPixels 1.5.1 Pufferfish Skills Integration and PixAttr Expansion
- Added Pufferfish Skills as an optional dependency.
- Added the following 5 experience sources for Pufferfish Skills;
cierpixels:pixelmon_battling - Gains experience by battling pokemon.
cierpixels:capturing_pokemon - Gains experience by capturing pokemon.
cierpixels:catching_shiny_pokemon - Gains experience by capturing shiny pokemon.
cierpixels:pixelmon_harvesting - Gains experience by harvesting Pixelmon Berries and Apricorns.
cierpixels:pixelmon_fishing - Gains experience by fishing with Old, Good and Super Rods.
- Changed the
catch_ratemodifier to increase the catch rate of Pokeballs by 1.0 per level. (Effectively +10 at Lv10. Giving this modifier an effective cap of +254/255). Currently displays as 25.5 for 100% catch rate, etc. - Changed the
exp_ratemodifier to give additive EXP rather than multiplicative for more control and removed the 200% ceiling. - Added a new modifier within the Pixattr Functionality, "player_exp" which gives +5 Player EXP per level of battling Pokemon. Example:
/pixattr set @p player_exp 3gives +15 EXP at the end of a Battle with a Pokemon. The idea behind this is to curb the amount of EXP necessary to enjoy all the enchantments added by this mod. - Added a new command
/pixattr gui(press ESC to leave this menu) as an experimental feature, designed to show your combined Catch Rate, Pixelmon EXP Bonus and Shiny Odds provided by this mod and it's underlying systems. Does not eliminatepixattr view.
Currently displays the rates from the mod. However, it also accurately shows the Pixelmon EXP Bonus from both the pixattr commands and the EXP Charm enchantments. Does not currently fully display bonuses provided by the Pokeballrus and Masuda's Method enchantments.
Example experience.json using the above:
{
"level_limit": 100,
"experience_per_level": {
"type": "expression",
"data": {
"expression": "25 + level * 10"
}
},
"sources": [
{
"type": "cierpixels:pixelmon_battling",
"data": {
"experience": 10
}
}
]
}
If it fails to receive an experience value in the data block it defaults to 1. Can stack multiple sources with appropriate values. This is so that utilizing the original code for the command /pixattr (originally written by Block) is no longer codependent on other mods such as FTBQuests and the leisure of the server staff, leaning more towards Pufferfish Skills and other means.