If anyone is interested, the breakdown goes something like this.
- 9 missing periods ("The bonus will increase with the Willpower stat", with no period)
- 10 typos (originaly, maximun, never carrying much -> never caring much)
- 2 unnecessary capitalizations (Blight and Arcane)
- 3 grammatical errors (Highers have originaly (sic) been created, Dwarves skin is a complex structure, Heal for %d life and removes up to %d detrimental effects.)
- 6 plural possessive errors in the comments (no one will ever see those, but they're fixed, darn it!)
*http://svn.net-core.org/repos/t-engine4 ... /races.lua
As an aside, the code currently contains this oddity. Notice that the description says self:getCun() / 5, but the effect is self:getCun() / 2. Is this a bug?
Code: Select all
action = function(self, t)
self:setEffect(self.EFF_HALFLING_LUCK, 5, {
physical=10 + self:getCun() / 2,
spell=10 + self:getCun() / 2,
})
return true
end,
info = function(self, t)
return ([[Call upon the luck and cunning of the Little Folk to increase your physical and spell critical strike chance by %d%% for 5 turns.
The bonus will increase with the Cunning stat.]]):format(10 + self:getCun() / 5, 10 + self:getCun() / 5)
end,
}