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

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

command valid_move => {
    my $self = shift;
    my ($move) = @_;
    return is_substring($self->state, uc($move))
        && length($self->state) + 1 == length($move);
};

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

1;