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

How do I change shiny spinda's spot colors?

Wombatius

Rookie
Member
Joined
Jul 10, 2024
Posts
2
I would just like to know how to change specifically shiny spinda's spot colors to match the custom shiny I made.
 

komeiji514

Elite Trainer
Member
Joined
Oct 28, 2023
Posts
260
It is defined in def pbSpindaSpots(pkmn, bitmap).
Ruby:
Expand Collapse Copy
if pkmn.shiny? #The last three parameters decide the color of spots.
    drawSpot(bitmap, spot1, b + 33, a + 25, -75, -10, -150)
    drawSpot(bitmap, spot2, d + 21, c + 24, -75, -10, -150)
    drawSpot(bitmap, spot3, f + 39, e + 7, -75, -10, -150)
    drawSpot(bitmap, spot4, h + 15, g + 6, -75, -10, -150)
  else
    drawSpot(bitmap, spot1, b + 33, a + 25, 0, -115, -75)
    drawSpot(bitmap, spot2, d + 21, c + 24, 0, -115, -75)
    drawSpot(bitmap, spot3, f + 39, e + 7, 0, -115, -75)
    drawSpot(bitmap, spot4, h + 15, g + 6, 0, -115, -75)
  end
 
Back
Top