• Do not use Discord to host any images you post, these links expire quickly! You can learn how to add images to your posts here.
  • The Eevee Expo Game Jam has concluded! 🎉 Head on over to the game jam forum to play through the games.
    Don't forget to come back September 21st to vote for your favorites!
  • Reminder: AI-generated content is not allowed on the forums per the Rules and Regulations. Please contact us if you have any questions!
Resource icon

Resource Custom Field Effects(deprecated) v1.0.6

Nevermind, I have resolved my issue. It was due to a separate plugin and this one works perfectly alright.
 
Since my main work focus on AI in ESS 20.1 now, so this plugin won't update anymore.
This plugin is not a download-copy-paste one, but I think it is enough for you to start to make your very own field effect.
Yes, I made a 20.1 version of this plugin, but it is too person-like, you don't gonna like it, nothing can help, maybe.
Thank you.
 
OK so lately ive been having issues with the seeds... Sometimes they work properly and other times they dont.. For isntance
Battle::ItemEffects::TerrainStatBoost.add(:TELLURICSEED,
proc { |item, battler, battle|
next false if ![:RockyField].include?(battle.field.terrain)
itemName = GameData::Item.get(item).name
if battler.pbCanRaiseStatStage?(:DEFENSE, battler) || battler.pbCanRaiseStatStage?(:SPEED, battler)
battle.pbCommonAnimation("UseItem", battler)
if [:RockyField].include?(battle.field.terrain)
battler.pbRaiseStatStageByCause(:DEFENSE, 1, battler, itemName) if battler.pbCanRaiseStatStage?(:DEFENSE, battler)
battler.pbRaiseStatStageByCause(:SPEED, 1, battler, itemName) if battler.pbCanRaiseStatStage?(:SPEED, battler)
end
end
}
)
It works sometimes in battles and other times nothing.,.
 
OK so lately ive been having issues with the seeds... Sometimes they work properly and other times they dont.. For isntance
Battle::ItemEffects::TerrainStatBoost.add(:TELLURICSEED,
proc { |item, battler, battle|
next false if ![:RockyField].include?(battle.field.terrain)
itemName = GameData::Item.get(item).name
if battler.pbCanRaiseStatStage?(:DEFENSE, battler) || battler.pbCanRaiseStatStage?(:SPEED, battler)
battle.pbCommonAnimation("UseItem", battler)
if [:RockyField].include?(battle.field.terrain)
battler.pbRaiseStatStageByCause(:DEFENSE, 1, battler, itemName) if battler.pbCanRaiseStatStage?(:DEFENSE, battler)
battler.pbRaiseStatStageByCause(:SPEED, 1, battler, itemName) if battler.pbCanRaiseStatStage?(:SPEED, battler)
end
end
}
)
It works sometimes in battles and other times nothing.,.
Honestly I don't know the reason, it seems right.
 
Back
Top