mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 21:12:04 -08:00
fix crypt rats + added new test method
This commit is contained in:
parent
5e8c03f0d9
commit
dca676617d
4 changed files with 122 additions and 79 deletions
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue