- It should not be possible to assign non-fierce minions to skirmish during fierce skirmishes by a card effect.
This commit is contained in:
@@ -115,6 +115,13 @@ public class Filters {
|
||||
public static Filter canBeAssignedToSkirmishByEffect(final Side sidePlayer) {
|
||||
return Filters.and(
|
||||
notAssignedToSkirmish,
|
||||
Filters.or(
|
||||
new Filter() {
|
||||
@Override
|
||||
public boolean accepts(GameState gameState, ModifiersQuerying modifiersQuerying, PhysicalCard physicalCard) {
|
||||
return !gameState.isFierceSkirmishes();
|
||||
}
|
||||
}, Keyword.FIERCE),
|
||||
new Filter() {
|
||||
@Override
|
||||
public boolean accepts(GameState gameState, ModifiersQuerying modifiersQuerying, PhysicalCard physicalCard) {
|
||||
|
||||
@@ -7,6 +7,7 @@
|
||||
- "Legolas, Elven Comrade" now gives the strength penalty correctly to the minion.
|
||||
- "Company of Archers" now correctly tries to spot 2 ELVEN companions rather than conditions to be able to play it.
|
||||
- Ambush is now correctly an optional trigger, rather than required.
|
||||
- It should not be possible to assign non-fierce minions to skirmish during fierce skirmishes by a card effect.
|
||||
|
||||
<b>2 Nov. 2011</b>
|
||||
- "O Elbereth! Gilthoniel!" should correctly give the option to cancel a skirmish with Nazgul when used in skirmish
|
||||
|
||||
Reference in New Issue
Block a user