*Schemes: Added scheme - Your Fate Is Thrice Sealed

*Schemes: Renamed player property NotSelf to Other
This commit is contained in:
moomarc
2012-12-04 17:15:28 +00:00
parent e088219204
commit 2e25198cae
4 changed files with 14 additions and 2 deletions

1
.gitattributes vendored
View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -2522,7 +2522,7 @@ public abstract class Player extends GameEntity implements Comparable<Player> {
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;
}