Skip to content
Snippets Groups Projects
Commit ec7d3fa3 authored by Chris Davidson's avatar Chris Davidson
Browse files

Limit Elandar and Vor to unlocking 1 category and ban several problematic talents

More focused elements and less sustain spam.
parent edde3515
No related branches found
No related tags found
1 merge request!5921.6.2 misc
......@@ -122,9 +122,15 @@ newEntity{
-- L75ish Normal
-- L97-99 Insane
auto_classes={
{class="Archmage", start_level=77, level_rate=100},
{class="Archmage", start_level=77, level_rate=100,
max_talent_types = 1, -- Don't waste points on extra elemental trees or learn 20000 sustains
banned_talents = {
T_INVISIBILITY=true, -- Reduces damage dramatically, basically a nerf
T_PROBABILITY_TRAVEL=true, -- Does this even work on AI? Possibly should kill this on all NPCs
T_DISRUPTION_SHIELD=true, -- Stupid scaling with infinite mana
},
},
},
autolevel = "caster",
ai = "tactical", ai_state = { talent_in=1, ai_move="move_astar", sense_radius=25, ai_target="target_simple_or_player_radius" },
ai_tactic = resolvers.tactic"ranged",
......
......@@ -90,7 +90,16 @@ newEntity{ base="BASE_NPC_ORC_VOR", define_as = "VOR",
},
resolvers.auto_equip_filters("Archmage"),
auto_classes={{class="Archmage", start_level=40, level_rate=100}},
auto_classes={
{class="Archmage", start_level=40, level_rate=100,
max_talent_types = 1, -- Don't waste points on extra elemental trees or learn 20000 sustains
banned_talents = {
T_INVISIBILITY=true, -- Reduces damage dramatically, basically a nerf
T_PROBABILITY_TRAVEL=true, -- Does this even work on AI? Possibly should kill this on all NPCs
T_DISRUPTION_SHIELD=true, -- Stupid scaling with infinite mana
},
},
},
resolvers.sustains_at_birth(),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment