mirror of
https://github.com/correl/mage.git
synced 2024-12-25 03:00:15 +00:00
[SWS] Added Star Wars Block Format.
This commit is contained in:
parent
76ca7cd7f4
commit
16027d5fef
1 changed files with 21 additions and 0 deletions
|
@ -0,0 +1,21 @@
|
|||
/*
|
||||
* To change this license header, choose License Headers in Project Properties.
|
||||
* To change this template file, choose Tools | Templates
|
||||
* and open the template in the editor.
|
||||
*/
|
||||
package mage.deck;
|
||||
|
||||
import mage.cards.decks.Constructed;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author LevelX2
|
||||
*/
|
||||
public class StarWarsBlock extends Constructed {
|
||||
|
||||
public StarWarsBlock() {
|
||||
super("Constructed Custom - Star Wars Block");
|
||||
setCodes.add("SWS");
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in a new issue