mirror of
https://github.com/magefree/mage.git
synced 2026-01-10 21:02:08 -08:00
[BRC] Implement Farid, Enterprising Salvager
This commit is contained in:
parent
c285a81574
commit
788d49cbc5
3 changed files with 97 additions and 0 deletions
24
Mage/src/main/java/mage/game/permanent/token/ScrapToken.java
Normal file
24
Mage/src/main/java/mage/game/permanent/token/ScrapToken.java
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.constants.CardType;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class ScrapToken extends TokenImpl {
|
||||
|
||||
public ScrapToken() {
|
||||
super("Scrap", "colorless artifact token named Scrap");
|
||||
cardType.add(CardType.ARTIFACT);
|
||||
|
||||
availableImageSetCodes.add("BRC");
|
||||
}
|
||||
|
||||
public ScrapToken(final ScrapToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public ScrapToken copy() {
|
||||
return new ScrapToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue