• The Eevee Expo Game Jam #10 has concluded, congratulations to all participants! Now it's time for the judges to play through the games, and you can play along to vote who deserves the community choice spotlight.
    You can check out the submitted games here!
    Play through the games and provide some feedback to the devs while you're at it!
  • Hi, Guest!
    Some images might be missing as we move away from using embedded images, sorry for the mess!
    From now on, you'll be required to use a third party to host images. You can learn how to add images here, and if your thread is missing images you can request them here.
    Do not use Discord to host any images you post, these links expire quickly!

Finding the scripts for abilities that aren't in Battle_AbilityEffects?

Kezov

Rookie
Member
Joined
Sep 26, 2023
Posts
1
I'm trying to find other abilities so I can learn how they work and try to make my own, but it seems a lot of them are not in the Battle_AbilityEffects script despite being in the game and working.

I've tried to ctrl-f to find a few elsewhere, but end up just finding references to them or parts of them rather than their main block of code. Any help or advice would be appreciated.

For the sake of having an example, Disguise is one I'm looking for and I can only find reference to it in Battle_DamageState and Battle_ItemEffects
 

Swdfm

Game Developer
Member
Joined
Sep 3, 2018
Posts
25
So, with some abilities, they have to be split into two or more parts
For example, Sheer Force has to be split into:
  • More damage
  • No additional effect
These cannot be done in one block, and it is a lot simplier to add them into the two sections where they're relevant
If you are looking at making custom abilities off old abilities, your best bet is to see which old abilities match it closely, then search for them, and then work out which lines are useful to help make your new one
Hope this helps!
Swdfm
 
Back
Top