// Kicker {1}{U} (You may pay an additional {1}{U} as you cast this spell.)
this.addAbility(new KickerAbility("{1}{U}"));
// Return target nonland permanent to its owner's hand. If Into the Roil was kicked, draw a card.
this.getSpellAbility().addEffect(new ReturnToHandTargetEffect());
this.getSpellAbility().addEffect(new ConditionalOneShotEffect(
new DrawCardSourceControllerEffect(1),
KickedCondition.getInstance(),
"If {this} was kicked, draw a card"));
this.getSpellAbility().addTarget(new TargetNonlandPermanent());