• 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

Resource Improved Pokécenters 2017-03-28

mej71

Novice
Member
Joined
Mar 29, 2017
Posts
15
mej71 submitted a new resource:

Improved Pokécenters - Replaces the default Pokéball healing animations with a more immersive one

This script and events were included in Gen 6, but since it's a standalone script, I decided to make a separate post for it.
First thing, add this script in a new section above the main.
Code:
Expand Collapse Copy
class MakeHealingBallGraphics
 def initialize
	balls=[]
	for poke in $Trainer.party
	  balls.push(poke.ballused) if !poke.isEgg?
	end
	return false if balls.length==0
	@sprites={}
	@viewport=Viewport.new(0,0,Graphics.width,Graphics.height)
	@viewport.z=999999
	for i in 0...balls.length...

Read more about this resource...
 
Back
Top