Fixing couple of bugs
This commit is contained in:
@@ -131,6 +131,9 @@
|
||||
"type": "winsSkirmish",
|
||||
"filter": "bearer"
|
||||
},
|
||||
"condition": {
|
||||
"type": "fierceSkirmish"
|
||||
},
|
||||
"effect": {
|
||||
"type": "discard",
|
||||
"filter": "choose(condition)"
|
||||
|
||||
@@ -550,7 +550,7 @@
|
||||
},
|
||||
"effect": {
|
||||
"type": "allyCanParticipateInArcheryFireAndSkirmishes",
|
||||
"filter": "self",
|
||||
"filter": "choose(name(Bard))",
|
||||
"until": "start(regroup)"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1397,7 +1397,7 @@
|
||||
"filter": "condition"
|
||||
},
|
||||
"effect": {
|
||||
"type": "exert",
|
||||
"type": "discard",
|
||||
"filter": "choose(ally)"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -469,14 +469,24 @@
|
||||
"type": "discard",
|
||||
"filter": "self"
|
||||
},
|
||||
"effect": {
|
||||
"type": "wound",
|
||||
"filter": "choose(minion)",
|
||||
"count": {
|
||||
"type": "forEachYouCanSpot",
|
||||
"filter": "elf"
|
||||
"effect": [
|
||||
{
|
||||
"type": "chooseHowManyToSpot",
|
||||
"filter": "elf",
|
||||
"memorize": "spottedElfCount"
|
||||
},
|
||||
{
|
||||
"type": "duplicate",
|
||||
"amount": {
|
||||
"type": "fromMemory",
|
||||
"memory": "spottedElfCount"
|
||||
},
|
||||
"effect": {
|
||||
"type": "wound",
|
||||
"filter": "choose(minion)"
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
@@ -5,7 +5,6 @@ import com.gempukku.lotro.cards.build.CardGenerationEnvironment;
|
||||
import com.gempukku.lotro.cards.build.FilterableSource;
|
||||
import com.gempukku.lotro.cards.build.InvalidCardDefinitionException;
|
||||
import com.gempukku.lotro.cards.build.field.FieldUtils;
|
||||
import com.gempukku.lotro.filters.Filters;
|
||||
import com.gempukku.lotro.logic.timing.TriggerConditions;
|
||||
import org.json.simple.JSONObject;
|
||||
|
||||
@@ -31,7 +30,7 @@ public class Transferred implements TriggerCheckerProducer {
|
||||
return TriggerConditions.transferredCard(actionContext.getGame(),
|
||||
actionContext.getEffectResult(),
|
||||
filterableSource.getFilterable(actionContext),
|
||||
Filters.any,
|
||||
null,
|
||||
toFilterableSource.getFilterable(actionContext));
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user