summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/aptitudes.h
diff options
context:
space:
mode:
authorDracoOmega <draco_omega@live.com>2014-03-12 15:18:38 -0230
committerDracoOmega <draco_omega@live.com>2014-03-12 19:52:13 -0230
commit9a20582491d1faf1c514505fb416b674ec8ee87f (patch)
tree24e614e8579cb537811c9ff16a5c0b1385fd4791 /crawl-ref/source/aptitudes.h
parentb78b54b1c70040f340716dd8dd8e29df2f54f69e (diff)
downloadcrawl-ref-9a20582491d1faf1c514505fb416b674ec8ee87f.tar.gz
crawl-ref-9a20582491d1faf1c514505fb416b674ec8ee87f.zip
Remove Formicid giant club wielding, reduce shield penalties, apt tweaks
Giant spiked clubs were stronger than other weapons to such a degree that they commonly eclipsed the more unique formicid mechanic of using a two-hander with a shield. There is already a race whose weapon choice centers around giant clubs, so I think it better for formicids to lose this ability so as to hilight the more interesting one. In the same vein, formicids now recieve the same reduced shield penalties that large races do (a perk of effectively having more limbs to juggle everything with), which should make shield usage further encouraged earlier on, where they have yet to gain enough xp to otherwise benefit from using them with a two-hander (and the race is considered weak enough that a few buffs like this feel perfectly safe). Additionally, there are a couple apt tweaks: Fighting 0 -> +1 Short Blades +1 -> 0 Armour +2 -> +1 Shields 0 -> +2
Diffstat (limited to 'crawl-ref/source/aptitudes.h')
-rw-r--r--crawl-ref/source/aptitudes.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/crawl-ref/source/aptitudes.h b/crawl-ref/source/aptitudes.h
index d9c0d67a9e..4f41cbf6bd 100644
--- a/crawl-ref/source/aptitudes.h
+++ b/crawl-ref/source/aptitudes.h
@@ -1412,8 +1412,8 @@ static const species_skill_aptitude species_skill_aptitudes[] =
APT(SP_LAVA_ORC, SK_EVOCATIONS, 1),
// SP_FORMICID
- APT(SP_FORMICID, SK_FIGHTING, 0),
- APT(SP_FORMICID, SK_SHORT_BLADES, 1),
+ APT(SP_FORMICID, SK_FIGHTING, 1),
+ APT(SP_FORMICID, SK_SHORT_BLADES, 0),
APT(SP_FORMICID, SK_LONG_BLADES, 0),
APT(SP_FORMICID, SK_AXES, 0),
APT(SP_FORMICID, SK_MACES_FLAILS, 0),
@@ -1423,13 +1423,13 @@ static const species_skill_aptitude species_skill_aptitudes[] =
APT(SP_FORMICID, SK_BOWS, -2),
APT(SP_FORMICID, SK_CROSSBOWS, 0),
APT(SP_FORMICID, SK_THROWING, -2),
- APT(SP_FORMICID, SK_ARMOUR, 2),
+ APT(SP_FORMICID, SK_ARMOUR, 1),
APT(SP_FORMICID, SK_DODGING, -1),
APT(SP_FORMICID, SK_STEALTH, 3),
#if TAG_MAJOR_VERSION == 34
APT(SP_FORMICID, SK_STABBING, -99),
#endif
- APT(SP_FORMICID, SK_SHIELDS, 0),
+ APT(SP_FORMICID, SK_SHIELDS, 2),
#if TAG_MAJOR_VERSION == 34
APT(SP_FORMICID, SK_TRAPS, -99),
#endif