super(ownerId, 106, "Demonic Appetite", Rarity.COMMON, new CardType[]{CardType.ENCHANTMENT}, "{B}");
this.expansionSetCode = "ROE";
this.subtype.add("Aura");
this.color.setBlack(true);
TargetPermanent auraTarget = new TargetControlledCreaturePermanent();
this.getSpellAbility().addTarget(auraTarget);
this.getSpellAbility().addEffect(new AttachEffect(Outcome.BoostCreature));
Ability ability = new EnchantAbility(auraTarget.getTargetName());
this.addAbility(ability);
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new BoostEnchantedEffect(3, 3, Duration.WhileOnBattlefield)));
ability = new BeginningOfUpkeepTriggeredAbility(
new DemonicAppetiteEffect(),
TargetController.YOU,
false);
ability.addTarget(new TargetControlledCreaturePermanent());
this.addAbility(ability);
}