Regarding Suicune, can you also send me the creation method and see the possible error?
Regarding Unow, it's probably due to the NIHILLIGHT movement. Is it added by a plugin?
Indeed. Those are the types of errors my script can produce when entering data that the save isn't designed for.
Although I made sure to mitigate these errors, they seem to have returned when I corrected some things.
You could also pass me the Pokémon you created so I can pinpoint which option...
1-Yes. In fact, the next update will feature examples of how to use the factory for WildBattles and, especially, TrainerBattles.
Example:
def self.brock_figth
trainer_party = []
brock_onix_data = {
species: :ONIX,
level: 14,
nickname: "Goliath"...
I'd need to see the error log to see if my script had anything to do with it. It can also happen if you had a saved game, removed plugins, and tried saving again. I'm testing my script in three different environments (Vanilla 21.1, La Base de Sky, and a FanGame with a significant number of...
If you do it inside the ZBox module in 002_Events:
module Zbox
#==============================================================================
# Example events...
#==============================================================================...
This update brings two new features.
hue_change:
An option that allows you to change the sprite's hue to a value ranging from -360 to 360.
sprite_override:
An option that allows you to change the sprites your Pokémon loads. This doesn't require creating a variant in the PBS, and it still...
Pokémon Factory has been updated to 1.2.0.
This update brings "custom_moves:", which allows you to customize Pokémon moves without having to add a new one to the PBS. You can modify:
-Name
-Description
-Power
-Accuracy
-PP
-Priority
-Type
The effect and animation will not be added for...
This update adds a new feature: variants:.
Its purpose is to provide an easy way to create variations when generating Pokémon, giving each its own weight to be delivered randomly. It can also accept switches and variables as activation conditions. As long as these conditions are not met, the...