1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-04 09:16:04 -09:00

Small change to Uphill Battle.

This commit is contained in:
LevelX2 2018-03-08 23:27:19 +01:00
parent 82e8606b40
commit 15602cdfb3
2 changed files with 6 additions and 6 deletions
Mage.Sets/src/mage/cards/u
Mage/src/main/java/mage/game/permanent

View file

@ -51,7 +51,9 @@ import mage.watchers.common.CreatureWasCastWatcher;
public class UphillBattle extends CardImpl {
public UphillBattle(UUID ownerId, CardSetInfo setInfo) {
super(ownerId,setInfo,new CardType[]{CardType.ENCHANTMENT},"{2}{R}");
super(ownerId, setInfo, new CardType[]{CardType.ENCHANTMENT}, "{2}{R}");
// Creatures played by your opponents enter the battlefield tapped.
Ability tapAbility = new SimpleStaticAbility(Zone.BATTLEFIELD, new UphillBattleTapEffect());
tapAbility.addWatcher(new CreatureWasCastWatcher());
tapAbility.addWatcher(new PlayCreatureLandWatcher());
@ -118,7 +120,6 @@ class PlayCreatureLandWatcher extends Watcher {
}
}
class UphillBattleTapEffect extends ReplacementEffectImpl {
UphillBattleTapEffect() {

View file

@ -59,7 +59,6 @@ public interface Permanent extends Card, Controllable {
* @param tapped
* @deprecated
*/
@Deprecated
void setTapped(boolean tapped);
boolean canTap();