[DSK] Implement Keys to the House

This commit is contained in:
theelk801 2025-04-21 20:02:06 -04:00
parent 3a81c7848c
commit 5e8c63ad2c
3 changed files with 90 additions and 0 deletions

View file

@ -0,0 +1,32 @@
package mage.abilities.effects.common;
import mage.abilities.Ability;
import mage.abilities.effects.OneShotEffect;
import mage.constants.Outcome;
import mage.game.Game;
/**
* @author TheElk801
*/
public class LockOrUnlockRoomTargetEffect extends OneShotEffect {
public LockOrUnlockRoomTargetEffect() {
super(Outcome.Benefit);
staticText = "lock or unlock a door of target Room you control";
}
private LockOrUnlockRoomTargetEffect(final LockOrUnlockRoomTargetEffect effect) {
super(effect);
}
@Override
public LockOrUnlockRoomTargetEffect copy() {
return new LockOrUnlockRoomTargetEffect(this);
}
@Override
public boolean apply(Game game, Ability source) {
// TODO: Implement this
return true;
}
}