mirror of
https://github.com/magefree/mage.git
synced 2026-01-24 04:09:54 -08:00
Minor formatting issues.
This commit is contained in:
parent
ebd6e47848
commit
72b724e28a
5 changed files with 128 additions and 134 deletions
|
|
@ -25,7 +25,6 @@
|
|||
* authors and should not be interpreted as representing official policies, either expressed
|
||||
* or implied, of BetaSteward_at_googlemail.com.
|
||||
*/
|
||||
|
||||
package mage.sets.dragonsmaze;
|
||||
|
||||
import java.util.UUID;
|
||||
|
|
@ -56,17 +55,14 @@ import mage.util.CardUtil;
|
|||
*
|
||||
* @author LevelX2
|
||||
*/
|
||||
|
||||
|
||||
public class CouncilOfTheAbsolute extends CardImpl {
|
||||
|
||||
public CouncilOfTheAbsolute (UUID ownerId) {
|
||||
public CouncilOfTheAbsolute(UUID ownerId) {
|
||||
super(ownerId, 62, "Council of the Absolute", Rarity.MYTHIC, new CardType[]{CardType.CREATURE}, "{2}{W}{U}");
|
||||
this.expansionSetCode = "DGM";
|
||||
this.subtype.add("Human");
|
||||
this.subtype.add("Advisor");
|
||||
|
||||
|
||||
this.power = new MageInt(2);
|
||||
this.toughness = new MageInt(4);
|
||||
|
||||
|
|
@ -79,7 +75,7 @@ public class CouncilOfTheAbsolute extends CardImpl {
|
|||
|
||||
}
|
||||
|
||||
public CouncilOfTheAbsolute (final CouncilOfTheAbsolute card) {
|
||||
public CouncilOfTheAbsolute(final CouncilOfTheAbsolute card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -59,14 +59,14 @@ public class GoblinGloryChaser extends CardImpl {
|
|||
|
||||
// Renown 1
|
||||
this.addAbility(new RenownAbility(1));
|
||||
|
||||
|
||||
// As long as Goblin Glory Chaser is renowned, it has menace.
|
||||
Effect effect = new ConditionalContinuousEffect(
|
||||
new GainAbilitySourceEffect(MenaceAbility.getInstance(), Duration.WhileOnBattlefield),
|
||||
new GainAbilitySourceEffect(new MenaceAbility(), Duration.WhileOnBattlefield),
|
||||
RenownCondition.getInstance(),
|
||||
"As long as {this} is renowned, it has menace");
|
||||
Ability ability = new SimpleStaticAbility(Zone.BATTLEFIELD, effect);
|
||||
this.addAbility(ability);
|
||||
this.addAbility(ability);
|
||||
}
|
||||
|
||||
public GoblinGloryChaser(final GoblinGloryChaser card) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue