The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package Acme::MorningMusume::TanakaReina;

use strict;
use warnings;

use base qw(Acme::MorningMusume::Base);

our $VERSION = '0.18';

sub info {
    return (
        first_name_ja  => 'れいな',
        family_name_ja => '田中',
        first_name_en  => 'Reina',
        family_name_en => 'Tanaka',
        nick           => [qw(れいにゃ)],
        birthday       => $_[0]->_datetime_from_date('1989-11-11'),
        blood_type     => 'O',
        hometown       => '福岡県',
        emoticon       => ['从 ´ ヮ`)', '从 `,_っ´)'],
        class          => 6,
        graduate_date  => $_[0]->_datetime_from_date('2013-05-21'),
    );
}

1;