fix crypt rats + added new test method

This commit is contained in:
igoudt 2017-05-27 09:17:08 +02:00
parent 5e8c03f0d9
commit dca676617d
4 changed files with 122 additions and 79 deletions

View file

@ -55,6 +55,10 @@ public class DamageEverythingEffect extends OneShotEffect {
this(new StaticValue(amount), new FilterCreaturePermanent());
}
public DamageEverythingEffect(DynamicValue amount) {
this(amount, new FilterCreaturePermanent());
}
public DamageEverythingEffect(int amount, FilterPermanent filter) {
this(new StaticValue(amount), filter);
}