summaryrefslogtreecommitdiffstats
path: root/lib/Bot/Games/Game/Superghost.pm
blob: 60a58c4aac49df18e9c99c4133dd622aaf4ec78a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package Bot::Games::Game::Superghost;
use Bot::Games::OO::Game;
extends 'Bot::Games::Game::Ghost';

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;
}, formatter => __PACKAGE__->meta->formatter_for('Bool');

command valid_word_from_state => sub {
    my $self = shift;
    my ($word) = @_;
    my $state = $self->state;
    return uc($word) =~ /\Q$state\E/;
}, formatter => __PACKAGE__->meta->formatter_for('Bool');

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

1;