From ada417fa57fef6f218ef09e4a1b19aeca652100a Mon Sep 17 00:00:00 2001 From: Bill Meltsner Date: Sat, 24 Mar 2012 03:09:32 -0400 Subject: [PATCH] Red Card does activate on non-contact moves, but only when damage is dealt. --- items.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/items.js b/items.js index 946f0a660b..c007784290 100644 --- a/items.js +++ b/items.js @@ -2364,7 +2364,7 @@ exports.BattleItems = { basePower: 10 }, onAfterMoveSecondary: function(target, source, move) { - if (source && source !== target && move && move.isContact) + if (source && source !== target && move && source.lastDamage) { if (target.useItem()) // This order is correct - the item is used up even against a pokemon with Ingrain or that otherwise can't be forced out {