public BurstLightning(UUID ownerId) {
super(ownerId, 119, "Burst Lightning", Rarity.COMMON, new CardType[]{CardType.INSTANT}, "{R}");
this.expansionSetCode = "ZEN";
this.color.setRed(true);
this.getSpellAbility().addTarget(new TargetCreatureOrPlayer());
this.getSpellAbility().addEffect(new DamageTargetEffect(2));
KickerAbility ability = new KickerAbility(new DamageTargetEffect(4), true);
ability.addTarget(this.getSpellAbility().getTargets().get(0));
ability.addManaCost(new GenericManaCost(4));
this.addAbility(ability);
}