Commit 6e3ad93df5b883834008d3f58fdfec836c323680
1 parent
d74cebde
Creatures in the Heart of the Gloom wont have the radiant fear talent
git-svn-id: http://svn.net-core.org/repos/t-engine4@3357 51575b47-30f0-44d4-a5cc-537603b46e54
Showing
1 changed file
with
1 additions
and
1 deletions
... | ... | @@ -24,7 +24,7 @@ local gloomify = function(add, mult) |
24 | 24 | mult = mult or 1 |
25 | 25 | return function(e) |
26 | 26 | if e.rarity then |
27 | - local list = {"T_GLOOM", "T_AGONY", "T_REPROACH", "T_DARK_TENDRILS", "T_BLINDSIDE", "T_RADIANT_FEAR"} | |
27 | + local list = {"T_GLOOM", "T_AGONY", "T_REPROACH", "T_DARK_TENDRILS", "T_BLINDSIDE"} | |
28 | 28 | e[#e+1] = resolvers.talents{[ Talents[rng.table(list)] ] = {base=1, every=5, max=6}} |
29 | 29 | e.rarity = math.ceil(e.rarity * mult + add) |
30 | 30 | e.name = rng.table{"gloomy ", "deformed ", "sick "}..e.name | ... | ... |
-
Please register or login to post a comment