Skip to content
Snippets Groups Projects
Commit ee5a3e97 authored by dg's avatar dg
Browse files

Nerfed Brotoq, his version of Skullcleaver can not proc greater weapon focus

git-svn-id: http://svn.net-core.org/repos/t-engine4@4684 51575b47-30f0-44d4-a5cc-537603b46e54
parent 0ea92fdd
No related branches found
No related tags found
No related merge requests found
......@@ -46,10 +46,11 @@ newEntity{ define_as = "BROTOQ",
body = { INVEN = 10, MAINHAND=1, OFFHAND=1, BODY=1 },
equipment = resolvers.equip{
{type="weapon", subtype="waraxe", defined="SKULLCLEAVER", random_art_replace={chance=75}, autoreq=true},
{type="weapon", subtype="waraxe", defined="FAKE_SKULLCLEAVER", never_drop=true},
{type="weapon", subtype="longsword", autoreq=true},
{type="armor", subtype="light", 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"} },
resolvers.talents{
......
......@@ -18,3 +18,25 @@
-- darkgod@te4.org
load("/data/general/objects/objects-maj-eyal.lua")
newEntity{ base = "BASE_WARAXE",
power_source = {arcane=true},
define_as = "FAKE_SKULLCLEAVER",
unided_name = "fake crimson waraxe",
name = "Fake Skullcleaver", unique=true, image = "object/artifact/axe_skullcleaver.png",
desc = [[A small but sharp axe, with a handle made of polished bone. The blade has chopped through the skulls of many, and has been stained a deep crimson.]],
require = { stat = { str=18 }, },
level_range = {5, 12},
rarity = 220,
cost = 50,
combat = {
dam = 16,
apr = 3,
physcrit = 12,
dammod = {str=1},
melee_project={[DamageType.DRAINLIFE] = 10},
},
wielder = {
inc_damage = { [DamageType.BLIGHT] = 8 },
},
}
......@@ -67,6 +67,7 @@ function resolvers.calc.equip(t, e)
-- Do not drop it unless it is an ego or better
if not o.unique then o.no_drop = true print(" * "..o.name.." => no drop") end
if filter.force_drop then o.no_drop = nil end
if filter.never_drop then o.no_drop = true end
game.zone:addEntity(game.level, o, "object")
if t[1].id then o:identify(t[1].id) end
......
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