this.color.setRed(true);
// Wrap in Flames deals 1 damage to each of up to three target creatures. Those creatures can't block this turn.
this.getSpellAbility().addEffect(new DamageTargetEffect(1));
this.getSpellAbility().addEffect(new CantBlockTargetEffect(Duration.EndOfTurn));
this.getSpellAbility().addTarget(new TargetCreaturePermanent(0, 3));
}