38 lines
1.2 KiB
VB.net
38 lines
1.2 KiB
VB.net
Namespace Items.Vitamins
|
|
|
|
<Item(26, "HP Up")>
|
|
Public Class HPUp
|
|
|
|
Inherits VitaminItem
|
|
|
|
Public Overrides ReadOnly Property Description As String = "A nutritious drink for Pokémon. When consumed, it raises the base HP of a single Pokémon."
|
|
|
|
Public Sub New()
|
|
_textureRectangle = New Rectangle(48, 24, 24, 24)
|
|
End Sub
|
|
|
|
Public Overrides Function UseOnPokemon(PokeIndex As Integer) As Boolean
|
|
Dim p As Pokemon = Core.Player.Pokemons(PokeIndex)
|
|
|
|
If CanUseVitamin(p.EVHP, p) = True Then
|
|
p.EVHP += 10
|
|
p.ChangeFriendShip(Pokemon.FriendShipCauses.Vitamin)
|
|
|
|
SoundManager.PlaySound("Use_Item", False)
|
|
Screen.TextBox.Show("Raised " & p.GetDisplayName() & "'s~HP.", {}, False, False)
|
|
PlayerStatistics.Track("[25]Vitamins used", 1)
|
|
|
|
p.CalculateStats()
|
|
RemoveItem()
|
|
Return True
|
|
Else
|
|
Screen.TextBox.Show("Cannot raise~" & p.GetDisplayName() & "'s HP.", {}, False, False)
|
|
|
|
Return False
|
|
End If
|
|
End Function
|
|
|
|
End Class
|
|
|
|
End Namespace
|