19 lines
364 B
VB.net
19 lines
364 B
VB.net
|
Namespace Items.MegaStones
|
||
|
|
||
|
''' <summary>
|
||
|
''' The Mega Stone for Ampharos.
|
||
|
''' </summary>
|
||
|
<Item(512, "Ampharosite")>
|
||
|
Public Class Ampharosite
|
||
|
|
||
|
Inherits MegaStone
|
||
|
|
||
|
Public Sub New()
|
||
|
MyBase.New("Ampharos", 181)
|
||
|
_textureRectangle = New Rectangle(120, 0, 24, 24)
|
||
|
End Sub
|
||
|
|
||
|
End Class
|
||
|
|
||
|
End Namespace
|