1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-11 17:00:08 -09:00

* Added missing comment.

This commit is contained in:
LevelX2 2020-01-10 20:51:12 +01:00
parent 044645aca2
commit ffc5f33cd0

View file

@ -1,4 +1,3 @@
package mage.cards.a;
import java.util.UUID;
@ -23,6 +22,7 @@ public final class AbsoluteGrace extends CardImpl {
public AbsoluteGrace(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.ENCHANTMENT}, "{1}{W}");
// All creatures have protection from black.
Ability ability = ProtectionAbility.from(ObjectColor.BLACK);
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new GainAbilityAllEffect(ability, Duration.WhileOnBattlefield, FILTER_PERMANENT_CREATURES, false)));
}