This translation only talents and birth data.
I also put them on google driver:
Code: Select all
https://drive.google.com/drive/folders/1ihgh5EQCQQEHpqNC6DjKtL4VxriZl52A?usp=sharing
Moderator: Moderator
Code: Select all
https://drive.google.com/drive/folders/1ihgh5EQCQQEHpqNC6DjKtL4VxriZl52A?usp=sharing
Great guess! The truth is even more embarrassing:
Code: Select all
--dont use this if they only have a couple mental effects
on_pre_use = function(self, t, silent)
local target = self.ai_target and self.ai_target.actor
if target and target.hasEffect then
local eff = target:effectsFilter(function (e) return e.type == 'mental' and e.status == 'detrimenta;' end, 10)
if #eff >= 3 then return true end
end
return false
end,