mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 02:30:08 -08: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>
|
<dependency>
|
||||||
<groupId>org.mage</groupId>
|
<groupId>org.mage</groupId>
|
||||||
<artifactId>Mage-Sets</artifactId>
|
<artifactId>Mage-Sets</artifactId>
|
||||||
<version>0.7</version>
|
<version>0.7.2</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.googlecode.jspf</groupId>
|
<groupId>com.googlecode.jspf</groupId>
|
||||||
|
|
|
||||||
|
|
@ -46,14 +46,14 @@ import mage.target.common.TargetControlledPermanent;
|
||||||
*/
|
*/
|
||||||
public class Harrow extends CardImpl<Harrow> {
|
public class Harrow extends CardImpl<Harrow> {
|
||||||
|
|
||||||
static FilterControlledPermanent filter = new FilterControlledPermanent("a land.");
|
private static final FilterControlledPermanent filter = new FilterControlledPermanent("a land.");
|
||||||
|
|
||||||
static{
|
static{
|
||||||
filter.getCardType().add(CardType.LAND);
|
filter.getCardType().add(CardType.LAND);
|
||||||
}
|
}
|
||||||
|
|
||||||
public Harrow(UUID ownerId){
|
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.expansionSetCode = "ZEN";
|
||||||
this.color.setGreen(true);
|
this.color.setGreen(true);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue