this.color.setBlack(true);
// Destroy all creatures. They can't be regenerated. Draw a card for each creature destroyed this way.
this.getSpellAbility().addEffect(new DecreeOfPainEffect());
// Cycling {3}{B}{B}
this.addAbility(new CyclingAbility(new ManaCostsImpl("{3}{B}{B}")));
// When you cycle Decree of Pain, all creatures get -2/-2 until end of turn.
Ability ability = new CycleTriggeredAbility(new BoostAllEffect(-2,-2, Duration.EndOfTurn));
this.addAbility(ability);
}