diff --git a/.gitattributes b/.gitattributes index 29fc1bf656f..8d1c64b7f48 100644 --- a/.gitattributes +++ b/.gitattributes @@ -11650,6 +11650,7 @@ res/cardsfolder/y/yosei_the_morning_star.txt svneol=native#text/plain res/cardsfolder/y/yotian_soldier.txt svneol=native#text/plain res/cardsfolder/y/young_wei_recruits.txt svneol=native#text/plain res/cardsfolder/y/young_wolf.txt -text +res/cardsfolder/y/your_fate_is_thrice_sealed.txt -text res/cardsfolder/y/your_puny_minds_cannot_fathom.txt -text res/cardsfolder/y/your_will_is_not_your_own.txt -text res/cardsfolder/y/youthful_knight.txt svneol=native#text/plain diff --git a/res/cardsfolder/e/embrace_my_diabolical_vision.txt b/res/cardsfolder/e/embrace_my_diabolical_vision.txt index 9b7e4d6a99c..cae8d6f7c3e 100644 --- a/res/cardsfolder/e/embrace_my_diabolical_vision.txt +++ b/res/cardsfolder/e/embrace_my_diabolical_vision.txt @@ -6,7 +6,7 @@ T:Mode$ SetInMotion | ValidCard$ Card.Self | Execute$ GraveEmbrace | TriggerZone SVar:GraveEmbrace:AB$ ChangeZoneAll | Cost$ 0 | ChangeType$ Card | Origin$ Graveyard | Destination$ Library | Shuffle$ True | SubAbility$ EmbraceShuffle SVar:EmbraceShuffle:DB$ ChangeZoneAll | ChangeType$ Card | Origin$ Hand | Destination$ Library | Shuffle$ True | SubAbility$ MyVision SVar:MyVision:DB$ Draw | Defined$ You | NumCards$ 7 | SubAbility$ PitifulDraw -SVar:PitifulDraw:DB$ Draw | Defined$ Player.NotSelf | NumCards$ 4 +SVar:PitifulDraw:DB$ Draw | Defined$ Player.Other | NumCards$ 4 SVar:Rarity:Common SVar:Picture:http://www.cardforge.org/fpics/lq_schemes/embrace_my_diabolical_vision.jpg SetInfo:ARC|Common|http://magiccards.info/extras/scheme/archenemy/embrace-my-diabolical-vision.jpg diff --git a/res/cardsfolder/y/your_fate_is_thrice_sealed.txt b/res/cardsfolder/y/your_fate_is_thrice_sealed.txt new file mode 100644 index 00000000000..3d8771c983d --- /dev/null +++ b/res/cardsfolder/y/your_fate_is_thrice_sealed.txt @@ -0,0 +1,11 @@ +Name:Your Fate Is Thrice Sealed +ManaCost:no cost +Types:Scheme +Text:no text +T:Mode$ SetInMotion | ValidCard$ Card.Self | Execute$ RevealFate | TriggerZones$ Command | TriggerDescription$ When you set this scheme in motion, reveal the top three cards of your library. Put all land cards revealed this way onto the battlefield and the rest into your hand. +SVar:RevealFate:AB$ Dig | Cost$ 0 | DigNum$ 3 | Reveal$ True | ChangeNum$ All | ChangeValid$ Land | DestinationZone$ Battlefield | DestinationZone2$ Hand | +SVar:Rarity:Common +SVar:Picture:http://www.cardforge.org/fpics/lq_schemes/your_fate_is_thrice_sealed.jpg +SetInfo:ARC|Common|http://magiccards.info/extras/scheme/archenemy/your-fate-is-thrice-sealed.jpg +Oracle:When you set this scheme in motion, reveal the top three cards of your library. Put all land cards revealed this way onto the battlefield and the rest into your hand. +End \ No newline at end of file diff --git a/src/main/java/forge/game/player/Player.java b/src/main/java/forge/game/player/Player.java index d80b0dcabf4..d0e357ddeba 100644 --- a/src/main/java/forge/game/player/Player.java +++ b/src/main/java/forge/game/player/Player.java @@ -2522,7 +2522,7 @@ public abstract class Player extends GameEntity implements Comparable { if (this.equals(sourceController) || !this.isHostileTo(sourceController)) { return false; } - } else if (property.equals("NotSelf")) { + } else if (property.equals("Other")) { if (this.equals(sourceController)) { return false; }