mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 10:40:06 -08:00
* Sachi, Daughter of Seshiro - Fixed that the mana abaility was only given to creatures instead to all Shaman permanents (e.g. Thornbite Staff) fixes #2439.
This commit is contained in:
parent
3a7b973d97
commit
a6747590b3
1 changed files with 8 additions and 9 deletions
|
|
@ -25,13 +25,9 @@
|
|||
* authors and should not be interpreted as representing official policies, either expressed
|
||||
* or implied, of BetaSteward_at_googlemail.com.
|
||||
*/
|
||||
|
||||
package mage.cards.s;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Duration;
|
||||
import mage.constants.Zone;
|
||||
import mage.MageInt;
|
||||
import mage.Mana;
|
||||
import mage.abilities.common.SimpleStaticAbility;
|
||||
|
|
@ -42,6 +38,10 @@ import mage.abilities.effects.common.continuous.GainAbilityControlledEffect;
|
|||
import mage.abilities.mana.SimpleManaAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Duration;
|
||||
import mage.constants.Zone;
|
||||
import mage.filter.FilterPermanent;
|
||||
import mage.filter.common.FilterCreaturePermanent;
|
||||
import mage.filter.predicate.mageobject.SubtypePredicate;
|
||||
|
||||
|
|
@ -50,9 +50,8 @@ import mage.filter.predicate.mageobject.SubtypePredicate;
|
|||
*/
|
||||
public class SachiDaughterOfSeshiro extends CardImpl {
|
||||
|
||||
|
||||
private static final FilterCreaturePermanent snakeFilter = new FilterCreaturePermanent("Snakes");
|
||||
private static final FilterCreaturePermanent shamanFilter = new FilterCreaturePermanent("Shamans");
|
||||
private static final FilterPermanent shamanFilter = new FilterPermanent("Shamans");
|
||||
|
||||
static {
|
||||
snakeFilter.add(new SubtypePredicate("Snake"));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue