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

27 lines
480 B
Perl
Raw Normal View History

2015-01-22 07:39:45 -05:00
package OSRIC::Class::Paladin;
use parent qw(OSRIC::Class);
2015-01-07 11:13:22 -05:00
use OSRIC::Util qw/d/;
# 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 { 200 }
2015-01-28 04:34:27 -05:00
sub get_gold { ((d(6, 3) + 2) * 10) } # (3d6 + 2) * 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(10) }
2015-01-07 11:13:22 -05:00
# Minimum score requirements:
sub minimum_scores
{
{
str => 12,
dex => 6,
con => 9,
int => 9,
wis => 13,
cha => 17,
}
}
1;