mirror of
https://github.com/magefree/mage.git
synced 2025-12-24 20:41:58 -08:00
[BRO] Implemented Rust Goliath and dummy Prototype ability
This commit is contained in:
parent
2be61dd7ea
commit
0b0ad8e223
4 changed files with 83 additions and 0 deletions
|
|
@ -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";
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue