mirror of
https://github.com/P3D-Legacy/P3D-Legacy.git
synced 2025-04-08 18:35:09 +02:00
add Light and Dark Stones as 651 and 652
This commit is contained in:
parent
4223556cb3
commit
adb048805c
Binary file not shown.
Before Width: | Height: | Size: 180 KiB After Width: | Height: | Size: 140 KiB |
@ -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" />
|
||||
|
16
P3D/Pokemon/Items/KeyItems/DarkStone.vb
Normal file
16
P3D/Pokemon/Items/KeyItems/DarkStone.vb
Normal 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
|
16
P3D/Pokemon/Items/KeyItems/LightStone.vb
Normal file
16
P3D/Pokemon/Items/KeyItems/LightStone.vb
Normal 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.
Loading…
x
Reference in New Issue
Block a user