diff --git a/Mage.Sets/src/mage/cards/t/TacticalAdvantage.java b/Mage.Sets/src/mage/cards/t/TacticalAdvantage.java
new file mode 100644
index 0000000000..52774236e1
--- /dev/null
+++ b/Mage.Sets/src/mage/cards/t/TacticalAdvantage.java
@@ -0,0 +1,51 @@
+package mage.cards.t;
+
+import mage.abilities.effects.common.continuous.BoostTargetEffect;
+import mage.cards.CardImpl;
+import mage.cards.CardSetInfo;
+import mage.constants.CardType;
+import mage.constants.Duration;
+import mage.constants.TargetController;
+import mage.filter.common.FilterCreaturePermanent;
+import mage.filter.predicate.Predicates;
+import mage.filter.predicate.permanent.BlockedPredicate;
+import mage.filter.predicate.permanent.BlockingPredicate;
+import mage.filter.predicate.permanent.ControllerPredicate;
+import mage.target.common.TargetCreaturePermanent;
+
+import java.util.UUID;
+
+/**
+ * @author JayDi85
+ */
+public final class TacticalAdvantage extends CardImpl {
+
+    private static final FilterCreaturePermanent filter = new FilterCreaturePermanent("blocking or blocked creature you control");
+
+    static {
+        filter.add(
+                Predicates.or(
+                        new BlockingPredicate(),
+                        new BlockedPredicate()
+
+                ));
+        filter.add(new ControllerPredicate(TargetController.YOU));
+    }
+
+    public TacticalAdvantage(UUID ownerId, CardSetInfo setInfo) {
+        super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{W}");
+
+        // Target blocking or blocked creature you control gets +2/+2 until end of turn.
+        this.getSpellAbility().addEffect(new BoostTargetEffect(2, 2, Duration.EndOfTurn));
+        this.getSpellAbility().addTarget(new TargetCreaturePermanent(filter));
+    }
+
+    public TacticalAdvantage(final TacticalAdvantage card) {
+        super(card);
+    }
+
+    @Override
+    public TacticalAdvantage copy() {
+        return new TacticalAdvantage(this);
+    }
+}