- Joined
- Feb 22, 2022
- Posts
- 13
Asforcia submitted a new resource:
Vial of Glitter - An item that makes your pokemon shiny! - Quick and short guide on how to add an item that makes your pokemon shiny!
Read more about this resource...
Vial of Glitter - An item that makes your pokemon shiny! - Quick and short guide on how to add an item that makes your pokemon shiny!
So, first, define your item in Item.txt (PBS)
Here's an example of how it could look:
#-------------------------------
[VIALOFGLITTER]
Name = Vial of Glitter
NamePlural = Vials of Glitter
Pocket = 1
FieldUse = OnPokemon
Price = 15000
Flags = Fling_30
Description = If this item is used, the pokemon is turned shiny.
Then scroll till you find Item_Effects
and paste this at the bottom:
Ruby:ItemHandlers::UseOnPokemon.add(:VIALOFGLITTER, proc { |item, qty, pkmn, scene| if pkmn.shiny...
Read more about this resource...