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

Fix Argoniel's weapon resolver

Fix cold theme not generating on randarts
parent d68d1760
No related branches found
No related tags found
1 merge request!437Argoniel bug
......@@ -254,7 +254,7 @@ local unided_names = {"glowing","scintillating","rune-covered","unblemished","je
_M.power_themes = {
'physical', 'mental', 'spell', 'defense', 'misc', 'fire',
'lightning', 'acid', 'mind', 'arcane', 'blight', 'nature',
'temporal', 'light', 'dark', 'antimagic'
'temporal', 'light', 'dark', 'antimagic', 'cold'
}
--- defined power sources, used for equipment generation, defined in class descriptors
......
......@@ -20,7 +20,7 @@
local Stats = require "engine.interface.ActorStats"
local Talents = require "engine.interface.ActorTalents"
-- Themes list: physical, mental, spell, defense, misc, fire, lightning, acid, mind, arcane, blight, nature, temporal, light, dark, antimagic
-- Themes list: physical, mental, spell, defense, misc, fire, lightning, acid, mind, arcane, blight, nature, temporal, light, dark, antimagic, cold
----------------------------------------------------------------
-- Spell Themes
......
......@@ -160,7 +160,7 @@ newEntity{
body = { INVEN = 10, MAINHAND=1, OFFHAND=1, BODY=1, FEET=1, HEAD=1, HANDS=1 },
resolvers.equip{
{type="weapon", subtype="sword", force_drop=true, forbid_power_source={antimagic=true}, tome_drops="boss", autoreq=true},
{type="weapon", subtype="longsword", force_drop=true, forbid_power_source={antimagic=true}, tome_drops="boss", autoreq=true},
{type="weapon", subtype="waraxe", force_drop=true, forbid_power_source={antimagic=true}, tome_drops="boss", autoreq=true},
{type="armor", subtype="massive", force_drop=true, forbid_power_source={antimagic=true}, tome_drops="boss", autoreq=true},
{type="armor", subtype="feet", name="pair of voratun boots", force_drop=true, forbid_power_source={antimagic=true}, tome_drops="boss", autoreq=true},
......
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