2013-04-12 19:58:51 -07:00
|
|
|
[
|
|
|
|
new MagicStatic(
|
|
|
|
MagicLayer.Ability,
|
|
|
|
MagicTargetFilter.TARGET_CREATURE) {
|
|
|
|
@Override
|
|
|
|
public void modAbilityFlags(final MagicPermanent source,final MagicPermanent permanent,final Set<MagicAbility> flags) {
|
2013-05-21 05:26:01 -07:00
|
|
|
flags.add(MagicAbility.Lifelink);
|
2013-04-12 19:58:51 -07:00
|
|
|
}
|
|
|
|
@Override
|
|
|
|
public boolean condition(final MagicGame game,final MagicPermanent source,final MagicPermanent target) {
|
|
|
|
return source.getEquippedCreature().hasSubType(MagicSubType.Human) &&
|
|
|
|
target == source.getEquippedCreature();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|