From 7a0b4a6a2192c4de0173aa6e2998c42b012aec6b Mon Sep 17 00:00:00 2001 From: darkfire006 Date: Tue, 20 Dec 2022 10:30:50 -0600 Subject: [PATCH] mark explosive moves --- P3D/Pokemon/Attacks/Normal/Explosion.vb | 1 + P3D/Pokemon/Attacks/Normal/Self-Destruct.vb | 1 + 2 files changed, 2 insertions(+) diff --git a/P3D/Pokemon/Attacks/Normal/Explosion.vb b/P3D/Pokemon/Attacks/Normal/Explosion.vb index 95a7ed3e7..965994844 100644 --- a/P3D/Pokemon/Attacks/Normal/Explosion.vb +++ b/P3D/Pokemon/Attacks/Normal/Explosion.vb @@ -45,6 +45,7 @@ Me.IsDamagingMove = True Me.IsProtectMove = False Me.IsSoundMove = False + Me.IsExplosiveMove = True Me.IsAffectedBySubstitute = True Me.IsOneHitKOMove = False diff --git a/P3D/Pokemon/Attacks/Normal/Self-Destruct.vb b/P3D/Pokemon/Attacks/Normal/Self-Destruct.vb index ae3c9b9aa..cbc48d239 100644 --- a/P3D/Pokemon/Attacks/Normal/Self-Destruct.vb +++ b/P3D/Pokemon/Attacks/Normal/Self-Destruct.vb @@ -45,6 +45,7 @@ Me.IsDamagingMove = True Me.IsProtectMove = False Me.IsSoundMove = False + Me.IsExplosiveMove = True Me.IsAffectedBySubstitute = True Me.IsOneHitKOMove = False