diff --git a/forge-game/src/main/java/forge/game/card/CardFactoryUtil.java b/forge-game/src/main/java/forge/game/card/CardFactoryUtil.java
index 4e6c214bbab..1e4af37ddbf 100644
--- a/forge-game/src/main/java/forge/game/card/CardFactoryUtil.java
+++ b/forge-game/src/main/java/forge/game/card/CardFactoryUtil.java
@@ -26,6 +26,7 @@ import java.util.Map.Entry;
import java.util.Set;
import forge.game.event.GameEventCardForetold;
+import forge.game.trigger.TriggerType;
import org.apache.commons.lang3.StringUtils;
import com.google.common.base.Predicate;
@@ -2892,6 +2893,7 @@ public class CardFactoryUtil {
final Game game = getHostCard().getGame();
final Card c = game.getAction().exile(getHostCard(), this);
c.setForetold(true);
+ game.getTriggerHandler().runTrigger(TriggerType.IsForetold, AbilityKey.mapFromCard(c), false);
c.setForetoldThisTurn(true);
c.turnFaceDown(true);
// look at the exiled card
diff --git a/forge-game/src/main/java/forge/game/trigger/TriggerIsForetold.java b/forge-game/src/main/java/forge/game/trigger/TriggerIsForetold.java
new file mode 100644
index 00000000000..8f7150e4a46
--- /dev/null
+++ b/forge-game/src/main/java/forge/game/trigger/TriggerIsForetold.java
@@ -0,0 +1,74 @@
+/*
+ * Forge: Play Magic: the Gathering.
+ * Copyright (C) 2021 Forge Team
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see
+ * Trigger_IsForetold class. + *
+ * (Mainly copied from TriggerBecomeMonstrous) + */ +public class TriggerIsForetold extends Trigger { + + /** + *+ * Constructor for Trigger_IsForetold. + *
+ * + * @param params + * a {@link java.util.HashMap} object. + * @param host + * a {@link forge.game.card.Card} object. + * @param intrinsic + * the intrinsic + */ + public TriggerIsForetold(Map