mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
Fixed Issue#41: Faith's Reward tooltip missing
This commit is contained in:
parent
b229fafcf9
commit
44f2b3fd1e
1 changed files with 5 additions and 3 deletions
|
@ -27,9 +27,6 @@
|
||||||
*/
|
*/
|
||||||
package mage.sets.magic2013;
|
package mage.sets.magic2013;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.UUID;
|
|
||||||
|
|
||||||
import mage.Constants;
|
import mage.Constants;
|
||||||
import mage.Constants.CardType;
|
import mage.Constants.CardType;
|
||||||
import mage.Constants.Rarity;
|
import mage.Constants.Rarity;
|
||||||
|
@ -42,6 +39,9 @@ import mage.game.events.GameEvent;
|
||||||
import mage.game.events.ZoneChangeEvent;
|
import mage.game.events.ZoneChangeEvent;
|
||||||
import mage.watchers.WatcherImpl;
|
import mage.watchers.WatcherImpl;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.UUID;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @author Loki
|
* @author Loki
|
||||||
|
@ -70,8 +70,10 @@ public class FaithsReward extends CardImpl<FaithsReward> {
|
||||||
}
|
}
|
||||||
|
|
||||||
class FaithsRewardEffect extends OneShotEffect<FaithsRewardEffect> {
|
class FaithsRewardEffect extends OneShotEffect<FaithsRewardEffect> {
|
||||||
|
|
||||||
FaithsRewardEffect() {
|
FaithsRewardEffect() {
|
||||||
super(Constants.Outcome.PutCardInPlay);
|
super(Constants.Outcome.PutCardInPlay);
|
||||||
|
staticText = "Return to the battlefield all permanent cards in your graveyard that were put there from the battlefield this turn";
|
||||||
}
|
}
|
||||||
|
|
||||||
FaithsRewardEffect(final FaithsRewardEffect effect) {
|
FaithsRewardEffect(final FaithsRewardEffect effect) {
|
||||||
|
|
Loading…
Reference in a new issue