Terrain ability pages

This commit is contained in:
Ruan Pablo 2019-09-22 18:45:26 -03:00
parent c80a3a23d5
commit 9a166d3e42
5 changed files with 64 additions and 14 deletions

View File

@ -489,14 +489,14 @@
'Beast Boost 'Beast Boost
'Case 225 'Case 225
'RKS System 'RKS System
'Case 226 Case 226
'Electric Surge Return New Abilities.ElectricSurge()
'Case 227 Case 227
'Psychic Surge Return New Abilities.PsychicSurge()
'Case 228 Case 228
'Misty Surge Return New Abilities.MistySurge()
'Case 229 Case 229
'Grassy Surge Return New Abilities.GrassySurge()
'Case 230 'Case 230
'Full Metal Body 'Full Metal Body
'Case 231 'Case 231
@ -505,8 +505,6 @@
'Prism Armor 'Prism Armor
'Case 233 'Case 233
'Neuroforce 'Neuroforce
'Case 234
'Blank
Case Else Case Else
Return New Abilities.Stench Return New Abilities.Stench
End Select End Select

View File

@ -0,0 +1,13 @@
Namespace Abilities
Public Class ElectricSurge
Inherits Ability
Public Sub New()
MyBase.New(226, "Electric Surge", "Turns the ground into Electric Terrain when the Pokémon enters a battle.")
End Sub
End Class
End Namespace

View File

@ -0,0 +1,13 @@
Namespace Abilities
Public Class GrassySurge
Inherits Ability
Public Sub New()
MyBase.New(229, "Grassy Surge", "Turns the ground into Grassy Terrain when the Pokémon enters a battle.")
End Sub
End Class
End Namespace

View File

@ -0,0 +1,13 @@
Namespace Abilities
Public Class MistySurge
Inherits Ability
Public Sub New()
MyBase.New(228, "Misty Surge", "Turns the ground into Misty Terrain when the Pokémon enters a battle.")
End Sub
End Class
End Namespace

View File

@ -0,0 +1,13 @@
Namespace Abilities
Public Class PsychicSurge
Inherits Ability
Public Sub New()
MyBase.New(227, "Psychic Surge", "Turns the ground into Psychic Terrain when the Pokémon enters a battle.")
End Sub
End Class
End Namespace