From 4077bf3aa7738c67eaa7bbb84143c65c6de07fea Mon Sep 17 00:00:00 2001 From: Capt_Segis Date: Tue, 13 Sep 2016 01:47:47 -0500 Subject: [PATCH] Create FoulPlay.vb Used Crunch as template --- .../2.5DHero/Pokemon/Attacks/Dark/FoulPlay.vb | 58 +++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 2.5DHero/2.5DHero/Pokemon/Attacks/Dark/FoulPlay.vb diff --git a/2.5DHero/2.5DHero/Pokemon/Attacks/Dark/FoulPlay.vb b/2.5DHero/2.5DHero/Pokemon/Attacks/Dark/FoulPlay.vb new file mode 100644 index 000000000..a78592206 --- /dev/null +++ b/2.5DHero/2.5DHero/Pokemon/Attacks/Dark/FoulPlay.vb @@ -0,0 +1,58 @@ +Namespace BattleSystem.Moves.Dark + + Public Class FoulPlay + + Inherits Attack + + Public Sub New() + '#Definitions + Me.Type = New Element(Element.Types.Dark) + Me.ID = 492 + Me.OriginalPP = 15 + Me.CurrentPP = 15 + Me.MaxPP = 15 + Me.Power = 95 + Me.Accuracy = 100 + Me.Category = Categories.Physical + Me.ContestCategory = ContestCategories.Smart + Me.Name = "Foul Play" + Me.Description = " The user turns the target's power against it. The higher the target's Attack stat, the greater the move's power." + Me.CriticalChance = 1 + Me.IsHMMove = False + Me.Target = Targets.OneAdjacentTarget + Me.Priority = 0 + Me.TimesToAttack = 1 + '#End + + '#SpecialDefinitions + Me.MakesContact = True + Me.ProtectAffected = True + Me.MagicCoatAffected = False + Me.SnatchAffected = False + Me.MirrorMoveAffected = True + Me.KingsrockAffected = False + Me.CounterAffected = True + + Me.DisabledWhileGravity = False + Me.UseEffectiveness = True + Me.ImmunityAffected = True + Me.HasSecondaryEffect = True + Me.RemovesFrozen = False + + Me.IsHealingMove = False + Me.IsRecoilMove = False + Me.IsPunchingMove = False + Me.IsDamagingMove = True + Me.IsProtectMove = False + Me.IsSoundMove = False + + Me.IsAffectedBySubstitute = True + Me.IsOneHitKOMove = False + Me.IsWonderGuardAffected = True + Me.IsJawMove = False + '#End + + End Sub + End Class + +End Namespace