Event that makes a Party Pokemon hold an item

CrimsonTy

Jet Black Hero
Member
Joined
Apr 1, 2017
Posts
59
For my game I need to do this and I have no idea how to do so.
I've seen it done before
Example: Pokemon Uranium forces Pokemon to hold Mega Stone

If someone can tell me how thanks!
Also I'm using 17.2
 

xUMG

Hoho-oh?
Member
Joined
Oct 16, 2017
Posts
114
you should read this article in the pokemon essentials thread.

if you cant seem to do it, reply and specify what pokemon do you want to hold the item?, is the pokemon given to you holding an item? etc.
 

Marin

Administrator
Administrator
Here's an example of giving a Pokémon an item (probably not the recommended way though):

Code:
$Trainer.party[0].setItem(:REPEL)
This would make the FIRST Pokémon hold a Repel.

If you want, you can add a message before or after, as this method does not display any text when making it hold an item. If the Pokémon is already holding an item, it will not take that item away first -- it will be deleted. If you could be more specific in that regard, that'd be nice.
 
Top