mirror of
https://github.com/correl/mage.git
synced 2025-03-12 17:00:08 -09:00
* Shaman of the Pack - Fixed that the lose life calculation did only count creatures.
This commit is contained in:
parent
661c9c985f
commit
4d1641538e
1 changed files with 3 additions and 3 deletions
|
@ -38,7 +38,7 @@ import mage.cards.CardImpl;
|
|||
import mage.constants.CardType;
|
||||
import mage.constants.Rarity;
|
||||
import mage.constants.TargetController;
|
||||
import mage.filter.common.FilterCreaturePermanent;
|
||||
import mage.filter.FilterPermanent;
|
||||
import mage.filter.predicate.mageobject.SubtypePredicate;
|
||||
import mage.filter.predicate.permanent.ControllerPredicate;
|
||||
import mage.target.common.TargetOpponent;
|
||||
|
@ -48,8 +48,8 @@ import mage.target.common.TargetOpponent;
|
|||
* @author fireshoes
|
||||
*/
|
||||
public class ShamanOfThePack extends CardImpl {
|
||||
|
||||
private static final FilterCreaturePermanent filter = new FilterCreaturePermanent("equal to the number of elves you control");
|
||||
|
||||
private static final FilterPermanent filter = new FilterPermanent("equal to the number of elves you control");
|
||||
|
||||
static {
|
||||
filter.add(new ControllerPredicate(TargetController.YOU));
|
||||
|
|
Loading…
Add table
Reference in a new issue