19 lines
362 B
VB.net
19 lines
362 B
VB.net
|
Namespace Items.MegaStones
|
||
|
|
||
|
''' <summary>
|
||
|
''' The Mega Stone for Slowbro.
|
||
|
''' </summary>
|
||
|
<Item(551, "Slowbronite")>
|
||
|
Public Class Slowbronite
|
||
|
|
||
|
Inherits MegaStone
|
||
|
|
||
|
Public Sub New()
|
||
|
MyBase.New("Slowbro", 80)
|
||
|
_textureRectangle = New Rectangle(144, 96, 24, 24)
|
||
|
End Sub
|
||
|
|
||
|
End Class
|
||
|
|
||
|
End Namespace
|