[CHK] Brutal Deceiver, Callous Deceiver, Harsh Deceiver, Feral Deceiver - New cards

Contagion Clasp - Changed counter ability outcome to unboost
Creepy Doll - Fixed outcome
Nim Deathmantle - Fix, It could target creatures going to opponents graveyard (fixes issue 383)
Bonesplitter - Fixed equip costs
Minor fixes to some cards - texts, removed unused imports, moved equip ability to last ability
This commit is contained in:
LevelX 2011-12-21 19:56:47 +01:00
parent fa635acab8
commit 810d33c8ba
18 changed files with 608 additions and 20 deletions

View file

@ -48,9 +48,13 @@ public class AddCountersTargetEffect extends OneShotEffect<AddCountersTargetEffe
private Counter counter;
public AddCountersTargetEffect(Counter counter) {
super(Outcome.Benefit);
this(counter, Outcome.Benefit);
}
public AddCountersTargetEffect(Counter counter, Outcome outcome) {
super(outcome);
this.counter = counter;
}
}
public AddCountersTargetEffect(final AddCountersTargetEffect effect) {
super(effect);