public boolean apply(Game game, Ability source) {
Player controller = game.getPlayer(source.getControllerId());
if (controller != null) {
int damage = (Integer) this.getValue("damage");
if (damage > 0) {
controller.drawCards(damage, game);
}
return true;
}