37 lines
1.1 KiB
VB.net
37 lines
1.1 KiB
VB.net
Namespace Items.Wings
|
|
|
|
<Item(258, "Clever Wing")>
|
|
Public Class CleverWing
|
|
|
|
Inherits WingItem
|
|
|
|
Public Overrides ReadOnly Property Description As String = "An item for use on a Pokémon. It slightly increases the base Sp. Def. stat of a single Pokémon."
|
|
|
|
Public Sub New()
|
|
_textureRectangle = New Rectangle(384, 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.EVSpDefense, p) = True Then
|
|
p.EVSpDefense += 1
|
|
|
|
SoundManager.PlaySound("Use_Item", False)
|
|
Screen.TextBox.Show("Raised " & p.GetDisplayName() & "'s~Special Defense.", {}, False, False)
|
|
PlayerStatistics.Track("[254]Wings used", 1)
|
|
|
|
p.CalculateStats()
|
|
RemoveItem()
|
|
Return True
|
|
Else
|
|
Screen.TextBox.Show("Cannot raise~" & p.GetDisplayName() & "'s Special Defense.", {}, False, False)
|
|
|
|
Return False
|
|
End If
|
|
End Function
|
|
|
|
End Class
|
|
|
|
End Namespace
|