summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/dat/lua/wield.lua
blob: b068b543de6953dc150fcc86401bdf8cbc04c699 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
---------------------------------------------------------------------------
-- wield.lua
-- Selects extra items to wield.
--
-- To use this, add this line to your init.txt:
--   lua_file = lua/wield.lua
---------------------------------------------------------------------------

function make_hash(ls)
    local h = { }
    for _, i in ipairs(ls) do
        h[i] = true
    end
    return h
end

function ch_item_wieldable(it)
    -- We only need to check for unusual cases - basic matching is handled
    -- by Crawl itself.
    local spells = make_hash( you.spells() )

    if spells["Bone Shards"]
            and string.find( item.name(it, "a"), " skeleton" )
    then
        return true
    end

    if (spells["Sublimation of Blood"] or spells["Simulacrum"])
            and food.ischunk(it)
    then
        return true
    end

    if spells["Sandblast"]
            and item.class(it, true) == "missile"
            and string.find( item.name(it, "a"), " stones?" )
    then
        return true
    end

    if spells["Sticks to Snakes"]
            and item.class(it, true) == "missile"
            and string.find( item.name(it, "a"), " arrows?" )
    then
        return true
    end

    return false
end