diff --git a/game/modules/tome/data/general/npcs/construct.lua b/game/modules/tome/data/general/npcs/construct.lua index ba4889f1bb82a913128688e0f2697cffd06775f5..60220388b97a112df2d8aa1db895dbff08a678fe 100644 --- a/game/modules/tome/data/general/npcs/construct.lua +++ b/game/modules/tome/data/general/npcs/construct.lua @@ -61,7 +61,7 @@ newEntity{ base = "BASE_NPC_CONSTRUCT", rarity = 1, max_life = resolvers.rngavg(70,80), resolvers.equip{ - {type="weapon", subtype="greatmaul", autoreq=true}, + {type="weapon", subtype="greatmaul", forbid_power_source={antimagic=true}, autoreq=true}, }, resolvers.inscriptions(1, "rune"), resolvers.talents{ @@ -78,7 +78,7 @@ newEntity{ base = "BASE_NPC_CONSTRUCT", rarity = 1, max_life = resolvers.rngavg(90,100), resolvers.equip{ - {type="weapon", subtype="greatmaul", autoreq=true}, + {type="weapon", subtype="greatmaul", forbid_power_source={antimagic=true}, autoreq=true}, }, resolvers.inscriptions(2, "rune"), resolvers.talents{ @@ -97,7 +97,7 @@ newEntity{ base = "BASE_NPC_CONSTRUCT", rank = 3, max_life = resolvers.rngavg(90,100), resolvers.equip{ - {type="weapon", subtype="greatmaul", autoreq=true}, + {type="weapon", subtype="greatmaul", forbid_power_source={antimagic=true}, autoreq=true}, }, resolvers.inscriptions(2, "rune"), resolvers.talents{ diff --git a/game/modules/tome/data/general/npcs/elven-caster.lua b/game/modules/tome/data/general/npcs/elven-caster.lua index 6f6568c5e6fd4b4a8d3192a69f9515bf832dfc14..c88944dee7521030f984aa91559d430ba4d5f4c5 100644 --- a/game/modules/tome/data/general/npcs/elven-caster.lua +++ b/game/modules/tome/data/general/npcs/elven-caster.lua @@ -58,7 +58,7 @@ newEntity{ base = "BASE_NPC_ELVEN_CASTER", rarity = 2, max_life = resolvers.rngavg(70, 80), life_rating = 10, resolvers.equip{ - {type="weapon", subtype="staff", autoreq=true}, + {type="weapon", subtype="staff", forbid_power_source={antimagic=true}, autoreq=true}, }, combat_armor = 0, combat_def = 0, resolvers.talents{ @@ -75,7 +75,7 @@ newEntity{ base = "BASE_NPC_ELVEN_CASTER", max_life = resolvers.rngavg(70, 80), life_rating = 10, mana_regen = 30, max_mana = 200, resolvers.equip{ - {type="weapon", subtype="staff", autoreq=true}, + {type="weapon", subtype="staff", forbid_power_source={antimagic=true}, autoreq=true}, }, combat_armor = 0, combat_def = 0, resolvers.talents{ @@ -94,8 +94,8 @@ newEntity{ base = "BASE_NPC_ELVEN_CASTER", ai = "tactical", max_life = resolvers.rngavg(100, 110), life_rating = 13, resolvers.equip{ - {type="weapon", subtype="staff", autoreq=true}, - {type="armor", subtype="cloth", autoreq=true}, + {type="weapon", subtype="staff", forbid_power_source={antimagic=true}, autoreq=true}, + {type="armor", subtype="cloth", forbid_power_source={antimagic=true}, autoreq=true}, }, combat_armor = 0, combat_def = 0, resolvers.talents{ @@ -118,8 +118,8 @@ newEntity{ base = "BASE_NPC_ELVEN_CASTER", ai = "tactical", max_life = resolvers.rngavg(100, 110), resolvers.equip{ - {type="weapon", subtype="staff", autoreq=true}, - {type="armor", subtype="cloth", autoreq=true}, + {type="weapon", subtype="staff", forbid_power_source={antimagic=true}, autoreq=true}, + {type="armor", subtype="cloth", forbid_power_source={antimagic=true}, autoreq=true}, }, combat_armor = 0, combat_def = 0, resolvers.talents{ @@ -143,8 +143,8 @@ newEntity{ base = "BASE_NPC_ELVEN_CASTER", ai_tactic = resolvers.tactic"ranged", max_life = resolvers.rngavg(100, 110), life_rating = 12, resolvers.equip{ - {type="weapon", subtype="staff", autoreq=true}, - {type="armor", subtype="cloth", autoreq=true}, + {type="weapon", subtype="staff", forbid_power_source={antimagic=true}, autoreq=true}, + {type="armor", subtype="cloth", forbid_power_source={antimagic=true}, autoreq=true}, }, combat_armor = 0, combat_def = 0, resolvers.talents{ diff --git a/game/modules/tome/data/general/npcs/ghoul.lua b/game/modules/tome/data/general/npcs/ghoul.lua index d934bb00df67ab86d631ae50af1d5acf39bd6766..3ef2d68e2c8d501bfe0693e7da2410e784b32c73 100644 --- a/game/modules/tome/data/general/npcs/ghoul.lua +++ b/game/modules/tome/data/general/npcs/ghoul.lua @@ -123,7 +123,7 @@ newEntity{ base = "BASE_NPC_GHOUL", define_as = "RISEN_CORPSE", exp_worth = 1, combat_armor = 5, combat_def = 3, resolvers.equip{ - {type="weapon", subtype="longsword", autoreq=true}, + {type="weapon", subtype="longsword", forbid_power_source={antimagic=true}, autoreq=true}, }, resolvers.talents{ [Talents.T_STUN]={base=3, every=9, max=7}, @@ -158,11 +158,11 @@ newEntity{ base = "BASE_NPC_GHOUL", define_as = "ROTTING_TITAN", stats = { str=40, dex=20, mag=24, con=25 }, resists = {all = 25, [DamageType.PHYSICAL]=15, [DamageType.ARCANE]=-50, [DamageType.FIRE]=-20}, - + resolvers.equip{ {type="weapon", subtype="greatmaul", defined="ROTTING_MAUL", random_art_replace={chance=30}, autoreq=true, force_drop=true}, }, combat = { dam=resolvers.levelup(80, 1, 2), atk=resolvers.levelup(70, 1, 1), apr=20, dammod={str=1.3}, damtype=engine.DamageType.PHYSICAL, }, - + combat_atk=40, combat_spellpower=25, diff --git a/game/modules/tome/data/general/npcs/lich.lua b/game/modules/tome/data/general/npcs/lich.lua index 69ce913276bbb87fd6be62ea2bfbd4d9c7b63fe6..e4db794edc0da16669b84517528db15f209b1c72 100644 --- a/game/modules/tome/data/general/npcs/lich.lua +++ b/game/modules/tome/data/general/npcs/lich.lua @@ -30,13 +30,13 @@ newEntity{ body = { INVEN = 10, MAINHAND = 1, OFFHAND = 1, FINGER = 2, NECK = 1, LITE = 1, BODY = 1, HEAD = 1, CLOAK = 1, HANDS = 1, BELT = 1, FEET = 1}, equipment = resolvers.equip{ - {type="armor", subtype="cloth", ego_chance=75, autoreq=true}, - {type="armor", subtype="head", ego_chance=75, autoreq=true}, - {type="armor", subtype="feet", ego_chance=75, autoreq=true}, - {type="armor", subtype="cloak", ego_chance=75, autoreq=true}, - {type="jewelry", subtype="amulet", ego_chance=100, autoreq=true}, - {type="jewelry", subtype="ring", ego_chance=100, autoreq=true}, - {type="jewelry", subtype="ring", ego_chance=100, autoreq=true}, + {type="armor", subtype="cloth", ego_chance=75, forbid_power_source={antimagic=true}, autoreq=true}, + {type="armor", subtype="head", ego_chance=75, forbid_power_source={antimagic=true}, autoreq=true}, + {type="armor", subtype="feet", ego_chance=75, forbid_power_source={antimagic=true}, autoreq=true}, + {type="armor", subtype="cloak", ego_chance=75, forbid_power_source={antimagic=true}, autoreq=true}, + {type="jewelry", subtype="amulet", ego_chance=100, forbid_power_source={antimagic=true}, autoreq=true}, + {type="jewelry", subtype="ring", ego_chance=100, forbid_power_source={antimagic=true}, autoreq=true}, + {type="jewelry", subtype="ring", ego_chance=100, forbid_power_source={antimagic=true}, autoreq=true}, }, autolevel = "caster", diff --git a/game/modules/tome/data/general/npcs/major-demon.lua b/game/modules/tome/data/general/npcs/major-demon.lua index b3d409e7aa31dbc2ffe923b1a036a243382aa6d3..8fd5f162392d8d85f28c2253ef9d9ae6e7a10f7b 100644 --- a/game/modules/tome/data/general/npcs/major-demon.lua +++ b/game/modules/tome/data/general/npcs/major-demon.lua @@ -109,7 +109,7 @@ Oh, and it is twice as big, too.]], ai = "tactical", ai_tactic = resolvers.tactic"melee", - resolvers.equip{ {type="weapon", subtype="battleaxe", autoreq=true}, }, + resolvers.equip{ {type="weapon", subtype="battleaxe", forbid_power_source={antimagic=true}, autoreq=true}, }, resists={[DamageType.PHYSICAL] = resolvers.mbonus(15, 10), [DamageType.FIRE] = resolvers.mbonus(15, 10)}, @@ -140,7 +140,7 @@ newEntity{ base = "BASE_NPC_MAJOR_DEMON", ai = "tactical", - resolvers.equip{ {type="weapon", subtype="staff", autoreq=true}, }, + resolvers.equip{ {type="weapon", subtype="staff", forbid_power_source={antimagic=true}, autoreq=true}, }, silence_immune = 1, blind_immune = 1, @@ -175,8 +175,8 @@ It moves swiftly toward you, casting terrible spells and swinging its weapons at ai = "tactical", - resolvers.equip{ {type="weapon", subtype="longsword", autoreq=true}, }, - resolvers.equip{ {type="weapon", subtype="waraxe", autoreq=true}, }, + resolvers.equip{ {type="weapon", subtype="longsword", forbid_power_source={antimagic=true}, autoreq=true}, }, + resolvers.equip{ {type="weapon", subtype="waraxe", forbid_power_source={antimagic=true}, autoreq=true}, }, resists={all = resolvers.mbonus(25, 20)}, @@ -250,8 +250,8 @@ newEntity{ base = "BASE_NPC_MAJOR_DEMON", ai = "tactical", - resolvers.equip{ {type="weapon", subtype="mace", autoreq=true}, }, - resolvers.equip{ {type="weapon", subtype="mace", autoreq=true}, }, + resolvers.equip{ {type="weapon", subtype="mace", forbid_power_source={antimagic=true}, autoreq=true}, }, + resolvers.equip{ {type="weapon", subtype="mace", forbid_power_source={antimagic=true}, autoreq=true}, }, resists={[DamageType.PHYSICAL] = resolvers.mbonus(15, 10), [DamageType.FIRE] = 100}, on_melee_hit = {[DamageType.FIRE]=resolvers.mbonus(25, 25)}, diff --git a/game/modules/tome/data/general/npcs/minotaur.lua b/game/modules/tome/data/general/npcs/minotaur.lua index 324d5cc3253fd1c823f238dcee748adb9457f4de..64f65a54db22400bf18e00d9ad29b659d7c7cfe8 100644 --- a/game/modules/tome/data/general/npcs/minotaur.lua +++ b/game/modules/tome/data/general/npcs/minotaur.lua @@ -75,7 +75,7 @@ newEntity{ base = "BASE_NPC_MINOTAUR", level_range = {20, nil}, exp_worth = 1, rarity = 4, combat_armor = 15, combat_def = 7, - resolvers.equip{ {type="weapon", subtype="maul", autoreq=true} }, + resolvers.equip{ {type="weapon", subtype="maul", forbid_power_source={antimagic=true}, autoreq=true} }, autolevel = "caster", resists = { [DamageType.FIRE] = 100 }, diff --git a/game/modules/tome/data/general/npcs/orc-rak-shor.lua b/game/modules/tome/data/general/npcs/orc-rak-shor.lua index 34946b1b2a4a612c16fb27562d2514c9623f6af7..8efa12528cd499d73aee18bd73ebf42330229efa 100644 --- a/game/modules/tome/data/general/npcs/orc-rak-shor.lua +++ b/game/modules/tome/data/general/npcs/orc-rak-shor.lua @@ -55,8 +55,8 @@ newEntity{ base = "BASE_NPC_ORC_RAK_SHOR", rarity = 1, max_life = resolvers.rngavg(70,80), life_rating = 7, resolvers.equip{ - {type="weapon", subtype="staff", autoreq=true}, - {type="armor", subtype="cloth", autoreq=true}, + {type="weapon", subtype="staff", forbid_power_source={antimagic=true}, autoreq=true}, + {type="armor", subtype="cloth", forbid_power_source={antimagic=true}, autoreq=true}, }, combat_armor = 0, combat_def = 5, @@ -87,8 +87,8 @@ newEntity{ base = "BASE_NPC_ORC_RAK_SHOR", rarity = 2, max_life = resolvers.rngavg(110,120), life_rating = 12, resolvers.equip{ - {type="weapon", subtype="staff", autoreq=true}, - {type="armor", subtype="cloth", autoreq=true}, + {type="weapon", subtype="staff", forbid_power_source={antimagic=true}, autoreq=true}, + {type="armor", subtype="cloth", forbid_power_source={antimagic=true}, autoreq=true}, }, combat_armor = 0, combat_def = 5, @@ -111,8 +111,8 @@ newEntity{ base = "BASE_NPC_ORC_RAK_SHOR", rank = 3, max_life = resolvers.rngavg(160,180), life_rating = 15, resolvers.equip{ - {type="weapon", subtype="staff", autoreq=true}, - {type="armor", subtype="cloth", autoreq=true}, + {type="weapon", subtype="staff", forbid_power_source={antimagic=true}, autoreq=true}, + {type="armor", subtype="cloth", forbid_power_source={antimagic=true}, autoreq=true}, }, combat_armor = 0, combat_def = 5, diff --git a/game/modules/tome/data/general/npcs/orc-vor.lua b/game/modules/tome/data/general/npcs/orc-vor.lua index 8b0d034cfbb05f1d6583aa28e483d9e6f8a76f5d..1b017b78c80423e681a5cb5c68983978eb2ce696 100644 --- a/game/modules/tome/data/general/npcs/orc-vor.lua +++ b/game/modules/tome/data/general/npcs/orc-vor.lua @@ -57,8 +57,8 @@ newEntity{ base = "BASE_NPC_ORC_VOR", rarity = 1, max_life = resolvers.rngavg(100,110), life_rating = 7, resolvers.equip{ - {type="weapon", subtype="staff", autoreq=true}, - {type="armor", subtype="cloth", autoreq=true}, + {type="weapon", subtype="staff", forbid_power_source={antimagic=true}, autoreq=true}, + {type="armor", subtype="cloth", forbid_power_source={antimagic=true}, autoreq=true}, }, combat_armor = 0, combat_def = 5, @@ -78,8 +78,8 @@ newEntity{ base = "BASE_NPC_ORC_VOR", rarity = 4, max_life = resolvers.rngavg(100,110), life_rating = 10, resolvers.equip{ - {type="weapon", subtype="staff", autoreq=true}, - {type="armor", subtype="cloth", autoreq=true}, + {type="weapon", subtype="staff", forbid_power_source={antimagic=true}, autoreq=true}, + {type="armor", subtype="cloth", forbid_power_source={antimagic=true}, autoreq=true}, }, combat_armor = 0, combat_def = 5, ai = "tactical", @@ -106,8 +106,8 @@ newEntity{ base = "BASE_NPC_ORC_VOR", rarity = 1, max_life = resolvers.rngavg(100,110), life_rating = 10, resolvers.equip{ - {type="weapon", subtype="staff", autoreq=true}, - {type="armor", subtype="cloth", autoreq=true}, + {type="weapon", subtype="staff", forbid_power_source={antimagic=true}, autoreq=true}, + {type="armor", subtype="cloth", forbid_power_source={antimagic=true}, autoreq=true}, }, combat_armor = 0, combat_def = 5, @@ -127,8 +127,8 @@ newEntity{ base = "BASE_NPC_ORC_VOR", rarity = 4, max_life = resolvers.rngavg(100,110), life_rating = 10, resolvers.equip{ - {type="weapon", subtype="staff", autoreq=true}, - {type="armor", subtype="cloth", autoreq=true}, + {type="weapon", subtype="staff", forbid_power_source={antimagic=true}, autoreq=true}, + {type="armor", subtype="cloth", forbid_power_source={antimagic=true}, autoreq=true}, }, combat_armor = 0, combat_def = 5, rank = 3, diff --git a/game/modules/tome/data/general/npcs/skeleton.lua b/game/modules/tome/data/general/npcs/skeleton.lua index 36446a7053c98d1dd849344273aca5ae9ab0ca00..4c1f24415cbbc2e5eed6d12593eb3eeda2eafd94 100644 --- a/game/modules/tome/data/general/npcs/skeleton.lua +++ b/game/modules/tome/data/general/npcs/skeleton.lua @@ -59,7 +59,7 @@ newEntity{ base = "BASE_NPC_SKELETON", name = "degenerated skeleton warrior", color=colors.WHITE, image="npc/degenerated_skeleton_warrior.png", level_range = {1, 18}, exp_worth = 1, rarity = 1, - resolvers.equip{ {type="weapon", subtype="greatsword", autoreq=true} }, + resolvers.equip{ {type="weapon", subtype="greatsword", forbid_power_source={antimagic=true}, autoreq=true} }, max_life = resolvers.rngavg(40,50), combat_armor = 5, combat_def = 1, } @@ -70,7 +70,7 @@ newEntity{ base = "BASE_NPC_SKELETON", rarity = 1, max_life = resolvers.rngavg(90,100), combat_armor = 5, combat_def = 1, - resolvers.equip{ {type="weapon", subtype="greatsword", autoreq=true} }, + resolvers.equip{ {type="weapon", subtype="greatsword", forbid_power_source={antimagic=true}, autoreq=true} }, resolvers.talents{ [Talents.T_STUNNING_BLOW]={base=1, every=7, max=5}, [Talents.T_WEAPON_COMBAT]={base=1, every=10, max=5}, [Talents.T_WEAPONS_MASTERY]={base=1, every=10, max=5}, }, ai_state = { talent_in=1, }, } @@ -85,7 +85,7 @@ newEntity{ base = "BASE_NPC_SKELETON", stats = { str=10, dex=12, cun=14, mag=14, con=10 }, resolvers.talents{ [Talents.T_FLAME]={base=1, every=7, max=5}, [Talents.T_MANATHRUST]={base=2, every=7, max=5} }, - resolvers.equip{ {type="weapon", subtype="staff", autoreq=true} }, + resolvers.equip{ {type="weapon", subtype="staff", forbid_power_source={antimagic=true}, autoreq=true} }, autolevel = "caster", ai = "dumb_talented_simple", ai_state = { talent_in=3, }, @@ -102,7 +102,7 @@ newEntity{ base = "BASE_NPC_SKELETON", ai_state = { talent_in=1, }, autolevel = "archer", - resolvers.equip{ {type="weapon", subtype="longbow", autoreq=true}, {type="ammo", subtype="arrow", autoreq=true} }, + resolvers.equip{ {type="weapon", subtype="longbow", forbid_power_source={antimagic=true}, autoreq=true}, {type="ammo", subtype="arrow", forbid_power_source={antimagic=true}, autoreq=true} }, } newEntity{ base = "BASE_NPC_SKELETON", @@ -119,7 +119,7 @@ newEntity{ base = "BASE_NPC_SKELETON", ai_tactic = resolvers.tactic"ranged", autolevel = "archer", - resolvers.equip{ {type="weapon", subtype="longbow", autoreq=true}, {type="ammo", subtype="arrow", autoreq=true} }, + resolvers.equip{ {type="weapon", subtype="longbow", forbid_power_source={antimagic=true}, autoreq=true}, {type="ammo", subtype="arrow", forbid_power_source={antimagic=true}, autoreq=true} }, } newEntity{ base = "BASE_NPC_SKELETON", @@ -143,6 +143,6 @@ newEntity{ base = "BASE_NPC_SKELETON", [Talents.T_OVERPOWER]={base=1, every=7, max=5}, [Talents.T_DISARM]={base=3, every=7, max=7}, }, - resolvers.equip{ {type="weapon", subtype="longsword", autoreq=true}, {type="armor", subtype="shield", autoreq=true}, {type="armor", subtype="heavy", autoreq=true} }, + resolvers.equip{ {type="weapon", subtype="longsword", forbid_power_source={antimagic=true}, autoreq=true}, {type="armor", subtype="shield", forbid_power_source={antimagic=true}, autoreq=true}, {type="armor", subtype="heavy", forbid_power_source={antimagic=true}, autoreq=true} }, ai_state = { talent_in=1, }, } diff --git a/game/modules/tome/data/general/npcs/sunwall-town.lua b/game/modules/tome/data/general/npcs/sunwall-town.lua index 411ff20207938ef3a0f9698dd80dec3be58dc336..31280760e7a644d3815435ed82c42d755841756a 100644 --- a/game/modules/tome/data/general/npcs/sunwall-town.lua +++ b/game/modules/tome/data/general/npcs/sunwall-town.lua @@ -78,9 +78,9 @@ newEntity{ base = "BASE_NPC_SUNWALL_TOWN", ai = "tactical", ai_tactic = resolvers.tactic"melee", resolvers.equip{ - {type="weapon", subtype="mace", autoreq=true}, - {type="armor", subtype="shield", autoreq=true}, - {type="armor", subtype="massive", autoreq=true}, + {type="weapon", subtype="mace", forbid_power_source={antimagic=true}, autoreq=true}, + {type="armor", subtype="shield", forbid_power_source={antimagic=true}, autoreq=true}, + {type="armor", subtype="massive", forbid_power_source={antimagic=true}, autoreq=true}, }, resolvers.talents{ [Talents.T_ARMOUR_TRAINING]=4, @@ -100,8 +100,8 @@ newEntity{ base = "BASE_NPC_SUNWALL_TOWN", ai_tactic = resolvers.tactic"ranged", max_life = resolvers.rngavg(70,80), resolvers.equip{ - {type="weapon", subtype="stagg", autoreq=true}, - {type="armor", subtype="robe", autoreq=true}, + {type="weapon", subtype="stagg", forbid_power_source={antimagic=true}, autoreq=true}, + {type="armor", subtype="robe", forbid_power_source={antimagic=true}, autoreq=true}, }, resolvers.talents{ [Talents.T_CHANT_OF_LIGHT]=2, diff --git a/game/modules/tome/data/general/npcs/ziguranth.lua b/game/modules/tome/data/general/npcs/ziguranth.lua index c7bc98f45a2243f1325e4195c847920757659a25..db1882e11355b5fa6bcae6cb3c4e09765447bae8 100644 --- a/game/modules/tome/data/general/npcs/ziguranth.lua +++ b/game/modules/tome/data/general/npcs/ziguranth.lua @@ -60,9 +60,9 @@ newEntity{ base = "BASE_NPC_ZIGURANTH", rarity = 1, max_life = resolvers.rngavg(100,110), resolvers.equip{ - {type="weapon", subtype="waraxe", autoreq=true}, - {type="armor", subtype="shield", autoreq=true}, - {type="armor", subtype="heavy", autoreq=true}, + {type="weapon", subtype="waraxe", forbid_power_source={arcane=true}, autoreq=true}, + {type="armor", subtype="shield", forbid_power_source={arcane=true}, autoreq=true}, + {type="armor", subtype="heavy", forbid_power_source={arcane=true}, autoreq=true}, }, combat_armor = 10, combat_def = 6, resolvers.talents{ @@ -83,9 +83,9 @@ newEntity{ base = "BASE_NPC_ZIGURANTH", rarity = 2, max_life = resolvers.rngavg(100,110), resolvers.equip{ - {type="weapon", subtype="waraxe", autoreq=true}, - {type="armor", subtype="shield", autoreq=true}, - {type="armor", subtype="heavy", autoreq=true}, + {type="weapon", subtype="waraxe", forbid_power_source={arcane=true}, autoreq=true}, + {type="armor", subtype="shield", forbid_power_source={arcane=true}, autoreq=true}, + {type="armor", subtype="heavy", forbid_power_source={arcane=true}, autoreq=true}, }, combat_armor = 10, combat_def = 6, life_rating = 11, equilibrium_regen = -20, @@ -114,8 +114,8 @@ newEntity{ base = "BASE_NPC_ZIGURANTH", rank = 3, max_life = resolvers.rngavg(100,110), resolvers.equip{ - {type="weapon", subtype="battleaxe", autoreq=true}, - {type="armor", subtype="heavy", autoreq=true}, + {type="weapon", subtype="battleaxe", forbid_power_source={arcane=true}, autoreq=true}, + {type="armor", subtype="heavy", forbid_power_source={arcane=true}, autoreq=true}, }, combat_armor = 10, combat_def = 6, life_rating = 14, equilibrium_regen = -20, diff --git a/game/modules/tome/data/zones/ancient-elven-ruins/npcs.lua b/game/modules/tome/data/zones/ancient-elven-ruins/npcs.lua index 0fdd31f6dfad68a7962639e013a227fb840accf5..150f98e9fc073e1be552197a58c7bf359ee4de4e 100644 --- a/game/modules/tome/data/zones/ancient-elven-ruins/npcs.lua +++ b/game/modules/tome/data/zones/ancient-elven-ruins/npcs.lua @@ -49,8 +49,8 @@ newEntity{ define_as = "GREATER_MUMMY_LORD", body = { INVEN = 10, MAINHAND=1, OFFHAND=1, BODY=1, HEAD=1, }, equipment = resolvers.equip{ {type="weapon", subtype="longsword", defined="LONGSWORD_WINTERTIDE", random_art_replace={chance=75}, autoreq=true}, - {type="armor", subtype="shield", force_drop=true, tome_drops="boss", autoreq=true}, - {type="armor", subtype="mummy", force_drop=true, tome_drops="boss", autoreq=true}, + {type="armor", subtype="shield", force_drop=true, tome_drops="boss", forbid_power_source={antimagic=true}, autoreq=true}, + {type="armor", subtype="mummy", force_drop=true, tome_drops="boss", forbid_power_source={antimagic=true}, autoreq=true}, }, resolvers.drops{chance=100, nb=4, {tome_drops="boss"} }, @@ -93,8 +93,8 @@ newEntity{ base = "BASE_NPC_MUMMY", infravision = 10, resolvers.equip{ - {type="weapon", subtype="greatsword", autoreq=true}, - {type="armor", subtype="mummy", autoreq=true}, + {type="weapon", subtype="greatsword", forbid_power_source={antimagic=true}, autoreq=true}, + {type="armor", subtype="mummy", forbid_power_source={antimagic=true}, autoreq=true}, }, resolvers.talents{ [Talents.T_STUNNING_BLOW]={base=2, every=7, max=6}, @@ -117,7 +117,7 @@ newEntity{ base = "BASE_NPC_MUMMY", infravision = 10, resolvers.equip{ - {type="armor", subtype="mummy", force_drop=true, autoreq=true}, + {type="armor", subtype="mummy", force_drop=true, forbid_power_source={antimagic=true}, autoreq=true}, }, autolevel = "caster", resolvers.talents{ @@ -140,7 +140,7 @@ newEntity{ base = "BASE_NPC_MUMMY", infravision = 10, resolvers.equip{ - {type="armor", subtype="mummy", autoreq=true}, + {type="armor", subtype="mummy", forbid_power_source={antimagic=true}, autoreq=true}, }, autolevel = "ghoul", resolvers.talents{ diff --git a/game/modules/tome/data/zones/arena-unlock/npcs.lua b/game/modules/tome/data/zones/arena-unlock/npcs.lua index 1217617f0fe8d5c532f552249f250e998a9f2e87..08ede4970610172bde9e4a51ab43e7237474044b 100644 --- a/game/modules/tome/data/zones/arena-unlock/npcs.lua +++ b/game/modules/tome/data/zones/arena-unlock/npcs.lua @@ -144,9 +144,9 @@ newEntity{ name = "arcane blade", rarity = false, max_life = resolvers.rngavg(100,130), resolvers.equip{ - {type="weapon", subtype="greatsword", autoreq=true}, - {type="armor", subtype="heavy", autoreq=true}, - {type="armor", subtype="feet", autoreq=true}, + {type="weapon", subtype="greatsword", forbid_power_source={antimagic=true}, autoreq=true}, + {type="armor", subtype="heavy", forbid_power_source={antimagic=true}, autoreq=true}, + {type="armor", subtype="feet", forbid_power_source={antimagic=true}, autoreq=true}, }, resolvers.talents{ [Talents.T_ARCANE_COMBAT]=2, diff --git a/game/modules/tome/data/zones/arena/npcs.lua b/game/modules/tome/data/zones/arena/npcs.lua index 53b665d618e249d442a4da00b8a0854ef9eec288..c1e66bbe4691be91627a7082943e4227da5876d6 100644 --- a/game/modules/tome/data/zones/arena/npcs.lua +++ b/game/modules/tome/data/zones/arena/npcs.lua @@ -152,8 +152,8 @@ newEntity{ name = "master alchemist", max_life = 120, resolvers.inscriptions(3, {}), equipment = resolvers.equip{ - {type="weapon", subtype="staff", force_drop=true, tome_drops="boss", autoreq=true}, - {type="armor", subtype="cloth", force_drop=true, tome_drops="boss", autoreq=true}, + {type="weapon", subtype="staff", force_drop=true, tome_drops="boss", forbid_power_source={antimagic=true}, autoreq=true}, + {type="armor", subtype="cloth", force_drop=true, tome_drops="boss", forbid_power_source={antimagic=true}, autoreq=true}, }, resolvers.drops{chance=100, nb=1, {type="charm", subtype="wand", ego_chance=100}}, autolevel = "dexmage", @@ -284,9 +284,9 @@ newEntity{ name = "reaver", max_life = 150, resolvers.inscriptions(3, {}), resolvers.equip{ - {type="weapon", subtype="longsword", autoreq=true}, - {type="weapon", subtype="longsword", autoreq=true}, - {type="armor", subtype="heavy", autoreq=true}, + {type="weapon", subtype="longsword", forbid_power_source={antimagic=true}, autoreq=true}, + {type="weapon", subtype="longsword", forbid_power_source={antimagic=true}, autoreq=true}, + {type="armor", subtype="heavy", forbid_power_source={antimagic=true}, autoreq=true}, }, autolevel = "warriormage", combat_def = 4, @@ -364,7 +364,7 @@ newEntity{ name = "Ryal", desc = "A gargantuan bone giant resembling a wingless wyrm. He is fully sentient and surprisingly fast.", rank = 4, unique = true, resolvers.equip{ - {type="weapon", subtype="trident", autoreq=true, special_rarity="trident_rarity"}, + {type="weapon", subtype="trident", autoreq=true, forbid_power_source={antimagic=true}, special_rarity="trident_rarity"}, }, ai = "tactical", ai_state = { ai_move = "move_astar", talent_in = 1 }, ai_tactic = resolvers.tactic("melee"), @@ -418,10 +418,10 @@ newEntity{ name = "Fryjia Loren", body = { INVEN = 1000, QS_MAINHAND = 1, QS_OFFHAND = 1, MAINHAND = 1, OFFHAND = 1, FINGER = 2, NECK = 1, LITE = 1, BODY = 1, HEAD = 1, CLOAK = 1, HANDS = 1, BELT = 1, FEET = 1, TOOL = 1, QUIVER = 1 }, resolvers.equip{ - {type="weapon", subtype="dagger", autoreq=true}, - {type="weapon", subtype="dagger", autoreq=true}, - {type="armor", subtype="light", autoreq=true}, - {type="armor", subtype="light", autoreq=true} + {type="weapon", subtype="dagger", forbid_power_source={antimagic=true}, autoreq=true}, + {type="weapon", subtype="dagger", forbid_power_source={antimagic=true}, autoreq=true}, + {type="armor", subtype="light", forbid_power_source={antimagic=true}, autoreq=true}, + {type="armor", subtype="light", forbid_power_source={antimagic=true}, autoreq=true} }, talent_cd_reduction={ [Talents.T_ICE_SHARDS] = 3, @@ -476,8 +476,8 @@ newEntity{ name = "Riala Shalarak", body = { INVEN = 1000, QS_MAINHAND = 1, QS_OFFHAND = 1, MAINHAND = 1, OFFHAND = 1, FINGER = 2, NECK = 1, LITE = 1, BODY = 1, HEAD = 1, CLOAK = 1, HANDS = 1, BELT = 1, FEET = 1, TOOL = 1, QUIVER = 1 }, resolvers.equip{ - {type="weapon", subtype="staff", autoreq=true}, - {type="armor", subtype="cloth", autoreq=true} + {type="weapon", subtype="staff", forbid_power_source={antimagic=true}, autoreq=true}, + {type="armor", subtype="cloth", forbid_power_source={antimagic=true}, autoreq=true} }, resolvers.talents{ [Talents.T_FIREFLASH] = 2, @@ -566,9 +566,9 @@ newEntity{ name = "Rej Arkatis", body = { INVEN = 1000, QS_MAINHAND = 1, QS_OFFHAND = 1, MAINHAND = 1, OFFHAND = 1, FINGER = 2, NECK = 1, LITE = 1, BODY = 1, HEAD = 1, CLOAK = 1, HANDS = 1, BELT = 1, FEET = 1, TOOL = 1, QUIVER = 1 }, resolvers.equip{ - {type="weapon", subtype="dagger", autoreq=true, force_drop=true, tome_drops="boss"}, - {type="weapon", subtype="dagger", autoreq=true, force_drop=true, tome_drops="boss"}, - {type="armor", subtype="cloak", autoreq=true, force_drop=true, tome_drops="boss"}, + {type="weapon", subtype="dagger", autoreq=true, force_drop=true, forbid_power_source={antimagic=true}, tome_drops="boss"}, + {type="weapon", subtype="dagger", autoreq=true, force_drop=true, forbid_power_source={antimagic=true}, tome_drops="boss"}, + {type="armor", subtype="cloak", autoreq=true, force_drop=true, forbid_power_source={antimagic=true}, tome_drops="boss"}, }, autolevel = "rogue", combat_def = 2, @@ -653,8 +653,8 @@ newEntity{ name = "alchemist", rarity = 1, max_life = 60, equipment = resolvers.equip{ - {type="weapon", subtype="staff", autoreq=true}, - {type="armor", subtype="cloth", autoreq=true}, + {type="weapon", subtype="staff", forbid_power_source={antimagic=true}, autoreq=true}, + {type="armor", subtype="cloth", forbid_power_source={antimagic=true}, autoreq=true}, }, resolvers.drops{chance=40, {type="charm", subtype="wand", ego_chance=100}}, autolevel = "dexmage", ai_tactic = resolvers.tactic("ranged"), @@ -687,8 +687,8 @@ newEntity{ name = "blood mage", rarity = 1, max_life = 40, equipment = resolvers.equip{ - {type="weapon", subtype="staff", autoreq=true}, - {type="armor", subtype="cloth", autoreq=true}, + {type="weapon", subtype="staff", forbid_power_source={antimagic=true}, autoreq=true}, + {type="armor", subtype="cloth", forbid_power_source={antimagic=true}, autoreq=true}, }, resolvers.drops{chance=40, {type="charm", subtype="wand", ego_chance=100}}, autolevel = "caster", ai_tactic = resolvers.tactic("ranged"), @@ -712,8 +712,8 @@ newEntity{ name = "hexer", rarity = 1, max_life = 10, equipment = resolvers.equip{ - {type="weapon", subtype="staff", autoreq=true}, - {type="armor", subtype="cloth", autoreq=true}, + {type="weapon", subtype="staff", forbid_power_source={antimagic=true}, autoreq=true}, + {type="armor", subtype="cloth", forbid_power_source={antimagic=true}, autoreq=true}, }, resolvers.drops{chance=40, {type="charm", subtype="wand", ego_chance=100}}, autolevel = "caster", ai_tactic = resolvers.tactic("ranged"), @@ -801,10 +801,10 @@ newEntity{ name = "shadowblade", rarity = 1, max_life = 100, resolvers.equip{ - {type="weapon", subtype="dagger", autoreq=true}, - {type="weapon", subtype="dagger", autoreq=true}, - {type="armor", subtype="cloak", autoreq=true}, - {name="rough leather gloves", autoreq=true}, + {type="weapon", subtype="dagger", forbid_power_source={antimagic=true}, autoreq=true}, + {type="weapon", subtype="dagger", forbid_power_source={antimagic=true}, autoreq=true}, + {type="armor", subtype="cloak", forbid_power_source={antimagic=true}, autoreq=true}, + {name="rough leather gloves", forbid_power_source={antimagic=true}, autoreq=true}, }, autolevel = "rogue", ai_tactic = resolvers.tactic("melee"), combat_def = 2, @@ -995,8 +995,8 @@ newEntity{ name = "martyr", rarity = 10, max_life = 200, resolvers.equip{ - {type="weapon", subtype="longsword", ego_chance=10, autoreq=true}, - {type="armor", subtype="shield", ego_chance=30, autoreq=true}, + {type="weapon", subtype="longsword", ego_chance=10, forbid_power_source={antimagic=true}, autoreq=true}, + {type="armor", subtype="shield", ego_chance=30, forbid_power_source={antimagic=true}, autoreq=true}, }, resists = { [DamageType.LIGHT] = 90 }, autolevel = "caster", @@ -1025,8 +1025,8 @@ newEntity{ name = "anorithil", rarity = 10, max_life = 120, resolvers.equip{ - {type="weapon", subtype="staff", ego_chance=30, autoreq=true}, - {type="armor", subtype="cloth", ego_chance=30, autoreq=true}, + {type="weapon", subtype="staff", ego_chance=30, forbid_power_source={antimagic=true}, autoreq=true}, + {type="armor", subtype="cloth", ego_chance=30, forbid_power_source={antimagic=true}, autoreq=true}, }, autolevel = "caster", ai_tactic = resolvers.tactic("ranged"), resolvers.drops{chance=50, nb=1, {type="weapon", subtype="staff", force_drop=true, tome_drops="boss"}}, @@ -1054,9 +1054,9 @@ newEntity{ name = "sun paladin", rarity = 10, max_life = 150, resolvers.equip{ - {type="weapon", subtype="longsword", ego_chance=30, autoreq=true}, - {type="armor", subtype="massive", autoreq=true}, - {type="armor", subtype="shield", ego_chance=30, autoreq=true}, + {type="weapon", subtype="longsword", ego_chance=30, forbid_power_source={antimagic=true}, autoreq=true}, + {type="armor", subtype="massive", forbid_power_source={antimagic=true}, autoreq=true}, + {type="armor", subtype="shield", ego_chance=30, forbid_power_source={antimagic=true}, autoreq=true}, }, resolvers.drops{chance=50, nb=1, {type="weapon", subtype="staff", force_drop=true, tome_drops="boss"}}, combat_def = 4, @@ -1089,9 +1089,9 @@ newEntity{ name = "star crusader", stun_immune = 0.2, confusion_immune = 0.4, resolvers.equip{ - {type="weapon", subtype="longsword", ego_chance=30, autoreq=true}, - {type="armor", subtype="massive", autoreq=true}, - {type="armor", subtype="shield", ego_chance=50, autoreq=true}, + {type="weapon", subtype="longsword", ego_chance=30, forbid_power_source={antimagic=true}, autoreq=true}, + {type="armor", subtype="massive", forbid_power_source={antimagic=true}, autoreq=true}, + {type="armor", subtype="shield", ego_chance=50, forbid_power_source={antimagic=true}, autoreq=true}, }, resists = { [DamageType.LIGHT] = 95 ,[DamageType.DARKNESS] = 95 }, resolvers.drops{ chance=50, nb=1, {type="weapon", subtype="staff", force_drop=true, tome_drops="boss"} }, diff --git a/game/modules/tome/data/zones/blighted-ruins/npcs.lua b/game/modules/tome/data/zones/blighted-ruins/npcs.lua index 1e969a7463dc81338e32b51aba813bccb464f5cd..deb9c04f0c68c5402abaad48aa0a2e2f64112086 100644 --- a/game/modules/tome/data/zones/blighted-ruins/npcs.lua +++ b/game/modules/tome/data/zones/blighted-ruins/npcs.lua @@ -52,7 +52,7 @@ newEntity{ max_life = resolvers.rngavg(70,80), life_rating = 7, resolvers.equip{ - {type="weapon", subtype="staff", autoreq=true}, + {type="weapon", subtype="staff", forbid_power_source={antimagic=true}, autoreq=true}, {type="armor", subtype="cloak", defined="CLOAK_DECEPTION", autoreq=true}, }, diff --git a/game/modules/tome/data/zones/charred-scar/npcs.lua b/game/modules/tome/data/zones/charred-scar/npcs.lua index eca6271f40a05cc7854a6284033091dd1605bb1a..bf7eb560cdbf5671ecfc2f734a3d7b4eb0aedba7 100644 --- a/game/modules/tome/data/zones/charred-scar/npcs.lua +++ b/game/modules/tome/data/zones/charred-scar/npcs.lua @@ -55,9 +55,9 @@ newEntity{ base = "BASE_NPC_SUNWALL_DEFENDER", define_as = "SUN_PALADIN_DEFENDER life_regen = 5, max_life = resolvers.rngavg(140,170), resolvers.equip{ - {type="weapon", subtype="mace", autoreq=true}, - {type="armor", subtype="shield", autoreq=true}, - {type="armor", subtype="massive", autoreq=true}, + {type="weapon", subtype="mace", forbid_power_source={antimagic=true}, autoreq=true}, + {type="armor", subtype="shield", forbid_power_source={antimagic=true}, autoreq=true}, + {type="armor", subtype="massive", forbid_power_source={antimagic=true}, autoreq=true}, }, resolvers.talents{ [Talents.T_ARMOUR_TRAINING]=5, @@ -85,9 +85,9 @@ newEntity{ base = "BASE_NPC_SUNWALL_DEFENDER", define_as = "SUN_PALADIN_DEFENDER life_regen = 5, max_life = resolvers.rngavg(240,270), resolvers.equip{ - {type="weapon", subtype="mace", autoreq=true}, - {type="armor", subtype="shield", autoreq=true}, - {type="armor", subtype="massive", autoreq=true}, + {type="weapon", subtype="mace", forbid_power_source={antimagic=true}, autoreq=true}, + {type="armor", subtype="shield", forbid_power_source={antimagic=true}, autoreq=true}, + {type="armor", subtype="massive", forbid_power_source={antimagic=true}, autoreq=true}, }, resolvers.talents{ [Talents.T_ARMOUR_TRAINING]=5, @@ -177,8 +177,8 @@ newEntity{ body = { INVEN = 10, MAINHAND=1, OFFHAND=1, BODY=1 }, resolvers.equip{ - {type="weapon", subtype="staff", force_drop=true, tome_drops="boss", autoreq=true}, - {type="armor", subtype="cloth", force_drop=true, tome_drops="boss", autoreq=true}, + {type="weapon", subtype="staff", force_drop=true, tome_drops="boss", forbid_power_source={antimagic=true}, autoreq=true}, + {type="armor", subtype="cloth", force_drop=true, tome_drops="boss", forbid_power_source={antimagic=true}, autoreq=true}, }, resolvers.drops{chance=100, nb=10, {tome_drops="boss"} }, @@ -235,8 +235,8 @@ newEntity{ body = { INVEN = 10, MAINHAND=1, OFFHAND=1, BODY=1 }, resolvers.equip{ - {type="weapon", subtype="staff", force_drop=true, tome_drops="boss", autoreq=true}, - {type="armor", subtype="cloth", force_drop=true, tome_drops="boss", autoreq=true}, + {type="weapon", subtype="staff", force_drop=true, tome_drops="boss", forbid_power_source={antimagic=true}, autoreq=true}, + {type="armor", subtype="cloth", force_drop=true, tome_drops="boss", forbid_power_source={antimagic=true}, autoreq=true}, }, resolvers.drops{chance=100, nb=10, {tome_drops="boss"} }, diff --git a/game/modules/tome/data/zones/deep-bellow/npcs.lua b/game/modules/tome/data/zones/deep-bellow/npcs.lua index 46cec58c7c3cf31fe2a6c9ea2084594e09d34e4f..45f08f2afcb261a575df2e31c78c62326ca148d3 100644 --- a/game/modules/tome/data/zones/deep-bellow/npcs.lua +++ b/game/modules/tome/data/zones/deep-bellow/npcs.lua @@ -147,9 +147,9 @@ newEntity{ base="BASE_NPC_CORRUPTED_HORROR", define_as = "ABOMINATION", body = { INVEN = 10, MAINHAND=1, OFFHAND=1, BODY=1, FEET=1 }, resolvers.equip{ - {type="weapon", subtype="battleaxe", force_drop=true, tome_drops="boss", autoreq=true}, - {type="armor", subtype="boots", defined="WARPED_BOOTS", random_art_replace={chance=75}, autoreq=true}, - {type="armor", subtype="massive", force_drop=true, tome_drops="boss", autoreq=true}, + {type="weapon", subtype="battleaxe", force_drop=true, tome_drops="boss", forbid_power_source={antimagic=true}, autoreq=true}, + {type="armor", subtype="boots", defined="WARPED_BOOTS", random_art_replace={chance=75}, forbid_power_source={antimagic=true}, autoreq=true}, + {type="armor", subtype="massive", force_drop=true, tome_drops="boss", forbid_power_source={antimagic=true}, autoreq=true}, }, resolvers.drops{chance=100, nb=3, {tome_drops="boss"} }, resolvers.drops{chance=100, nb=1, {defined="ADV_LTR_8"} }, diff --git a/game/modules/tome/data/zones/dreadfell/npcs.lua b/game/modules/tome/data/zones/dreadfell/npcs.lua index 708de27948596447d149f2ac2e6924a553905a3f..27aa73e696a74f376d1b58012eb089792853589e 100644 --- a/game/modules/tome/data/zones/dreadfell/npcs.lua +++ b/game/modules/tome/data/zones/dreadfell/npcs.lua @@ -211,12 +211,12 @@ What proud hero of renown was this before he was condemned to such a terrible fa body = { INVEN = 10, MAINHAND=1, OFFHAND=1, BODY=1, HEAD=1, HANDS=1, FEET=1, }, equipment = resolvers.equip{ - {type="weapon", subtype="mace", ego_chance=100, autoreq=true, force_drop=true,}, - {type="armor", subtype="shield", ego_chance=100, autoreq=true, force_drop=true,}, + {type="weapon", subtype="mace", ego_chance=100, autoreq=true, forbid_power_source={antimagic=true}, force_drop=true,}, + {type="armor", subtype="shield", ego_chance=100, autoreq=true, forbid_power_source={antimagic=true}, force_drop=true,}, {type="armor", subtype="massive", defined="BORFAST_CAGE", random_art_replace={chance=75}, autoreq=true, tome_drops="boss"}, - {type="armor", subtype="head", ego_chance=75, autoreq=true}, - {type="armor", subtype="hands", ego_chance=75, autoreq=true}, - {type="armor", subtype="feet", ego_chance=75, autoreq=true}, + {type="armor", subtype="head", ego_chance=75, forbid_power_source={antimagic=true}, autoreq=true}, + {type="armor", subtype="hands", ego_chance=75, forbid_power_source={antimagic=true}, autoreq=true}, + {type="armor", subtype="feet", ego_chance=75, forbid_power_source={antimagic=true}, autoreq=true}, }, resolvers.drops{chance=100, nb=1, {tome_drops="boss"} }, resolvers.drops{chance=100, nb=1, {defined="BORFAST_LETTER"} }, @@ -235,19 +235,19 @@ What proud hero of renown was this before he was condemned to such a terrible fa [Talents.T_RUSH]={base=1, every=5, max=6}, [Talents.T_SPELL_SHIELD]={base=3, every=5, max=6}, [Talents.T_PERFECT_STRIKE]={base=3, every=5, max=6}, - + [Talents.T_SHIELD_WALL]=6, [Talents.T_SHIELD_EXPERTISE]=6, - + [Talents.T_THICK_SKIN]={base=3, every=5, max=5}, [Talents.T_ARMOUR_TRAINING]={base=4, every=5, max=10}, [Talents.T_WEAPONS_MASTERY]={base=2, every=10, max=5}, [Talents.T_WEAPON_COMBAT]={base=2, every=10, max=5}, - + [Talents.T_VITALITY]={base=4, every=5, max=6}, [Talents.T_UNFLINCHING_RESOLVE]=6, [Talents.T_DAUNTING_PRESENCE]={base=3, every=5, max=5}, - + [Talents.T_GHOULISH_LEAP]={base=1, every=5, max=5}, [Talents.T_RETCH]=5, [Talents.T_GNAW]=1, @@ -267,7 +267,7 @@ newEntity{ define_as = "ALETTA", type = "undead", subtype = "ghost", unique = true, name = "Aletta Soultorn", female=1, display = "G", color=colors.VIOLET, - desc = [[What once must have been an enchantingly beautiful Higher woman now looks to be a ghost of utter despair. Her thin, elegant form ripples gently in the air, whilst her tattered robes seem oddly still. The ghost's face looks jittery and pained whilst her wild, glowing eyes move rapidly back and forth in their sockets. + desc = [[What once must have been an enchantingly beautiful Higher woman now looks to be a ghost of utter despair. Her thin, elegant form ripples gently in the air, whilst her tattered robes seem oddly still. The ghost's face looks jittery and pained whilst her wild, glowing eyes move rapidly back and forth in their sockets. Now and then she seems to see something and her jaw pulls back, her whole face splitting apart as she shrieks an unholy cry of pain and torment.]], killer_message = "and offered to her dark Master", level_range = {20, nil}, exp_worth = 2, @@ -278,7 +278,7 @@ Now and then she seems to see something and her jaw pulls back, her whole face s size_category = 3, infravision = 10, stats = { str=14, dex=18, mag=20, wil=20, cun=20, con=12 }, - + instakill_immune = 1, no_breath = 1, stone_immune = 1, @@ -292,23 +292,23 @@ Now and then she seems to see something and her jaw pulls back, her whole face s cut_immune = 1, see_invisible = 80, undead = 1, - + combat_armor = 0, combat_def = 10, stealth = 20, combat = { dam=5, atk=5, apr=100, dammod={str=0.5, mag=0.5} }, - + can_pass = {pass_wall=70}, dont_pass_target = true, resists = {all = 35, [DamageType.LIGHT] = -70, [DamageType.DARKNESS] = 65}, body = { INVEN = 10, MAINHAND=1, OFFHAND=1, NECK=1, FINGER = 2, BODY=1, HEAD=1, }, equipment = resolvers.equip{ - {type="armor", subtype="cloth", ego_chance=75, autoreq=true,}, + {type="armor", subtype="cloth", ego_chance=75, forbid_power_source={antimagic=true}, autoreq=true,}, {type="armor", subtype="head", defined="ALETTA_DIADEM", random_art_replace={chance=75}, autoreq=true, tome_drops="boss"}, - {type="jewelry", subtype="amulet", ego_chance=100, autoreq=true, force_drop=true}, - {type="jewelry", subtype="ring", ego_chance=100, autoreq=true, force_drop=true}, - {type="jewelry", subtype="ring", ego_chance=75, autoreq=true}, + {type="jewelry", subtype="amulet", ego_chance=100, autoreq=true, forbid_power_source={antimagic=true}, force_drop=true}, + {type="jewelry", subtype="ring", ego_chance=100, autoreq=true, forbid_power_source={antimagic=true}, force_drop=true}, + {type="jewelry", subtype="ring", ego_chance=75, forbid_power_source={antimagic=true}, autoreq=true}, }, resolvers.drops{chance=100, nb=1, {tome_drops="boss"} }, resolvers.drops{chance=100, nb=1, {defined="ALETTA_LETTER"} }, @@ -322,7 +322,7 @@ Now and then she seems to see something and her jaw pulls back, her whole face s [Talents.T_GLOOM]={base=3, every=7, max=5}, [Talents.T_WEAKNESS]={base=3, every=7, max=5}, [Talents.T_SANCTUARY]=5, - + [Talents.T_INSTILL_FEAR]=5, [Talents.T_HEIGHTEN_FEAR]=5, [Talents.T_TYRANT]=5, @@ -357,12 +357,12 @@ There is a cunning air to his hollow skull, and his empty sockets reveal nothing body = { INVEN = 10, MAINHAND=1, OFFHAND=1, QUIVER=1 }, equipment = resolvers.equip{ {type="weapon", subtype="sling", defined="HARESKIN_SLING", random_art_replace={chance=0}, autoreq=true, tome_drops="boss"}, - {type="weapon", subtype="dagger", ego_chance=100, autoreq=true, force_drop=true}, - {type="ammo", subtype="shot", ego_chance=100, autoreq=true, force_drop=true}, + {type="weapon", subtype="dagger", ego_chance=100, autoreq=true, forbid_power_source={antimagic=true}, force_drop=true}, + {type="ammo", subtype="shot", ego_chance=100, autoreq=true, forbid_power_source={antimagic=true}, force_drop=true}, }, resolvers.drops{chance=100, nb=1, {tome_drops="boss"} }, resolvers.drops{chance=100, nb=1, {defined="FILIO_LETTER"} }, - + open_door = 1, instakill_immune = 1, cut_immune = 1, @@ -374,23 +374,23 @@ There is a cunning air to his hollow skull, and his empty sockets reveal nothing resolvers.talents{ [Talents.T_SHOOT]=1, [Talents.T_INERTIAL_SHOT]=3, - + [Talents.T_STEALTH]={base=5, every=6, max=7}, [Talents.T_SHADOWSTRIKE]={base=1, every=6, max=7}, [Talents.T_HIDE_IN_PLAIN_SIGHT]={base=1, every=6, max=7}, - + [Talents.T_DISENGAGE]={base=3, every=6, max=7}, [Talents.T_EVASION]={base=5, every=6, max=7}, [Talents.T_PIERCING_SIGHT]={base=3, every=6, max=7}, - + [Talents.T_DUAL_STRIKE]={base=2, every=6, max=7}, [Talents.T_DUAL_WEAPON_DEFENSE]={base=5, every=6, max=7}, [Talents.T_LETHALITY]={base=1, every=6, max=5}, [Talents.T_WILLFUL_COMBAT]={base=5, every=6, max=6}, - + [Talents.T_KNIFE_MASTERY]={base=2, every=10, max=5}, [Talents.T_WEAPON_COMBAT]={base=2, every=10, max=5}, - + [Talents.T_BONE_ARMOUR]={base=3, every=5, max=5}, [Talents.T_RESILIENT_BONES]={base=3, every=5, max=5}, [Talents.T_SKELETON_REASSEMBLE]={base=3, every=5, max=5}, @@ -401,11 +401,11 @@ There is a cunning air to his hollow skull, and his empty sockets reveal nothing ai = "tactical", ai_state = { talent_in=1, ai_move="move_astar", }, ai_tactic = resolvers.tactic"survivor", resolvers.inscriptions(1, {"invisibility rune",}), - + on_move = function(self, x, y, self, force) if not force and rng.percent(10) then local traps = { self.T_BEAR_TRAP, self.T_CATAPULT_TRAP } self:forceUseTalent(rng.table(traps), {ignore_energy=true, ignore_resources=true, ignore_cd=true, force_target=self}) end - end, + end, } diff --git a/game/modules/tome/data/zones/eruan/npcs.lua b/game/modules/tome/data/zones/eruan/npcs.lua index de7ae74126169c502d7fe94d93ca4b1904d9a1dd..36ac2ec3d349e7d84eea51bbc5cffe0ad378fc58 100644 --- a/game/modules/tome/data/zones/eruan/npcs.lua +++ b/game/modules/tome/data/zones/eruan/npcs.lua @@ -51,9 +51,9 @@ newEntity{ define_as = "SUN_PALADIN_GUREN", resolvers.drops{chance=100, nb=3, {tome_drops="boss"} }, resolvers.equip{ - {type="weapon", subtype="mace", autoreq=true}, - {type="armor", subtype="shield", autoreq=true}, - {type="armor", subtype="massive", autoreq=true}, + {type="weapon", subtype="mace", forbid_power_source={antimagic=true}, autoreq=true}, + {type="armor", subtype="shield", forbid_power_source={antimagic=true}, autoreq=true}, + {type="armor", subtype="massive", forbid_power_source={antimagic=true}, autoreq=true}, }, resolvers.talents{ [Talents.T_ARMOUR_TRAINING]=5, diff --git a/game/modules/tome/data/zones/golem-graveyard/npcs.lua b/game/modules/tome/data/zones/golem-graveyard/npcs.lua index 77f435fb396124dac88fd1e7022f6a8db7646f04..1626f6e423d21d5b77c26561fd02cfb5974acd19 100644 --- a/game/modules/tome/data/zones/golem-graveyard/npcs.lua +++ b/game/modules/tome/data/zones/golem-graveyard/npcs.lua @@ -40,8 +40,8 @@ newEntity{ define_as = "ATAMATHON", base = "BASE_NPC_CONSTRUCT", body = { INVEN = 10, MAINHAND=1, OFFHAND=1, BODY=1, GEM=4 }, resolvers.equip{ - {type="weapon", subtype="greatmaul", tome_drops="boss", tome_mod="uvault", autoreq=true }, - {type="armour", subtype="massive", tome_drops="boss", tome_mod="uvault", autoreq=true }, + {type="weapon", subtype="greatmaul", tome_drops="boss", tome_mod="uvault", forbid_power_source={antimagic=true}, autoreq=true }, + {type="armour", subtype="massive", tome_drops="boss", tome_mod="uvault", forbid_power_source={antimagic=true}, autoreq=true }, }, combat_armor = 50, resolvers.drops{chance=100, nb=7, {type="gem"} }, diff --git a/game/modules/tome/data/zones/halfling-ruins/npcs.lua b/game/modules/tome/data/zones/halfling-ruins/npcs.lua index 9292f0d78577e0158122760a947e5e91ef399c49..d8007436a3069f1a5e5bfec83399634bbbf6716e 100644 --- a/game/modules/tome/data/zones/halfling-ruins/npcs.lua +++ b/game/modules/tome/data/zones/halfling-ruins/npcs.lua @@ -43,9 +43,9 @@ newEntity{ define_as="SUBJECT_Z", see_invisible = 20, resolvers.equip{ - {type="weapon", subtype="dagger", autoreq=true, force_drop=true, tome_drops="boss"}, - {type="weapon", subtype="dagger", autoreq=true, force_drop=true, tome_drops="boss"}, - {type="armor", subtype="light", autoreq=true, force_drop=true, tome_drops="boss"}, + {type="weapon", subtype="dagger", autoreq=true, force_drop=true, forbid_power_source={antimagic=true}, tome_drops="boss"}, + {type="weapon", subtype="dagger", autoreq=true, force_drop=true, forbid_power_source={antimagic=true}, tome_drops="boss"}, + {type="armor", subtype="light", autoreq=true, force_drop=true, forbid_power_source={antimagic=true}, tome_drops="boss"}, {defined="NIGHT_SONG", random_art_replace={chance=65}, autoreq=true}, }, diff --git a/game/modules/tome/data/zones/high-peak/npcs.lua b/game/modules/tome/data/zones/high-peak/npcs.lua index 3f2dc4eba238333cb98713fe85e765697c7e714d..09fd3690aa58c11473aea99acd5668c70f741b13 100644 --- a/game/modules/tome/data/zones/high-peak/npcs.lua +++ b/game/modules/tome/data/zones/high-peak/npcs.lua @@ -312,11 +312,11 @@ newEntity{ define_as = "HIGH_SUN_PALADIN_AERYN", resolvers.drops{chance=100, nb=3, {tome_drops="boss"} }, resolvers.equip{ - {type="weapon", subtype="mace", force_drop=true, tome_drops="boss", autoreq=true}, - {type="armor", subtype="shield", force_drop=true, tome_drops="boss", autoreq=true}, - {type="armor", subtype="massive", force_drop=true, tome_drops="boss", autoreq=true}, - {type="armor", subtype="feet", force_drop=true, tome_drops="boss", autoreq=true}, - {type="armor", subtype="head", force_drop=true, tome_drops="boss", autoreq=true}, + {type="weapon", subtype="mace", force_drop=true, tome_drops="boss", forbid_power_source={antimagic=true}, autoreq=true}, + {type="armor", subtype="shield", force_drop=true, tome_drops="boss", forbid_power_source={antimagic=true}, autoreq=true}, + {type="armor", subtype="massive", force_drop=true, tome_drops="boss", forbid_power_source={antimagic=true}, autoreq=true}, + {type="armor", subtype="feet", force_drop=true, tome_drops="boss", forbid_power_source={antimagic=true}, autoreq=true}, + {type="armor", subtype="head", force_drop=true, tome_drops="boss", forbid_power_source={antimagic=true}, autoreq=true}, }, positive_regen = 25, diff --git a/game/modules/tome/data/zones/last-hope-graveyard/npcs.lua b/game/modules/tome/data/zones/last-hope-graveyard/npcs.lua index 2a87c24cb33ea0a500d3768ca91e41036eca2d13..cdf93236a69b32c9a9a179e39b1f106b68d060d4 100644 --- a/game/modules/tome/data/zones/last-hope-graveyard/npcs.lua +++ b/game/modules/tome/data/zones/last-hope-graveyard/npcs.lua @@ -44,8 +44,8 @@ newEntity{ define_as = "CELIA", level_range = {20, nil}, equipment = resolvers.equip{ - {type="weapon", subtype="staff", force_drop=true, tome_drops="boss", autoreq=true}, - {type="armor", subtype="cloth", force_drop=true, tome_drops="boss", autoreq=true}, + {type="weapon", subtype="staff", force_drop=true, tome_drops="boss", forbid_power_source={antimagic=true}, autoreq=true}, + {type="armor", subtype="cloth", force_drop=true, tome_drops="boss", forbid_power_source={antimagic=true}, autoreq=true}, }, resolvers.drops{chance=100, nb=3, {tome_drops="boss"} }, resolvers.drops{chance=100, nb=1, {unique=true} }, diff --git a/game/modules/tome/data/zones/mark-spellblaze/npcs.lua b/game/modules/tome/data/zones/mark-spellblaze/npcs.lua index 9da71fe9c3fe6f38b481ba33f84cb03ee9e7a201..34a56453f2145261fdf1c656e349aa5cd7ee0ce3 100644 --- a/game/modules/tome/data/zones/mark-spellblaze/npcs.lua +++ b/game/modules/tome/data/zones/mark-spellblaze/npcs.lua @@ -36,8 +36,8 @@ newEntity{ base = "BASE_NPC_ELVEN_CASTER", define_as = "GRAND_CORRUPTOR", max_vim = 800, max_life = resolvers.rngavg(300, 310), life_rating = 18, resolvers.equip{ - {type="weapon", subtype="staff", force_drop=true, tome_drops="boss", autoreq=true}, - {type="armor", subtype="cloth", force_drop=true, tome_drops="boss", autoreq=true}, + {type="weapon", subtype="staff", force_drop=true, tome_drops="boss", forbid_power_source={antimagic=true}, autoreq=true}, + {type="armor", subtype="cloth", force_drop=true, tome_drops="boss", forbid_power_source={antimagic=true}, autoreq=true}, }, resolvers.drops{chance=100, nb=1, {unique=true} }, resolvers.drops{chance=100, nb=1, {defined="DRAFT_LETTER"} }, diff --git a/game/modules/tome/data/zones/rak-shor-pride/npcs.lua b/game/modules/tome/data/zones/rak-shor-pride/npcs.lua index 7e5d754d09f1f98dbc27f392660b9310b09a4d41..3b0b6fa99577761967bee335729a88d63e60f9da 100644 --- a/game/modules/tome/data/zones/rak-shor-pride/npcs.lua +++ b/game/modules/tome/data/zones/rak-shor-pride/npcs.lua @@ -55,7 +55,7 @@ newEntity{ base="BASE_NPC_ORC_RAK_SHOR", define_as = "RAK_SHOR", body = { INVEN = 10, MAINHAND=1, OFFHAND=1, BODY=1 }, resolvers.equip{ - {type="weapon", subtype="staff", force_drop=true, tome_drops="boss", autoreq=true}, + {type="weapon", subtype="staff", force_drop=true, tome_drops="boss", forbid_power_source={antimagic=true}, autoreq=true}, {type="armor", subtype="cloth", defined="BLACK_ROBE", random_art_replace={chance=75}, autoreq=true}, }, resolvers.drops{chance=20, nb=1, {defined="JEWELER_TOME"} }, diff --git a/game/modules/tome/data/zones/reknor-escape/npcs.lua b/game/modules/tome/data/zones/reknor-escape/npcs.lua index e0266f8a1edbefd1cdb50391c97bed62e19691d9..149901587d8685509af4d6582d126de9e9d554a7 100644 --- a/game/modules/tome/data/zones/reknor-escape/npcs.lua +++ b/game/modules/tome/data/zones/reknor-escape/npcs.lua @@ -48,8 +48,8 @@ newEntity{ define_as = "BROTOQ", body = { INVEN = 10, MAINHAND=1, OFFHAND=1, BODY=1 }, equipment = resolvers.equip{ {type="weapon", subtype="waraxe", defined="FAKE_SKULLCLEAVER", never_drop=true}, - {type="weapon", subtype="longsword", autoreq=true}, - {type="armor", subtype="light", autoreq=true}, + {type="weapon", subtype="longsword", forbid_power_source={antimagic=true}, autoreq=true}, + {type="armor", subtype="light", forbid_power_source={antimagic=true}, autoreq=true}, }, resolvers.drops{chance=100, nb=1, {type="weapon", subtype="waraxe", defined="SKULLCLEAVER", random_art_replace={chance=75}} }, resolvers.drops{chance=100, nb=3, {tome_drops="boss"} }, diff --git a/game/modules/tome/data/zones/rhaloren-camp/npcs.lua b/game/modules/tome/data/zones/rhaloren-camp/npcs.lua index 4e4ffbea955bc9082da33ec9345c3d3fa09c76b0..64b016841951a3a6e51293dfcd2252a14a66fed6 100644 --- a/game/modules/tome/data/zones/rhaloren-camp/npcs.lua +++ b/game/modules/tome/data/zones/rhaloren-camp/npcs.lua @@ -44,7 +44,7 @@ newEntity{ define_as = "INQUISITOR", move_others=true, body = { INVEN = 10, MAINHAND=1, OFFHAND=1, BODY=1 }, - equipment = resolvers.equip{ {type="weapon", subtype="greatsword", auto_req=true}, {type="armor", subtype="light", autoreq=true}, }, + equipment = resolvers.equip{ {type="weapon", subtype="greatsword", forbid_power_source={antimagic=true}, auto_req=true}, {type="armor", subtype="light", forbid_power_source={antimagic=true}, autoreq=true}, }, resolvers.drops{chance=100, nb=1, {defined="ROD_OF_ANNULMENT", random_art_replace={chance=75}} }, resolvers.drops{chance=100, nb=1, {defined="NOTE5"} }, resolvers.drops{chance=100, nb=3, {tome_drops="boss"} }, diff --git a/game/modules/tome/data/zones/ring-of-blood/npcs.lua b/game/modules/tome/data/zones/ring-of-blood/npcs.lua index f13d69201c1448087c769d6ecad2200a6de32c09..9807b711b2715e601dd44c1ca495fc6a7f5a656d 100644 --- a/game/modules/tome/data/zones/ring-of-blood/npcs.lua +++ b/game/modules/tome/data/zones/ring-of-blood/npcs.lua @@ -176,7 +176,7 @@ newEntity{ base = "BASE_NPC_SLAVER", rarity = 1, max_life = resolvers.rngavg(80,90), life_rating = 11, resolvers.equip{ - {type="weapon", subtype="staff", autoreq=true}, + {type="weapon", subtype="staff", forbid_power_source={antimagic=true}, autoreq=true}, }, combat_armor = 0, combat_def = 6, resolvers.talents{ diff --git a/game/modules/tome/data/zones/ruins-kor-pul/npcs.lua b/game/modules/tome/data/zones/ruins-kor-pul/npcs.lua index 3e4f99b8ede32f605ad1c82094665bfa729bd960..d81f10b8acd8c88c130d6cab7a7218e858052a22 100644 --- a/game/modules/tome/data/zones/ruins-kor-pul/npcs.lua +++ b/game/modules/tome/data/zones/ruins-kor-pul/npcs.lua @@ -51,7 +51,7 @@ newEntity{ define_as = "SHADE", move_others=true, body = { INVEN = 10, MAINHAND=1, OFFHAND=1, BODY=1 }, - equipment = resolvers.equip{ {type="weapon", subtype="staff", defined="STAFF_KOR", random_art_replace={chance=75}, autoreq=true}, {type="armor", subtype="light", autoreq=true}, }, + equipment = resolvers.equip{ {type="weapon", subtype="staff", defined="STAFF_KOR", random_art_replace={chance=75}, autoreq=true}, {type="armor", subtype="light", forbid_power_source={antimagic=true}, autoreq=true}, }, resolvers.drops{chance=100, nb=3, {tome_drops="boss"} }, resolvers.talents{ @@ -104,8 +104,8 @@ newEntity{ define_as = "KOR_FURY", body = { INVEN = 10, MAINHAND=1, OFFHAND=1, BODY=1, NECK=1 }, resolvers.equip{ - {type="weapon", subtype="staff", force_drop=true, tome_drops="boss", autoreq=true}, - {type="armor", subtype="light", autoreq=true}, + {type="weapon", subtype="staff", force_drop=true, tome_drops="boss", forbid_power_source={antimagic=true}, autoreq=true}, + {type="armor", subtype="light", forbid_power_source={antimagic=true}, autoreq=true}, {type="jewelry", subtype="amulet", defined="VOX", random_art_replace={chance=75}, autoreq=true}, }, resolvers.drops{chance=100, nb=3, {tome_drops="boss"} }, diff --git a/game/modules/tome/data/zones/shadow-crypt/npcs.lua b/game/modules/tome/data/zones/shadow-crypt/npcs.lua index ba8307e51e5e57249c1e7bc93ee9ad74f850a01a..de4b1b6bd9a9b673c1c1b93dc1d65296504b15b3 100644 --- a/game/modules/tome/data/zones/shadow-crypt/npcs.lua +++ b/game/modules/tome/data/zones/shadow-crypt/npcs.lua @@ -50,7 +50,7 @@ newEntity{ base="BASE_NPC_ORC_RAK_SHOR", define_as = "CULTIST_RAK_SHOR", body = { INVEN = 10, MAINHAND=1, OFFHAND=1, BODY=1 }, resolvers.equip{ - {type="weapon", subtype="staff", force_drop=true, tome_drops="boss", autoreq=true}, + {type="weapon", subtype="staff", force_drop=true, tome_drops="boss", forbid_power_source={antimagic=true}, autoreq=true}, }, resolvers.drops{chance=20, nb=1, {defined="JEWELER_TOME"} }, resolvers.drops{chance=100, nb=1, {defined="LIFE_DRINKER", random_art_replace={chance=75}} }, diff --git a/game/modules/tome/data/zones/shertul-fortress/npcs.lua b/game/modules/tome/data/zones/shertul-fortress/npcs.lua index 2eb53695d82c8494b440748ac46a49d63abaad49..116100e323c854c911dc470092642b70300b14b2 100644 --- a/game/modules/tome/data/zones/shertul-fortress/npcs.lua +++ b/game/modules/tome/data/zones/shertul-fortress/npcs.lua @@ -45,8 +45,8 @@ newEntity{ base = "BASE_NPC_HORROR", define_as="WEIRDLING_BEAST", negative_regen = 15, resolvers.equip{ - {type="weapon", subtype="staff", autoreq=true, force_drop=true, tome_drops="boss"}, - {type="armor", subtype="light", autoreq=true, force_drop=true, tome_drops="boss"} + {type="weapon", subtype="staff", autoreq=true, force_drop=true, forbid_power_source={antimagic=true}, tome_drops="boss"}, + {type="armor", subtype="light", autoreq=true, force_drop=true, forbid_power_source={antimagic=true}, tome_drops="boss"} }, resolvers.drops{chance=100, nb=3, {tome_drops="boss"} }, diff --git a/game/modules/tome/data/zones/tannen-tower/npcs.lua b/game/modules/tome/data/zones/tannen-tower/npcs.lua index 4a12d9f0ad457a30092e8854e6eea560baaa50ea..17e85e45db6c882ba311463e2300fea8fb50a815 100644 --- a/game/modules/tome/data/zones/tannen-tower/npcs.lua +++ b/game/modules/tome/data/zones/tannen-tower/npcs.lua @@ -50,8 +50,8 @@ newEntity{ define_as = "TANNEN", body = { INVEN = 10, MAINHAND=1, OFFHAND=1, BODY=1, QUIVER=1, }, equipment = resolvers.equip{ - {type="weapon", subtype="staff", force_drop=true, tome_drops="boss", autoreq=true}, - {type="armor", subtype="cloth", force_drop=true, tome_drops="boss", autoreq=true}, + {type="weapon", subtype="staff", force_drop=true, tome_drops="boss", forbid_power_source={antimagic=true}, autoreq=true}, + {type="armor", subtype="cloth", force_drop=true, tome_drops="boss", forbid_power_source={antimagic=true}, autoreq=true}, }, resolvers.drops{chance=100, nb=4, {tome_drops="boss"} }, resolvers.drops{chance=100, nb=1, {defined="ORB_MANY_WAYS2"} }, @@ -131,9 +131,9 @@ It is so huge that it blocks sight beyond it.]], resolvers.drops{chance=100, nb=1, {defined="RESONATING_DIAMOND_WEST2"} }, resolvers.equip{ - {type="weapon", subtype="greatsword", force_drop=true, tome_drops="boss", autoreq=true}, - {type="armor", subtype="massive", force_drop=true, tome_drops="boss", autoreq=true}, - {type="armor", subtype="head", force_drop=true, tome_drops="boss", autoreq=true}, + {type="weapon", subtype="greatsword", force_drop=true, tome_drops="boss", forbid_power_source={antimagic=true}, autoreq=true}, + {type="armor", subtype="massive", force_drop=true, tome_drops="boss", forbid_power_source={antimagic=true}, autoreq=true}, + {type="armor", subtype="head", force_drop=true, tome_drops="boss", forbid_power_source={antimagic=true}, autoreq=true}, }, autolevel = "warrior", diff --git a/game/modules/tome/data/zones/tempest-peak/npcs.lua b/game/modules/tome/data/zones/tempest-peak/npcs.lua index f630b7002c28ef8d68b1c1186241a2fdc3f6651a..c4e10a205f1c5a6519e84a630ce43432aa7d33f2 100644 --- a/game/modules/tome/data/zones/tempest-peak/npcs.lua +++ b/game/modules/tome/data/zones/tempest-peak/npcs.lua @@ -48,8 +48,8 @@ newEntity{ define_as = "URKIS", body = { INVEN = 10, MAINHAND=1, OFFHAND=1, BODY=1 }, equipment = resolvers.equip{ - {type="weapon", subtype="staff", force_drop=true, tome_drops="boss", autoreq=true}, - {type="armor", subtype="cloth", force_drop=true, tome_drops="boss", autoreq=true}, + {type="weapon", subtype="staff", force_drop=true, tome_drops="boss", forbid_power_source={antimagic=true}, autoreq=true}, + {type="armor", subtype="cloth", force_drop=true, tome_drops="boss", forbid_power_source={antimagic=true}, autoreq=true}, }, resolvers.drops{chance=100, nb=5, {tome_drops="boss"} }, resolvers.drops{chance=100, nb=1, {unique=true} }, diff --git a/game/modules/tome/data/zones/temple-of-creation/npcs.lua b/game/modules/tome/data/zones/temple-of-creation/npcs.lua index 7e4157cc1f62706b095959c2b3d3df23bdbfe887..1220aa7296b5a612a754f4db99a3660716f9c543 100644 --- a/game/modules/tome/data/zones/temple-of-creation/npcs.lua +++ b/game/modules/tome/data/zones/temple-of-creation/npcs.lua @@ -54,9 +54,9 @@ newEntity{ define_as = "SLASUL", body = { INVEN = 10, MAINHAND=1, OFFHAND=1, BODY=1, LITE=1 }, resolvers.equip{ - {type="weapon", subtype="mace", force_drop=true, tome_drops="boss", autoreq=true}, - {type="armor", subtype="shield", force_drop=true, tome_drops="boss", autoreq=true}, - {type="armor", subtype="heavy", force_drop=true, tome_drops="boss", autoreq=true}, + {type="weapon", subtype="mace", force_drop=true, tome_drops="boss", forbid_power_source={antimagic=true}, autoreq=true}, + {type="armor", subtype="shield", force_drop=true, tome_drops="boss", forbid_power_source={antimagic=true}, autoreq=true}, + {type="armor", subtype="heavy", force_drop=true, tome_drops="boss", forbid_power_source={antimagic=true}, autoreq=true}, {type="jewelry", subtype="lite", defined="ELDRITCH_PEARL", autoreq=true}, }, resolvers.drops{chance=100, nb=1, {defined="SLASUL_NOTE"} }, diff --git a/game/modules/tome/data/zones/temporal-rift/npcs.lua b/game/modules/tome/data/zones/temporal-rift/npcs.lua index cdfb2a8c11da4e74b3361c4a97724a2ea2679ea3..e4c47e0ca9fa34849a28695a1b6af51569f93026 100644 --- a/game/modules/tome/data/zones/temporal-rift/npcs.lua +++ b/game/modules/tome/data/zones/temporal-rift/npcs.lua @@ -153,8 +153,8 @@ newEntity{ base="BASE_NPC_HORROR_TEMPORAL", define_as = "CHRONOLITH_TWIN", body = { INVEN = 10, MAINHAND=1, OFFHAND=1, BODY=1 }, equipment = resolvers.equip{ - {type="weapon", subtype="staff", force_drop=true, tome_drops="boss", autoreq=true}, - {type="armor", subtype="cloth", force_drop=true, tome_drops="boss", autoreq=true}, + {type="weapon", subtype="staff", force_drop=true, tome_drops="boss", forbid_power_source={antimagic=true}, autoreq=true}, + {type="armor", subtype="cloth", force_drop=true, tome_drops="boss", forbid_power_source={antimagic=true}, autoreq=true}, }, resolvers.drops{chance=100, nb=2, {tome_drops="boss"} }, resolvers.drops{chance=100, nb=1, {unique=true} }, @@ -202,8 +202,8 @@ newEntity{ base="BASE_NPC_HORROR_TEMPORAL", define_as = "CHRONOLITH_CLONE", body = { INVEN = 10, MAINHAND=1, OFFHAND=1, BODY=1 }, equipment = resolvers.equip{ - {type="weapon", subtype="staff", force_drop=true, tome_drops="boss", autoreq=true}, - {type="armor", subtype="cloth", force_drop=true, tome_drops="boss", autoreq=true}, + {type="weapon", subtype="staff", force_drop=true, tome_drops="boss", forbid_power_source={antimagic=true}, autoreq=true}, + {type="armor", subtype="cloth", force_drop=true, tome_drops="boss", forbid_power_source={antimagic=true}, autoreq=true}, }, resolvers.drops{chance=100, nb=2, {tome_drops="boss"} }, resolvers.drops{chance=100, nb=1, {unique=true} }, diff --git a/game/modules/tome/data/zones/town-angolwen/npcs.lua b/game/modules/tome/data/zones/town-angolwen/npcs.lua index c57bf6b15a7cf857aa7ceab47220933018144cd7..609952d4e9d2a8d385e08b2c415fd9f643ab973c 100644 --- a/game/modules/tome/data/zones/town-angolwen/npcs.lua +++ b/game/modules/tome/data/zones/town-angolwen/npcs.lua @@ -55,8 +55,8 @@ newEntity{ define_as = "SUPREME_ARCHMAGE_LINANIIL", resists = {[DamageType.FIRE]=100, [DamageType.LIGHTNING]=100}, resolvers.equip{ - {type="weapon", subtype="staff", autoreq=true, tome_drops="boss"}, - {type="armor", subtype="cloth", autoreq=true, tome_drops="boss"}, + {type="weapon", subtype="staff", autoreq=true, forbid_power_source={antimagic=true}, tome_drops="boss"}, + {type="armor", subtype="cloth", autoreq=true, forbid_power_source={antimagic=true}, tome_drops="boss"}, }, talent_cd_reduction = {all=23}, @@ -117,8 +117,8 @@ newEntity{ define_as = "TARELION", resolvers.drops{chance=100, nb=5, {tome_drops="boss"} }, resolvers.equip{ - {type="weapon", subtype="staff", autoreq=true, tome_drops="store"}, - {type="armor", subtype="cloth", autoreq=true, tome_drops="store"}, + {type="weapon", subtype="staff", autoreq=true, forbid_power_source={antimagic=true}, tome_drops="store"}, + {type="armor", subtype="cloth", autoreq=true, forbid_power_source={antimagic=true}, tome_drops="store"}, }, resolvers.talents{ @@ -175,8 +175,8 @@ newEntity{ base = "BASE_NPC_ANGOLWEN_TOWN", rarity = 3, max_life = resolvers.rngavg(70,80), resolvers.equip{ - {type="weapon", subtype="staff", autoreq=true}, - {type="armor", subtype="cloth", autoreq=true}, + {type="weapon", subtype="staff", forbid_power_source={antimagic=true}, autoreq=true}, + {type="armor", subtype="cloth", forbid_power_source={antimagic=true}, autoreq=true}, }, combat_armor = 2, combat_def = 0, resolvers.talents{ [Talents.T_MANATHRUST]=2, [Talents.T_FREEZE]=1, }, @@ -190,8 +190,8 @@ newEntity{ base = "BASE_NPC_ANGOLWEN_TOWN", rarity = 3, max_life = resolvers.rngavg(70,80), resolvers.equip{ - {type="weapon", subtype="staff", autoreq=true}, - {type="armor", subtype="cloth", autoreq=true}, + {type="weapon", subtype="staff", forbid_power_source={antimagic=true}, autoreq=true}, + {type="armor", subtype="cloth", forbid_power_source={antimagic=true}, autoreq=true}, }, combat_armor = 2, combat_def = 0, resolvers.talents{ [Talents.T_FLAME]=3, [Talents.T_WILDFIRE]=3, [Talents.T_BURNING_WAKE]=3, [Talents.T_BLASTWAVE]=3, }, @@ -205,8 +205,8 @@ newEntity{ base = "BASE_NPC_ANGOLWEN_TOWN", rarity = 3, max_life = resolvers.rngavg(70,80), resolvers.equip{ - {type="weapon", subtype="staff", autoreq=true}, - {type="armor", subtype="cloth", autoreq=true}, + {type="weapon", subtype="staff", forbid_power_source={antimagic=true}, autoreq=true}, + {type="armor", subtype="cloth", forbid_power_source={antimagic=true}, autoreq=true}, }, combat_armor = 2, combat_def = 0, resolvers.talents{ [Talents.T_ICE_SHARDS]=3, [Talents.T_UTTERCOLD]=3, [Talents.T_FREEZE]=3, [Talents.T_FROZEN_GROUND]=3, }, @@ -220,8 +220,8 @@ newEntity{ base = "BASE_NPC_ANGOLWEN_TOWN", rarity = 3, max_life = resolvers.rngavg(70,80), resolvers.equip{ - {type="weapon", subtype="staff", autoreq=true}, - {type="armor", subtype="cloth", autoreq=true}, + {type="weapon", subtype="staff", forbid_power_source={antimagic=true}, autoreq=true}, + {type="armor", subtype="cloth", forbid_power_source={antimagic=true}, autoreq=true}, }, combat_armor = 2, combat_def = 0, resolvers.talents{ [Talents.T_EARTHEN_MISSILES]=3, [Talents.T_CRYSTALLINE_FOCUS]=3, [Talents.T_BODY_OF_STONE]=3, [Talents.T_STRIKE]=3, }, @@ -235,8 +235,8 @@ newEntity{ base = "BASE_NPC_ANGOLWEN_TOWN", rarity = 3, max_life = resolvers.rngavg(70,80), resolvers.equip{ - {type="weapon", subtype="staff", autoreq=true}, - {type="armor", subtype="cloth", autoreq=true}, + {type="weapon", subtype="staff", forbid_power_source={antimagic=true}, autoreq=true}, + {type="armor", subtype="cloth", forbid_power_source={antimagic=true}, autoreq=true}, }, combat_armor = 2, combat_def = 0, resolvers.talents{ [Talents.T_LIGHTNING]=3, [Talents.T_TEMPEST]=3, [Talents.T_HURRICANE]=3, [Talents.T_SHOCK]=3, }, diff --git a/game/modules/tome/data/zones/town-gates-of-morning/npcs.lua b/game/modules/tome/data/zones/town-gates-of-morning/npcs.lua index af350cce065198fb603550f20fa151cc7e5ffeb4..3ae82c861c8ed712b9101f60d7ef8dc561891f0a 100644 --- a/game/modules/tome/data/zones/town-gates-of-morning/npcs.lua +++ b/game/modules/tome/data/zones/town-gates-of-morning/npcs.lua @@ -53,9 +53,9 @@ newEntity{ define_as = "HIGH_SUN_PALADIN_AERYN", resolvers.drops{chance=100, nb=3, {tome_drops="boss"} }, resolvers.equip{ - {type="weapon", subtype="mace", autoreq=true}, - {type="armor", subtype="shield", autoreq=true}, - {type="armor", subtype="massive", autoreq=true}, + {type="weapon", subtype="mace", forbid_power_source={antimagic=true}, autoreq=true}, + {type="armor", subtype="shield", forbid_power_source={antimagic=true}, autoreq=true}, + {type="armor", subtype="massive", forbid_power_source={antimagic=true}, autoreq=true}, }, resolvers.talents{ [Talents.T_ARMOUR_TRAINING]=5, diff --git a/game/modules/tome/data/zones/town-iron-council/npcs.lua b/game/modules/tome/data/zones/town-iron-council/npcs.lua index a4594ca2867554012f5bc0d7ff320c060c28f901..ff722adf610c24c74a12b35167bfb64c3e6e7c63 100644 --- a/game/modules/tome/data/zones/town-iron-council/npcs.lua +++ b/game/modules/tome/data/zones/town-iron-council/npcs.lua @@ -22,7 +22,7 @@ load("/data/general/npcs/gwelgoroth.lua", function(e) if e.rarity then e.derth_r local Talents = require("engine.interface.ActorTalents") newEntity{ - define_as = "BASE_NPC_ELVALA_TOWN", + define_as = "BASE_NPC_IRON_COUNCIL_TOWN", type = "humanoid", subtype = "dwarf", display = "p", color=colors.WHITE, faction = "iron-throne", @@ -50,7 +50,7 @@ newEntity{ emote_random = resolvers.emote_random{allow_backup_guardian=true}, } -newEntity{ base = "BASE_NPC_ELVALA_TOWN", +newEntity{ base = "BASE_NPC_IRON_COUNCIL_TOWN", name = "dwarven guard", color=colors.LIGHT_UMBER, desc = [[A stocky dwarf, he looks angry.]], level_range = {1, nil}, exp_worth = 1, @@ -63,7 +63,7 @@ newEntity{ base = "BASE_NPC_ELVALA_TOWN", resolvers.talents{ [Talents.T_RUSH]=1, [Talents.T_PERFECT_STRIKE]=1, }, } -newEntity{ base = "BASE_NPC_ELVALA_TOWN", +newEntity{ base = "BASE_NPC_IRON_COUNCIL_TOWN", name = "dwarven earthwarden", color=colors.RED, desc = [[A stocky dwarf, he looks angry.]], level_range = {1, nil}, exp_worth = 1, diff --git a/game/modules/tome/data/zones/town-zigur/npcs.lua b/game/modules/tome/data/zones/town-zigur/npcs.lua index ad79c89e9cf98a789a777dab27c0453245d01416..59df4916dfe3335970fa7608c64ff87b48291a24 100644 --- a/game/modules/tome/data/zones/town-zigur/npcs.lua +++ b/game/modules/tome/data/zones/town-zigur/npcs.lua @@ -33,8 +33,8 @@ newEntity{ base = "BASE_NPC_ELVEN_CASTER", define_as = "GRAND_CORRUPTOR", max_vim = 800, max_life = resolvers.rngavg(300, 310), life_rating = 18, resolvers.equip{ - {type="weapon", subtype="staff", autoreq=true}, - {type="armor", subtype="cloth", autoreq=true}, + {type="weapon", subtype="staff", forbid_power_source={antimagic=true}, autoreq=true}, + {type="armor", subtype="cloth", forbid_power_source={antimagic=true}, autoreq=true}, }, ai = "tactical", ai_state = { talent_in=1, ai_move="move_astar", }, @@ -78,8 +78,8 @@ newEntity{ base = "BASE_NPC_ZIGURANTH", define_as = "PROTECTOR_MYSSIL", stamina_regen = 40, max_life = resolvers.rngavg(300, 310), life_rating = 21, resolvers.equip{ - {type="weapon", subtype="greatsword", autoreq=true}, - {type="armor", subtype="massive", autoreq=true}, + {type="weapon", subtype="greatsword", forbid_power_source={arcane=true}, autoreq=true}, + {type="armor", subtype="massive", forbid_power_source={arcane=true}, autoreq=true}, }, resolvers.drops{chance=100, nb=1, {unique=true} }, resolvers.drops{chance=100, nb=4, {tome_drops="boss"} }, diff --git a/game/modules/tome/data/zones/tutorial/npcs.lua b/game/modules/tome/data/zones/tutorial/npcs.lua index 7deb39738c0b7cf90667b6ddbf7f6e650d49df19..1a5f1262712aab77b14cf811c806c323f1eaab6c 100644 --- a/game/modules/tome/data/zones/tutorial/npcs.lua +++ b/game/modules/tome/data/zones/tutorial/npcs.lua @@ -30,7 +30,7 @@ newEntity{ base = "BASE_NPC_SKELETON", define_as = "TUTORIAL_NPC_MAGE", image="n stats = { str=10, dex=12, cun=14, mag=14, con=10 }, resolvers.talents{ [Talents.T_MANATHRUST]=3 }, - resolvers.equip{ {type="weapon", subtype="staff", autoreq=true} }, + resolvers.equip{ {type="weapon", subtype="staff", forbid_power_source={antimagic=true}, autoreq=true} }, autolevel = "caster", ai = "dumb_talented_simple", ai_state = { talent_in=1, }, diff --git a/game/modules/tome/data/zones/unremarkable-cave/npcs.lua b/game/modules/tome/data/zones/unremarkable-cave/npcs.lua index 76772af8f0efd856914fb4405bcb43a187403a25..0614e3e7e7770421093117e2a844bd63010e025e 100644 --- a/game/modules/tome/data/zones/unremarkable-cave/npcs.lua +++ b/game/modules/tome/data/zones/unremarkable-cave/npcs.lua @@ -48,8 +48,8 @@ newEntity{ define_as = "FILLAREL", body = { INVEN = 10, MAINHAND=1, OFFHAND=1, BODY=1 }, equipment = resolvers.equip{ - {type="weapon", subtype="staff", force_drop=true, tome_drops="boss", autoreq=true}, - {type="armor", subtype="cloth", force_drop=true, tome_drops="boss", autoreq=true}, + {type="weapon", subtype="staff", force_drop=true, tome_drops="boss", forbid_power_source={antimagic=true}, autoreq=true}, + {type="armor", subtype="cloth", force_drop=true, tome_drops="boss", forbid_power_source={antimagic=true}, autoreq=true}, }, resolvers.drops{chance=100, nb=3, {tome_drops="boss"} }, @@ -108,8 +108,8 @@ newEntity{ define_as = "CORRUPTOR", body = { INVEN = 10, MAINHAND=1, OFFHAND=1, BODY=1 }, equipment = resolvers.equip{ - {type="weapon", subtype="staff", force_drop=true, tome_drops="boss", autoreq=true}, - {type="armor", subtype="heavy", force_drop=true, tome_drops="boss", autoreq=true}, + {type="weapon", subtype="staff", force_drop=true, tome_drops="boss", forbid_power_source={antimagic=true}, autoreq=true}, + {type="armor", subtype="heavy", force_drop=true, tome_drops="boss", forbid_power_source={antimagic=true}, autoreq=true}, }, resolvers.drops{chance=100, nb=3, {tome_drops="boss"} }, diff --git a/game/modules/tome/data/zones/vor-pride/npcs.lua b/game/modules/tome/data/zones/vor-pride/npcs.lua index 82def8a9bcc76d2a2bdb6ba38be50f733789c876..5781706da8e55bb6837aea0392cc3c2688b2bf72 100644 --- a/game/modules/tome/data/zones/vor-pride/npcs.lua +++ b/game/modules/tome/data/zones/vor-pride/npcs.lua @@ -50,8 +50,8 @@ newEntity{ base="BASE_NPC_ORC_VOR", define_as = "VOR", body = { INVEN = 10, MAINHAND=1, OFFHAND=1, BODY=1, HEAD=1 }, resolvers.equip{ - {type="weapon", subtype="staff", force_drop=true, tome_drops="boss", autoreq=true}, - {type="armor", subtype="cloth", force_drop=true, tome_drops="boss", autoreq=true}, + {type="weapon", subtype="staff", force_drop=true, tome_drops="boss", forbid_power_source={antimagic=true}, autoreq=true}, + {type="armor", subtype="cloth", force_drop=true, tome_drops="boss", forbid_power_source={antimagic=true}, autoreq=true}, {type="armor", subtype="head", defined="CROWN_ELEMENTS", random_art_replace={chance=75}, autoreq=true}, }, resolvers.drops{chance=100, nb=1, {defined="ORB_ELEMENTS"} },