Changed plate items.

This commit is contained in:
nilllzz 2016-09-20 06:24:12 +02:00
parent 543f63f2a2
commit 9289cd143a
17 changed files with 17 additions and 17 deletions

View File

@ -6,7 +6,7 @@ Namespace Items.Plates
Inherits PlateItem
Public Sub New()
MyBase.New("Draco Plate", 267, Element.Types.Dragon)
MyBase.New(Element.Types.Dragon)
End Sub
End Class

View File

@ -6,7 +6,7 @@ Namespace Items.Plates
Inherits PlateItem
Public Sub New()
MyBase.New("Dread Plate", 268, Element.Types.Dark)
MyBase.New(Element.Types.Dark)
End Sub
End Class

View File

@ -6,7 +6,7 @@ Namespace Items.Plates
Inherits PlateItem
Public Sub New()
MyBase.New("Earth Plate", 269, Element.Types.Ground)
MyBase.New(Element.Types.Ground)
End Sub
End Class

View File

@ -6,7 +6,7 @@ Namespace Items.Plates
Inherits PlateItem
Public Sub New()
MyBase.New("Fist Plate", 270, Element.Types.Fighting)
MyBase.New(Element.Types.Fighting)
End Sub
End Class

View File

@ -6,7 +6,7 @@ Namespace Items.Plates
Inherits PlateItem
Public Sub New()
MyBase.New("Flame Plate", 271, Element.Types.Fire)
MyBase.New(Element.Types.Fire)
End Sub
End Class

View File

@ -6,7 +6,7 @@ Namespace Items.Plates
Inherits PlateItem
Public Sub New()
MyBase.New("Icicle Plate", 272, Element.Types.Ice)
MyBase.New(Element.Types.Ice)
End Sub
End Class

View File

@ -6,7 +6,7 @@ Namespace Items.Plates
Inherits PlateItem
Public Sub New()
MyBase.New("Insect Plate", 273, Element.Types.Bug)
MyBase.New(Element.Types.Bug)
End Sub
End Class

View File

@ -6,7 +6,7 @@ Namespace Items.Plates
Inherits PlateItem
Public Sub New()
MyBase.New("Iron Plate", 274, Element.Types.Steel)
MyBase.New(Element.Types.Steel)
End Sub
End Class

View File

@ -6,7 +6,7 @@ Namespace Items.Plates
Inherits PlateItem
Public Sub New()
MyBase.New("Meadow Plate", 275, Element.Types.Grass)
MyBase.New(Element.Types.Grass)
End Sub
End Class

View File

@ -6,7 +6,7 @@ Namespace Items.Plates
Inherits PlateItem
Public Sub New()
MyBase.New("Mind Plate", 276, Element.Types.Psychic)
MyBase.New(Element.Types.Psychic)
End Sub
End Class

View File

@ -6,7 +6,7 @@ Namespace Items.Plates
Inherits PlateItem
Public Sub New()
MyBase.New("Pixie Plate", 277, Element.Types.Fairy)
MyBase.New(Element.Types.Fairy)
End Sub
End Class

View File

@ -6,7 +6,7 @@ Namespace Items.Plates
Inherits PlateItem
Public Sub New()
MyBase.New("Sky Plate", 278, Element.Types.Flying)
MyBase.New(Element.Types.Flying)
End Sub
End Class

View File

@ -6,7 +6,7 @@ Namespace Items.Plates
Inherits PlateItem
Public Sub New()
MyBase.New("Splash Plate", 279, Element.Types.Water)
MyBase.New(Element.Types.Water)
End Sub
End Class

View File

@ -6,7 +6,7 @@ Namespace Items.Plates
Inherits PlateItem
Public Sub New()
MyBase.New("Spooky Plate", 280, Element.Types.Ghost)
MyBase.New(Element.Types.Ghost)
End Sub
End Class

View File

@ -6,7 +6,7 @@ Namespace Items.Plates
Inherits PlateItem
Public Sub New()
MyBase.New("Stone Plate", 281, Element.Types.Rock)
MyBase.New(Element.Types.Rock)
End Sub
End Class

View File

@ -6,7 +6,7 @@ Namespace Items.Plates
Inherits PlateItem
Public Sub New()
MyBase.New("Toxic Plate", 282, Element.Types.Poison)
MyBase.New(Element.Types.Poison)
End Sub
End Class

View File

@ -6,7 +6,7 @@ Namespace Items.Plates
Inherits PlateItem
Public Sub New()
MyBase.New("Zap Plate", 283, Element.Types.Electric)
MyBase.New(Element.Types.Electric)
End Sub
End Class