osric-cgi/lib/OSRIC/Race/Dwarf.pm

55 lines
1017 B
Perl
Raw Normal View History

2015-01-28 04:21:26 -05:00
package OSRIC::Race::Dwarf
2015-01-26 14:45:09 -05:00
use parent qw(OSRIC::Races);
use OSRIC::Util qw/d/;
# The stat buffs/nerfs a race gives:
sub stats_boosts
{
{
str => 0,
dex => 0,
con => 1,
int => 0,
wis => 0,
cha => -1,
}
}
# The permitted classes:
sub permitted_classes
{
2015-01-28 04:21:26 -05:00
[ [ "Assassin" ], [ "Cleric" ], [ "Fighter" ], [ "Thief" ],
[ "Fighter", "Thief" ] ]
2015-01-26 14:45:09 -05:00
}
# A hash of subs to generate the starting age based on class:
sub ages
{
{
2015-01-28 04:21:26 -05:00
assassin => sub { 75 + d(6, 3) },
cleric => sub { 250 + d(20, 2) },
druid => sub { 250 + d(20, 2) },
fighter => sub { 40 + d(4, 5) },
2015-01-26 14:45:09 -05:00
illusionist => sub { 0 },
magicuser => sub { 0 },
2015-01-28 04:21:26 -05:00
paladin => sub { 40 + d(4, 5) },
ranger => sub { 40 + d(4, 5) },
theif => sub { 75 + d(6, 3) },
2015-01-26 14:45:09 -05:00
}
}
# The racial limitations:
sub racial_limitations
{
{
str => { min => 8, max => 18 },
dex => { min => 3, max => 17 },
con => { min => 12, max => 19 },
int => { min => 3, max => 18 },
wis => { min => 3, max => 18 },
cha => { min => 3, max => 16 },
}
}
1;