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

New item type: cloth hats (wizard hat)

New artifact: Glamdring
New egos fors leather caps


git-svn-id: http://svn.net-core.org/repos/t-engine4@932 51575b47-30f0-44d4-a5cc-537603b46e54
parent 11404470
No related branches found
No related tags found
No related merge requests found
......@@ -55,6 +55,15 @@ newEntity{
inc_stats = { [Stats.STAT_CON] = resolvers.mbonus_material(8, 2, function(e, v) return v * 3 end) },
},
}
newEntity{
name = " of dexterity (#STATBONUS#)", suffix=true,
level_range = {1, 50},
rarity = 6,
cost = 4,
wielder = {
inc_stats = { [Stats.STAT_DEX] = resolvers.mbonus_material(8, 2, function(e, v) return v * 3 end) },
},
}
newEntity{
name = " of greater telepathy", suffix=true,
level_range = {40, 50},
......
......@@ -61,7 +61,7 @@ newEntity{
rarity = 6,
cost = 4,
wielder = {
inc_stats = { [Stats.STAT_CUN = resolvers.mbonus_material(8, 2, function(e, v) return v * 3 end) },
inc_stats = { [Stats.STAT_CUN] = resolvers.mbonus_material(8, 2, function(e, v) return v * 3 end) },
},
}
newEntity{
......@@ -92,3 +92,12 @@ newEntity{
max_mana = resolvers.mbonus_material(100, 10, function(e, v) return v * 0.2 end),
},
}
newEntity{
name = "of seeing ", prefix=true,
level_range = {1, 50},
rarity = 5,
cost = 6,
wielder = {
blind_immune = 0.5,
},
}
......@@ -26,6 +26,7 @@ newEntity{
encumber = 2,
rarity = 6,
desc = [[A cap made of leather.]],
egos = "/data/general/objects/egos/helm.lua", egos_chance = { prefix=resolvers.mbonus(40, 5), suffix=resolvers.mbonus(40, 5) },
}
newEntity{ base = "BASE_LEATHER_CAP",
......
......@@ -56,6 +56,7 @@ load("/data/general/objects/massive-armors.lua")
-- Head, feet, hands, ...
load("/data/general/objects/leather-caps.lua")
load("/data/general/objects/helms.lua")
load("/data/general/objects/wizard-hat.lua")
load("/data/general/objects/leather-boots.lua")
load("/data/general/objects/heavy-boots.lua")
--load("/data/general/objects/gloves.lua")
......
......@@ -25,7 +25,7 @@ newEntity{
display = "]", color=colors.BLUE,
encumber = 2,
rarity = 6,
desc = [[A pointy cloth hat, very wizardy...]],
desc = [[A pointy cloth hat, very wizardly...]],
egos = "/data/general/objects/egos/wizard-hat.lua", egos_chance = { prefix=resolvers.mbonus(40, 5), suffix=resolvers.mbonus(40, 5) },
}
......
......@@ -224,7 +224,7 @@ newEntity{ base = "BASE_LONGBOW",
name = "Gondor-Tree Longbow", unided_name = "glowing elven-wood longbow", unique=true,
desc = [[In the aftermath of the wars against Sauron, the strength of the Trees of Gondor faded and one of the trees died despite the efforts of the men of the city to save it. Its wood was fashioned into a bow to be wielded against the darkness that poisoned Gondor's tree.]],
level_range = {40, 50},
rarity = 200
rarity = 200,
require = { stat = { dex=36 }, },
cost = 800,
material_level = 5,
......@@ -240,3 +240,35 @@ newEntity{ base = "BASE_LONGBOW",
ranged_project={[DamageType.LIGHT] = 30},
},
}
newEntity{ base = "BASE_LONGSWORD",
unique = true,
name = "Glamdring, the Long Sword 'Foe-Hammer'",
unided_name = "glowing long sword",
level_range = {40, 45},
color=colors.AQUAMARINE,
rarity = 250,
desc = [[This fiery, shining blade earned its sobriquet "Foe-Hammer" from dying orcs who dared to come near hidden Gondolin. In the past it was used by both Turgon and Gandalf.]],
cost = 1000,
require = { stat = { mag=28, str=28, dex=28 }, },
material_level = 5,
combat = {
dam = 50,
apr = 2,
physcrit = 5,
dammod = {str=1},
},
wielder = {
lite = 1,
combat_spellpower = 20,
combat_spellcrit = 9,
inc_damage={
[DamageType.PHYSICAL] = 18,
[DamageType.FIRE] = 18,
[DamageType.LIGHT] = 18,
},
inc_stats = { [Stats.STAT_MAG] = 4, [Stats.STAT_STR] = 4, },
esp = {["humanoid/orc"]=1},
},
}
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