19 lines
357 B
VB.net
19 lines
357 B
VB.net
Namespace Items.MegaStones
|
|
|
|
''' <summary>
|
|
''' The Mega Stone for Latias.
|
|
''' </summary>
|
|
<Item(542, "Latiasite")>
|
|
Public Class Latiasite
|
|
|
|
Inherits MegaStone
|
|
|
|
Public Sub New()
|
|
MyBase.New("Latias", 380)
|
|
_textureRectangle = New Rectangle(168, 72, 24, 24)
|
|
End Sub
|
|
|
|
End Class
|
|
|
|
End Namespace
|