How would we know polar gloves breathe ice?

Have a really dumb question? Ask it here to get help from the experts (or those with too much time on their hands)

Moderator: Moderator

Post Reply
Message
Author
jenx
Sher'Tul Godslayer
Posts: 2263
Joined: Mon Feb 14, 2011 11:16 pm

How would we know polar gloves breathe ice?

#1 Post by jenx »

It is not listed as a talent anywhere. Yet it happens.
MADNESS rocks

darkgod
Master of Eyal
Posts: 10750
Joined: Wed Jul 24, 2002 9:26 pm
Location: Angolwen
Contact:

Re: How would we know polar gloves breathe ice?

#2 Post by darkgod »

Which talent lets you have unarmed procs? IIRC they all should trigger the info to be displayed
[tome] joylove: You can't just release an expansion like one would release a Kraken XD
--
[tome] phantomfrettchen: your ability not to tease anyone is simply stunning ;)

ghostbuster
Uruivellas
Posts: 617
Joined: Mon Oct 09, 2006 7:47 pm

Re: How would we know polar gloves breathe ice?

#3 Post by ghostbuster »

Iron Grip does not display glove combat, while Spring Grapple does:

Code: Select all

newEntity{ base = "BASE_TINKER", define_as = "TINKER_IRON_GRIP"..i,
        name = metals[i].." grip", image = "object/tinkers_iron_grip_t5.png",
        on_slot = "HANDS",
        material_level = i,
        object_tinker = {
                wielder = {
                        disarm_immune = 0.5 + 0.1 * i,
                        learn_talent = {[Talents.T_TINKER_IRON_GRIP] = i},
                },
        },
}
end

for i = 1, 5 do
newEntity{ base = "BASE_TINKER", define_as = "TINKER_SPRING_GRAPPLE"..i,
        name = metals[i].." grapple", image = "object/tinkers_spring_grapple_t5.png",
        on_slot = "HANDS",
        material_level = i,
        object_tinker = {
                wielder = {
                        learn_talent = {[Talents.T_TINKER_SPRING_GRAPPLE] = i},
                        show_gloves_combat=1,
                },
        },
}
end

.

jenx
Sher'Tul Godslayer
Posts: 2263
Joined: Mon Feb 14, 2011 11:16 pm

Re: How would we know polar gloves breathe ice?

#4 Post by jenx »

darkgod wrote:Which talent lets you have unarmed procs? IIRC they all should trigger the info to be displayed
plain old polar gloves. they breathe ice rather regularly!
MADNESS rocks

Post Reply