this.toughness = new MageInt(1);
// Flying
this.addAbility(FlyingAbility.getInstance());
// <i>Inspired</i> - Whenever Siren of the Silent Song becomes untapped, each opponent discards a card, then puts the top card of his or her library into his or her graveyard.
Ability ability = new InspiredAbility(new DiscardEachPlayerEffect(TargetController.OPPONENT));
Effect effect = new PutTopCardOfLibraryIntoGraveEachPlayerEffect(1, TargetController.OPPONENT);
effect.setText(", then puts the top card of his or her library into his or her graveyard");
ability.addEffect(effect);
this.addAbility(ability);
}