summaryrefslogtreecommitdiffstats
path: root/lib/Bot/Games/Game/Superghost.pm
blob: df297eec15d49932d313e91fb986db86e76e83f8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/perl
package Bot::Games::Game::Superghost;
use Bot::Games::OO;
extends 'Bot::Games::Game::Ghostlike';

has '+help' => (
    default => "superghost help",
);

command valid_move => sub {
    my $self = shift;
    my ($move) = @_;
    return uc(substr($move, 0, -1)) eq $self->state
        || uc(substr($move, 1))     eq $self->state;
};

__PACKAGE__->meta->make_immutable;
no Bot::Games::OO;

1;