P3D-Legacy/P3D/Pokemon/Items/Medicine/ShinyCandy.vb

47 lines
1.7 KiB
VB.net
Raw Normal View History

2016-09-19 03:26:44 +02:00
Namespace Items.Medicine
2016-09-07 18:50:38 +02:00
<Item(501, "Shiny Candy")>
2016-09-07 18:50:38 +02:00
Public Class ShinyCandy
Inherits MedicineItem
2016-09-07 18:50:38 +02:00
2016-09-20 05:11:31 +02:00
Public Overrides ReadOnly Property Description As String = "This mysterious candy sparkles when unwrapped. It attracts all sorts of Pokémon."
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 4800
Public Overrides ReadOnly Property MaxStack As Integer = 1
Public Overrides ReadOnly Property CanBeHold As Boolean = False
2022-05-07 00:45:59 +02:00
Public Overrides ReadOnly Property PluralName As String = "Shiny Candies"
2016-09-07 18:50:38 +02:00
2016-09-20 05:11:31 +02:00
Public Sub New()
_textureRectangle = New Rectangle(96, 240, 24, 24)
2016-09-07 18:50:38 +02:00
End Sub
Public Overrides Sub Use()
Dim selScreen = New PartyScreen(Core.CurrentScreen, Me, AddressOf Me.UseOnPokemon, "Use " & Me.Name, True) With {.Mode = Screens.UI.ISelectionScreen.ScreenMode.Selection, .CanExit = True}
AddHandler selScreen.SelectedObject, AddressOf UseItemhandler
Core.SetScreen(selScreen)
2016-09-07 18:50:38 +02:00
End Sub
Public Overrides Function UseOnPokemon(ByVal PokeIndex As Integer) As Boolean
Dim p As Pokemon = Core.Player.Pokemons(PokeIndex)
2022-04-24 23:12:55 +02:00
If Not p.IsShiny Then
p.IsShiny = True
2016-09-07 18:50:38 +02:00
2022-04-24 23:12:55 +02:00
SoundManager.PlaySound("Use_Item", False)
Screen.TextBox.Show("The Pokémon sparkled." & RemoveItem())
PlayerStatistics.Track("[17]Medicine Items used", 1)
Return True
Else
Screen.TextBox.Show("Cannot use shiny candy~on this Pokémon.", {}, False, False)
Return False
End If
2016-09-07 18:50:38 +02:00
End Function
End Class
2016-09-19 03:26:44 +02:00
End Namespace