37 lines
1.1 KiB
VB.net
37 lines
1.1 KiB
VB.net
Namespace Items.Wings
|
|
|
|
<Item(254, "Health Wing")>
|
|
Public Class HealthWing
|
|
|
|
Inherits WingItem
|
|
|
|
Public Overrides ReadOnly Property Description As String = "An item for use on a Pokémon. It slightly increases the base HP stat of a single Pokémon."
|
|
|
|
Public Sub New()
|
|
_textureRectangle = New Rectangle(288, 240, 24, 24)
|
|
End Sub
|
|
|
|
Public Overrides Function UseOnPokemon(PokeIndex As Integer) As Boolean
|
|
Dim p As Pokemon = Core.Player.Pokemons(PokeIndex)
|
|
|
|
If CanUseWing(p.EVHP, p) = True Then
|
|
p.EVHP += 1
|
|
|
|
SoundManager.PlaySound("Use_Item", False)
|
|
Screen.TextBox.Show("Raised " & p.GetDisplayName() & "'s~HP.", {}, False, False)
|
|
PlayerStatistics.Track("[254]Wings 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
|