mirror of
https://github.com/P3D-Legacy/P3D-Legacy.git
synced 2025-07-31 01:35:20 +02:00
Tao Emblem for post Kyurem Minor fix for monochrome stones Heart Gold Emblem for Ho-oh Soul Silver Emblem for Lugia Can be achieved after battle on first encounter event Retroactively achieved by revisiting encounter area
17 lines
430 B
VB.net
17 lines
430 B
VB.net
Namespace Items.KeyItems
|
|
|
|
<Item(651, "Light Stone")>
|
|
Public Class LightStone
|
|
|
|
Inherits KeyItem
|
|
|
|
Public Overrides ReadOnly Property Description As String = "Reshiram's body was destroyed and changed into this stone. It is said to be waiting for the emergence of a hero."
|
|
|
|
Public Sub New()
|
|
_textureRectangle = New Rectangle(216, 408, 24, 24)
|
|
End Sub
|
|
|
|
End Class
|
|
|
|
End Namespace
|