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

Added new world artifacts

git-svn-id: http://svn.net-core.org/repos/t-engine4@1936 51575b47-30f0-44d4-a5cc-537603b46e54
parent f452a802
No related branches found
No related tags found
No related merge requests found
......@@ -669,7 +669,7 @@ function _M:setupCommands()
if config.settings.tome.cheat then
self.player:incStat("str", 100) self.player:incStat("dex", 100) self.player:incStat("mag", 100) self.player:incStat("wil", 100) self.player:incStat("cun", 100) self.player:incStat("con", 100)
self.player:learnTalent(self.player.T_HEAVY_ARMOUR_TRAINING, true) self.player:learnTalent(self.player.T_MASSIVE_ARMOUR_TRAINING, true)
--[[
-- [[
for i, e in ipairs(self.zone.object_list) do
if e.unique and e.define_as ~= "VOICE_SARUMAN" and e.define_as ~= "ORB_MANY_WAYS_DEMON" then
local a = self.zone:finishEntity(self.level, "object", e)
......@@ -679,7 +679,7 @@ function _M:setupCommands()
end
end
--]]
-- [[
--[[
for i = 1, 50 do
local a = self.zone:makeEntity(self.level, "object", {type="weapon", ego_chance=100, add_levels=50}, nil, true)
if a then
......
......@@ -299,6 +299,14 @@ function _M:getTextualDesc()
desc:add(("Increases resistances: %s."):format(table.concat(rs, ',')), true)
end
if w.resists_cap then
local rs = {}
for res, i in pairs(w.resists_cap) do
rs[#rs+1] = ("%d%% %s"):format(i, res == "all" and "all" or DamageType.dam_def[res].name)
end
desc:add(("Increases resistances cap: %s."):format(table.concat(rs, ',')), true)
end
if w.inc_damage then
local rs = {}
for res, i in pairs(w.inc_damage) do
......
......@@ -1321,6 +1321,95 @@ It is said the wielder will slowly grow mad, this however has never been proven
},
}
newEntity{ base = "BASE_GAUNTLETS",
unique = true,
name = "Stone Gauntlets of Harkor'Zun",
unided_name = "dark stone gauntlets",
desc = [[Fashioned in ancient times by cultists of Harkor'Zun, these heavy granite gauntlets where designed to protect the wearer from the wrath of their dark master.]],
level_range = {20, 30},
rarity = 210,
encumber = 14,
metallic = false,
cost = 150,
material_level = 4,
wielder = {
fatigue = 20,
resists = {[DamageType.ACID] = 20},
resists = {[DamageType.PHYSICAL] = 10},
resists_cap = {[DamageType.ACID] = 10},
resists_cap = {[DamageType.PHYSICAL] = 5},
},
}
newEntity{ base = "BASE_AMULET",
unique = true,
name = "Zemekkys' Broken Hourglass", color = colors.WHITE,
unided_name = "a broken hourglass",
desc = [[This small broken hourglass hangs from a thin gold chain. The glass is cracked and the sand has long since escaped.]],
level_range = {30, 40},
rarity = 300,
cost = 200,
material_level = 4,
metallic = false,
wielder = {
inc_stats = { [Stats.STAT_WIL] = 4, },
inc_damage = { [DamageType.TEMPORAL]= 10 },
resists = { [DamageType.TEMPORAL] = 20 },
resists_cap = { [DamageType.TEMPORAL] = 10 },
},
max_power = 60, power_regen = 1,
use_talent = { id = Talents.T_WORMHOLE, level = 2, power = 60 },
}
newEntity{ base = "BASE_AMULET",
unique = true,
name = "Unflinching Eye", color = colors.WHITE,
unided_name = "a bloodshot eye",
desc = [[Someone has strung a thick black chord through this large bloodshot eyeball, allowing it to be worn around the neck if you so chose.]],
level_range = {30, 40},
rarity = 300,
cost = 300,
material_level = 4,
metallic = false,
wielder = {
infravision = 4,
resists = { [DamageType.LIGHT] = -25 },
resists_cap = { [DamageType.LIGHT] = -25 },
blind_immune = 1
},
max_power = 60, power_regen = 1,
use_talent = { id = Talents.T_ARCANE_EYE, level = 2, power = 60 },
}
newEntity{ base = "BASE_CLOAK",
unique = true,
name = "Ureslak's Molted Scales",
unided_name = "scaley multi-hued cloak",
desc = [[This cloak is fashioned from the scales of some large reptillian creature. It appears to reflect every color of the visible light spectrum.]],
level_range = {40, 50},
rarity = 400,
cost = 300,
material_level = 2,
wielder = {
resists_cap = {
[DamageType.FIRE] = 5,
[DamageType.COLD] = 5,
[DamageType.LIGHTNING] = 5,
[DamageType.NATURE] = 5,
[DamageType.DARKNESS] = 5,
[DamageType.ARCANE] = -30,
},
resists = {
[DamageType.FIRE] = 10,
[DamageType.COLD] = 10,
[DamageType.LIGHTNING] = 10,
[DamageType.NATURE] = 10,
[DamageType.DARKNESS] = 10,
[DamageType.ARCANE] = -30,
},
},
}
--[=[
newEntity{
unique = true,
......
No preview for this file type
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