- 15
- Posts
- 8
- Years
- Seen May 6, 2021
For anyone whos trying to find out how to put "delta" icon on certain pokemon like in Pokemon Insurgence, Heres the script i made that works in 17.2.
Just go to PokeBattle_Scene then copy paste this under the shiny icon script:
NOTE: the shiny icon script is also edited so the two icons wont overlap.
Just go to PokeBattle_Scene then copy paste this under the shiny icon script:
Code:
# Draw shiny icon
if @battler.isShiny?
shinyX = ((@battler.index&1)==0) ? -6 : 215 # Player's/foe's
imagepos.push(["Graphics/Pictures/shiny",@spritebaseX+shinyX,36,0,0,-1,-1])
end
#Draw Altered icon
alterX = ((@battler.index&1)==0) ? 10 : 201 # Player's/foe's
imagepos.push(["Graphics/Pictures/delta",@spritebaseX+alterX,36,0,0,-1,-1])
if isConst?(battler.species,PBSpecies,:BULBASAURw)
end
NOTE: the shiny icon script is also edited so the two icons wont overlap.