osric-cgi/lib/OSRIC/Class/MagicUser.pm

34 lines
560 B
Perl
Raw Permalink Normal View History

2015-01-22 07:39:45 -05:00
package OSRIC::Class::MagicUser;
use parent qw(OSRIC::Class);
2015-02-23 22:18:56 -05:00
use OSRIC::Util qw/d alignments/;
2015-01-07 11:13:22 -05:00
# A sub to get the maximum amount of starting gold (for sorting) and one to get
# an actual amount of starting gold:
sub max_starting_gold { 80 }
2015-01-28 04:34:27 -05:00
sub get_gold { (d(4, 2) * 10) } # 2d4 * 10
2015-01-07 11:13:22 -05:00
2015-02-10 11:07:42 -05:00
# The starting HP of the class:
sub get_hp { d(4) }
2015-01-07 11:13:22 -05:00
# Minimum score requirements:
sub minimum_scores
{
{
str => 3,
dex => 6,
con => 6,
2015-06-09 07:10:47 -04:00
intl => 9,
2015-01-07 11:13:22 -05:00
wis => 6,
cha => 6,
}
}
2015-02-23 22:18:56 -05:00
# The allowed alignments
sub get_alignments
{
my @a = alignments;
return \@a;
}
2015-01-07 11:13:22 -05:00
1;