*Corrected some scripts etbCounters->etbCounter.

*Added ThisTurnCast and ThisTurnNotCast to special conditions. See Hotheaded Giant for example.
*Added
	Dream Thief
	Goblin Cohort
	Hotheaded Giant
	Mogg Conscripts
	Soul Reap
This commit is contained in:
Hellfish
2011-10-18 08:49:02 +00:00
parent 6a136c54b7
commit b5f37803f3
12 changed files with 83 additions and 4 deletions

View File

@@ -1580,6 +1580,18 @@ public final class GameActionUtil {
return false;
}
}
if (specialConditions.contains("ThisTurnCast")) {
String valid = specialConditions.split(" ")[1];
if(CardUtil.getThisTurnCast(valid, sourceCard).size() == 0) {
return false;
}
}
if(specialConditions.contains("ThisTurnNotCast")) {
String valid = specialConditions.split(" ")[1];
if(CardUtil.getThisTurnCast(valid, sourceCard).size() != 0) {
return false;
}
}
return true;
}