| Games-Pandemic documentation | Contained in the Games-Pandemic distribution. |
Games::Pandemic::Card::Special::Airlift - airlift event card for pandemic
version 1.111030
This package implements the special event card airlift. When
played, this event allows to move a player to any city for free.
Jerome Quelin
This software is Copyright (c) 2009 by Jerome Quelin.
This is free software, licensed under:
The GNU General Public License, Version 2, June 1991
| Games-Pandemic documentation | Contained in the Games-Pandemic distribution. |
# # This file is part of Games-Pandemic # # This software is Copyright (c) 2009 by Jerome Quelin. # # This is free software, licensed under: # # The GNU General Public License, Version 2, June 1991 # use 5.010; use strict; use warnings; package Games::Pandemic::Card::Special::Airlift; BEGIN { $Games::Pandemic::Card::Special::Airlift::VERSION = '1.111030'; } # ABSTRACT: airlift event card for pandemic use File::Spec::Functions qw{ catfile }; use Moose; use MooseX::SemiAffordanceAccessor; use Games::Pandemic::I18n qw{ T }; use Games::Pandemic::Utils; extends 'Games::Pandemic::Card::Special'; # -- default builders sub _build_icon { catfile($SHAREDIR, 'cards', 'airlift-16.png' ) } sub _build_label { T('Airlift') } sub _build_description { T( 'This event allows to move a player to any city for free.' ); } no Moose; __PACKAGE__->meta->make_immutable; 1;
__END__