Updated Medicine values

This commit is contained in:
OmegaRuan 2018-08-04 22:07:19 -03:00 committed by GitHub
parent aec6777383
commit 1a6cdc2a92
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 6 additions and 6 deletions

View File

@ -25,7 +25,7 @@ Namespace Items.Medicine
End Sub
Public Overrides Function UseOnPokemon(ByVal PokeIndex As Integer) As Boolean
Return HealPokemon(PokeIndex, 50)
Return HealPokemon(PokeIndex, 30)
End Function
End Class

View File

@ -7,7 +7,7 @@ Namespace Items.Medicine
Public Overrides ReadOnly Property IsHealingItem As Boolean = True
Public Overrides ReadOnly Property Description As String = "A spray-type medicine for treating wounds. It can be used to restore 200 HP to an injured Pokémon."
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 1200
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 1500
Public Sub New()
_textureRectangle = New Rectangle(336, 0, 24, 24)
@ -25,7 +25,7 @@ Namespace Items.Medicine
End Sub
Public Overrides Function UseOnPokemon(ByVal PokeIndex As Integer) As Boolean
Return HealPokemon(PokeIndex, 200)
Return HealPokemon(PokeIndex, 120)
End Function
End Class

View File

@ -25,7 +25,7 @@ Namespace Items.Medicine
End Sub
Public Overrides Function UseOnPokemon(ByVal PokeIndex As Integer) As Boolean
Return HealPokemon(PokeIndex, 80)
Return HealPokemon(PokeIndex, 70)
End Function
End Class

View File

@ -25,7 +25,7 @@ Namespace Items.Medicine
End Sub
Public Overrides Function UseOnPokemon(ByVal PokeIndex As Integer) As Boolean
Return HealPokemon(PokeIndex, 60)
Return HealPokemon(PokeIndex, 50)
End Function
End Class

View File

@ -25,7 +25,7 @@ Namespace Items.Medicine
End Sub
Public Overrides Function UseOnPokemon(ByVal PokeIndex As Integer) As Boolean
Return HealPokemon(PokeIndex, 50)
Return HealPokemon(PokeIndex, 60)
End Function
End Class