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

New world boss: Kra'Tor the Gluttonous and his trusty axe: The Gaping Maw

New world artifact: Threads of Fate


git-svn-id: http://svn.net-core.org/repos/t-engine4@4053 51575b47-30f0-44d4-a5cc-537603b46e54
parent 9509620a
No related branches found
No related tags found
No related merge requests found
......@@ -260,3 +260,57 @@ newEntity{ base = "BASE_NPC_ORC",
autolevel = "rogue",
resolvers.racial(),
}
-- Unique orcs
newEntity{ base = "BASE_NPC_ORC",
name = "Kra'Tor the Gluttonous", unique = true,
color=colors.DARK_KHAKI,
desc = [[A morbidly obese orc with greasy pockmarked skin and oily long black hair. He's clad in plate mail and carries a huge granite battleaxe that's nearly as large as he is.]],
level_range = {38, nil}, exp_worth = 2,
rarity = 50,
rank = 3.5,
max_life = resolvers.rngavg(600, 800),
life_rating = 22,
move_others=true,
resolvers.equip{
{type="weapon", subtype="battleaxe", defined="GAPING_MAW", random_art_replace={chance=75}, autoreq=true},
{type="armor", subtype="massive", tome_drops="boss", autoreq=true},
},
resolvers.drops{chance=100, nb=2, {tome_drops="boss"} },
combat_armor = 2, combat_def = 0,
blind_immune = 0.5,
confuse_immune = 0.5,
stun_immune = 0.7,
knockback_immune = 1,
autolevel = "wyrmic",
ai = "tactical", ai_state = { talent_in=1, ai_move="move_astar", },
ai_tactic = resolvers.tactic"melee",
resolvers.inscriptions(4, {"movement infusion", "healing infusion", "regeneration infusion", "wild infusion"}),
resists = { all=25},
resolvers.talents{
[Talents.T_ICE_CLAW]={base=4, every=4, max=8},
[Talents.T_ICY_SKIN]={base=5, every=4, max=9},
[Talents.T_SAND_BREATH]={base=5, every=4, max=9},
[Talents.T_RESOLVE]=5,
[Talents.T_AURA_OF_SILENCE]=5,
[Talents.T_MANA_CLASH]={base=5, every=5, max=8},
[Talents.T_WARSHOUT]={base=4, every=4, max=8},
[Talents.T_DEATH_DANCE]={base=3, every=4, max=7},
[Talents.T_BERSERKER]={base=5, every=4, max=10},
[Talents.T_CRUSH]={base=3, every=4, max=8},
[Talents.T_WEAPON_COMBAT]={base=6, every=4, max=10},
[Talents.T_WEAPONS_MASTERY]={base=6, every=4, max=10},
[Talents.T_ARMOUR_TRAINING]={base=5, every=4, max=12},
},
resolvers.sustains_at_birth(),
}
......@@ -1014,7 +1014,7 @@ newEntity{ base = "BASE_HEAVY_BOOTS",
level_range = {35, 45},
rarity = 250,
cost = 200,
material_level = 4,
material_level = 5,
wielder = {
combat_armor = 4,
combat_def = 2,
......@@ -1028,3 +1028,34 @@ newEntity{ base = "BASE_HEAVY_BOOTS",
max_power = 50, power_regen = 1,
use_talent = { id = Talents.T_SPIT_BLIGHT, level=3, power = 10 },
}
newEntity{ base = "BASE_BATTLEAXE",
power_source = {nature=true,},
define_as = "GAPING_MAW",
name = "The Gaping Maw", color = colors.SLATE,
unided_name = "huge granite battleaxe", unique = true,
desc = [[This huge granite battleaxe is as much mace as it is axe. The shaft is made of blackened wood tightly bound in drakeskin leather and the sharpened granite head glistens with a viscous green fluid.]],
level_range = {38, 50},
rarity = 300,
require = { stat = { str=60 }, },
cost = 650,
material_level = 4,
combat = {
dam = 72,
apr = 4,
physcrit = 8,
dammod = {str=1.2},
melee_project={[DamageType.SLIME] = 50, [DamageType.ACID] = 50},
},
wielder = {
inc_stats = { [Stats.STAT_STR] = 6, [Stats.STAT_WIL] = 6, },
inc_damage={
[DamageType.NATURE] = 15,
},
talent_cd_reduction= {
[Talents.T_SWALLOW] = 2,
[Talents.T_MANA_CLASH] = 2,
[Talents.T_ICE_CLAW] = 1,
},
},
}
......@@ -155,3 +155,39 @@ newEntity{ base = "BASE_GEM",
healing_factor = 0.5,
},
}
newEntity{ base = "BASE_CLOAK",
power_source = {arcane=true},
unique = true,
name = "Threads of Fate",
unided_name = "a shimmering white cloak",
desc = [[Untouched by the ravages of time, this fine spun white cloak appears to be crafted of an otherworldly material that shifts and shimmers in the light. While it has cropped up in the hands of many through out history, from great mages to lowly card sharks, no one has ever claimed to be its creator or know its true origins.]],
level_range = {45, 50},
color = colors.WHITE,
rarity = 500,
cost = 300,
material_level = 5,
wielder = {
combat_def = 10,
combat_spellpower = 8,
confusion_immune = 0.4,
inc_stats = { [Stats.STAT_MAG] = 6, [Stats.STAT_WIL] = 6, [Stats.STAT_LCK] = 10, },
inc_damage = { [DamageType.TEMPORAL]= 10 },
resists_cap = { [DamageType.TEMPORAL] = 10, },
resists = { [DamageType.TEMPORAL] = 20, },
combat_physresist = 20,
combat_mentalresist = 20,
combat_spellresist = 20,
talents_types_mastery = {
["chronomancy/timeline-threading"] = 0.1,
["chronomancy/chronomancy"] = 0.1,
["spell/divination"] = 0.1,
},
},
max_power = 1000, power_regen = 1,
use_talent = { id = Talents.T_SEE_THE_THREADS, level = 1, power = 1000 },
}
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