[BRO] Implemented Rust Goliath and dummy Prototype ability

This commit is contained in:
Evan Kranzler 2022-10-30 18:18:47 -04:00
parent 2be61dd7ea
commit 0b0ad8e223
4 changed files with 83 additions and 0 deletions

View file

@ -0,0 +1,30 @@
package mage.abilities.keyword;
import mage.abilities.SpellAbility;
import mage.abilities.costs.mana.ManaCostsImpl;
import mage.cards.Card;
/**
* @author TheElk801
*/
public class PrototypeAbility extends SpellAbility {
public PrototypeAbility(Card card, String manaString, int power, int toughness) {
super(new ManaCostsImpl<>(manaString), card.getName());
// TODO: implement this
}
private PrototypeAbility(final PrototypeAbility ability) {
super(ability);
}
@Override
public PrototypeAbility copy() {
return new PrototypeAbility(this);
}
@Override
public String getRule() {
return "Prototype";
}
}