mirror of
https://github.com/correl/mage.git
synced 2024-11-16 03:00:12 +00:00
Fixed wrong toughness of Patron of Kitsune.
This commit is contained in:
parent
278e7771ed
commit
bf9f3bd3a8
1 changed files with 1 additions and 1 deletions
|
@ -52,7 +52,7 @@ public class PatronOfTheKitsune extends CardImpl<PatronOfTheKitsune> {
|
||||||
this.subtype.add("Spirit");
|
this.subtype.add("Spirit");
|
||||||
this.color.setWhite(true);
|
this.color.setWhite(true);
|
||||||
this.power = new MageInt(5);
|
this.power = new MageInt(5);
|
||||||
this.toughness = new MageInt(5);
|
this.toughness = new MageInt(6);
|
||||||
|
|
||||||
// Fox offering (You may cast this card any time you could cast an instant by sacrificing a Fox and paying the difference in mana costs between this and the sacrificed Fox. Mana cost includes color.)
|
// Fox offering (You may cast this card any time you could cast an instant by sacrificing a Fox and paying the difference in mana costs between this and the sacrificed Fox. Mana cost includes color.)
|
||||||
this.addAbility(new OfferingAbility("Fox"));
|
this.addAbility(new OfferingAbility("Fox"));
|
||||||
|
|
Loading…
Reference in a new issue