Welcome to PokéCommunity! Register now and join one of the best fan communities on the 'net to talk Pokémon and more! We are not affiliated with The Pokémon Company or Nintendo.
Remove self.refresh from code, and hpbar become smooth
def update
# updates the HP increase/decrease animation
if @animatingHP
if @currenthp < @endhp
@currenthp += (@endhp - @currenthp)/10.0
@currenthp = @currenthp.ceil
@currenthp = @endhp if @currenthp >...