mirror of
https://github.com/correl/mage.git
synced 2025-01-11 19:13:02 +00:00
Fixed type for Harrow
updated Mage-Sets version in Mage.Rating.Plugin/pom.xml
This commit is contained in:
parent
55f3842464
commit
da587fc717
2 changed files with 3 additions and 3 deletions
|
@ -25,7 +25,7 @@
|
|||
<dependency>
|
||||
<groupId>org.mage</groupId>
|
||||
<artifactId>Mage-Sets</artifactId>
|
||||
<version>0.7</version>
|
||||
<version>0.7.2</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.googlecode.jspf</groupId>
|
||||
|
|
|
@ -46,14 +46,14 @@ import mage.target.common.TargetControlledPermanent;
|
|||
*/
|
||||
public class Harrow extends CardImpl<Harrow> {
|
||||
|
||||
static FilterControlledPermanent filter = new FilterControlledPermanent("a land.");
|
||||
private static final FilterControlledPermanent filter = new FilterControlledPermanent("a land.");
|
||||
|
||||
static{
|
||||
filter.getCardType().add(CardType.LAND);
|
||||
}
|
||||
|
||||
public Harrow(UUID ownerId){
|
||||
super(ownerId, 165, "Harrow", Rarity.COMMON, new CardType[]{CardType.SORCERY}, "{2}{G}");
|
||||
super(ownerId, 165, "Harrow", Rarity.COMMON, new CardType[]{CardType.INSTANT}, "{2}{G}");
|
||||
this.expansionSetCode = "ZEN";
|
||||
this.color.setGreen(true);
|
||||
|
||||
|
|
Loading…
Reference in a new issue