add Light and Dark Stones as 651 and 652

This commit is contained in:
darkfire006 2019-10-13 18:05:35 -05:00
parent 4223556cb3
commit adb048805c
5 changed files with 34 additions and 0 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 180 KiB

After

Width:  |  Height:  |  Size: 140 KiB

View File

@ -26231,6 +26231,8 @@
<Compile Include="Pokemon\Items\Gems\RockGem.vb" />
<Compile Include="Pokemon\Items\Gems\SteelGem.vb" />
<Compile Include="Pokemon\Items\Gems\WaterGem.vb" />
<Compile Include="Pokemon\Items\KeyItems\LightStone.vb" />
<Compile Include="Pokemon\Items\KeyItems\DarkStone.vb" />
<Compile Include="Pokemon\Items\KeyItems\LibertySeaMap.vb" />
<Compile Include="Pokemon\Items\Machines\TM171.vb" />
<Compile Include="Pokemon\Items\Machines\TM172.vb" />

View File

@ -0,0 +1,16 @@
Namespace Items.KeyItems
<Item(652, "Dark stone")>
Public Class DarkStone
Inherits KeyItem
Public Overrides ReadOnly Property Description As String = "Zekrom'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(240, 408, 24, 24)
End Sub
End Class
End Namespace

View File

@ -0,0 +1,16 @@
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

Binary file not shown.