• 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.
Resource icon

Boss HAs: Life Force + Carnage Wings (Xerneas + Yveltal) 1.0

Pokémon Essentials Version
v17.2 ➖
Here are a couple of abilities that I have worked on and tested back in v16.2 Essentials; currently untested with v17.2 Essentials, but it should work unless otherwise reported. Simply put them in the script section PokeBattle_Battle. Locations vary within the script depending on which ability you're dealing with.

Life Force (AKA "Natural" Leftovers) - Find the following in PokeBattle_Battle:
#Held Berries/Leftovers/Black Sludge

Place this directly above it:
#Life Force
next if i.isFainted?
if i.hasWorkingAbility(:LIFEFORCE)
i.effects[PBEffects::LifeForce]
PBDebug.log("[Ability triggered] #{i.pbThis}'s Life Force")
hpgain=(i.totalhp/16).floor
hpgain=i.pbRecoverHP(hpgain,true)
pbDisplay(_INTL("{1}'s Life Force restored a little HP!",i.pbThis)) if hpgain>0​
end

Carnage Wings (AKA Speed Boost for Sp.Atk) - Find the following in PokeBattle_Battle:
# Bad Dreams

Place this directly above it:
#Carnage Wings
next if i.isFainted?
if i.turncount>0 && i.hasWorkingAbility(:CARNAGEWINGS)
if i.pbIncreaseStatWithCause(PBStats::SPATK,1,i,PBAbilities.getName(i.ability))
PBDebug.log("[Ability triggered] #{i.pbThis}'s #{PBAbilities.getName(i.ability)}")​
end​
end

These abilities are intended for use with Xeneas and Yveltal as their hidden "boss" abilities (ability 2-5); do not set them in the natural ability slot (ability 0-1), as they would be obtainable, which can break your game's challenge.

You may modify these scripts in the event you want to make your own abilities/modified versions. Just credit back to me!
Credits
Snewper - Life Force/Carnage Wings Script
  • Like
Reactions: Marina
Author
Snewper
Views
1,191
First release
Last update

Ratings

0.00 star(s) 0 ratings
Back
Top