| 1 |
# File: artifact.txt |
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
# This file is used to initialize the "lib/data/artifact.raw" file, which |
|---|
| 5 |
# is used to initialize the "artifact" information for the Angband game. |
|---|
| 6 |
|
|---|
| 7 |
# Do not modify this file unless you know exactly what you are doing, |
|---|
| 8 |
# unless you wish to risk possible system crashes and broken savefiles. |
|---|
| 9 |
# After modifying this file, delete the "lib/data/artifact.raw" file. |
|---|
| 10 |
|
|---|
| 11 |
# The artifact indexes are defined in "defines.h", and must not be changed. |
|---|
| 12 |
|
|---|
| 13 |
# Hack -- "Grond" and "Morgoth" MUST have a rarity of one, or they might |
|---|
| 14 |
# not be dropped when Morgoth is killed. Note that they, like the "special" |
|---|
| 15 |
# artifacts, are never created "accidentally". |
|---|
| 16 |
|
|---|
| 17 |
# === Understanding artifact.txt === |
|---|
| 18 |
|
|---|
| 19 |
# N: serial number : item name |
|---|
| 20 |
# I: tval : sval : pval |
|---|
| 21 |
# W: depth : rarity : weight : cost |
|---|
| 22 |
# P: base armor class : base damage : plus to-hit : plus to-dam : plus to-ac |
|---|
| 23 |
# F: flag | flag | etc |
|---|
| 24 |
# A: activation : recharge time |
|---|
| 25 |
# M: message when activated |
|---|
| 26 |
# D: description |
|---|
| 27 |
|
|---|
| 28 |
# 'N' indicates the beginning of an entry. The serial number must |
|---|
| 29 |
# increase for each new item. |
|---|
| 30 |
|
|---|
| 31 |
# 'I' is for basic information. The tval is for the type of item, the |
|---|
| 32 |
# sval identifies the subtype and the pval indicates the amount of |
|---|
| 33 |
# effect the item has, if applicable. |
|---|
| 34 |
|
|---|
| 35 |
# 'W' is for extra information. Depth is the depth the object is |
|---|
| 36 |
# normally found at, rarity determines how common the object is, |
|---|
| 37 |
# weight is in tenth-pounds and cost is the item's value. |
|---|
| 38 |
|
|---|
| 39 |
# 'P' is for power information. The items base armor class, its base |
|---|
| 40 |
# damage and pluses to-hit, to-dam and to-ac. |
|---|
| 41 |
|
|---|
| 42 |
# 'F' is for flags. These are fairly self-explanatory. As many F: |
|---|
| 43 |
# lines may be used as are needed to specify all the flags and flags |
|---|
| 44 |
# are separated by the '|' symbol. |
|---|
| 45 |
|
|---|
| 46 |
# 'A' is for activation. Activation is the effect the artifact |
|---|
| 47 |
# activates for. The recharge time calculates from the recharge time |
|---|
| 48 |
# plus a random value between 1 and the recharge time dice (if not 0). |
|---|
| 49 |
# If an activation is given then the artifact must also have the |
|---|
| 50 |
# ACTIVATE flag. |
|---|
| 51 |
|
|---|
| 52 |
# 'D' is for the artifact description. These appear when the item is |
|---|
| 53 |
# identified. Special thanks to J.R.R Tolkien, without whom the words would |
|---|
| 54 |
# be unwritten, the images unconceived, the deed undone. -LM- |
|---|
| 55 |
# Contributers: Jeff Butler, Neal Hackler, Ethan Sicotte, Pat Tracy, Yuanli Zhou |
|---|
| 56 |
|
|---|
| 57 |
### IMPORTANT NOTES ### |
|---|
| 58 |
# (1.) Any changes or additions to the file will have influence on randarts |
|---|
| 59 |
# and may break savefile compatibility for old savegames with randarts. If |
|---|
| 60 |
# using random artifacts, finish your existing game before making any |
|---|
| 61 |
# changes to the artifact.txt file at all. |
|---|
| 62 |
# (2.) Removing any artifact, or changing its "base" type (as defined by |
|---|
| 63 |
# the tval and sval entries in the "I:" line), will break savefile |
|---|
| 64 |
# compatibility for ALL savefiles. |
|---|
| 65 |
# (3.) Adding a new artifact, or changing the powers of existing ones, will |
|---|
| 66 |
# NOT affect savefile compatibility for games with the standard artifact set: |
|---|
| 67 |
# it is perfectly safe to do this. (If your new artifact is a new kind of |
|---|
| 68 |
# object, or a new one at the end of the file, you must also amend object.txt |
|---|
| 69 |
# or limits.txt.) |
|---|
| 70 |
|
|---|
| 71 |
|
|---|
| 72 |
# Version stamp (required) |
|---|
| 73 |
|
|---|
| 74 |
V:3.0.11 |
|---|
| 75 |
|
|---|
| 76 |
|
|---|
| 77 |
# Here is the list of "Special" artifacts - Amulets, Light Sources, Rings. |
|---|
| 78 |
# Only the FIRST 15 artifacts may be of these types currently: artifacts |
|---|
| 79 |
# from index number 16 onwards must be Armor or Weapons. |
|---|
| 80 |
|
|---|
| 81 |
# The Phial of Galadriel |
|---|
| 82 |
|
|---|
| 83 |
N:1:of Galadriel |
|---|
| 84 |
I:light:4:0 |
|---|
| 85 |
W:5:3:10:10000 |
|---|
| 86 |
P:0:1d1:0:0:0 |
|---|
| 87 |
F:ACTIVATE | NO_FUEL | |
|---|
| 88 |
F:INSTA_ART |
|---|
| 89 |
A:ILLUMINATION:10+d10 |
|---|
| 90 |
M:The phial wells with clear light... |
|---|
| 91 |
D:A small crystal phial, with the light of Earendil's Star contained inside. |
|---|
| 92 |
D:Its light is imperishable, and near it darkness cannot endure. |
|---|
| 93 |
|
|---|
| 94 |
|
|---|
| 95 |
# The Star of Elendil |
|---|
| 96 |
|
|---|
| 97 |
N:2:of Elendil |
|---|
| 98 |
I:light:5:0 |
|---|
| 99 |
W:30:25:5:30000 |
|---|
| 100 |
P:0:1d1:0:0:0 |
|---|
| 101 |
F:ACTIVATE | SEE_INVIS | NO_FUEL | |
|---|
| 102 |
F:INSTA_ART |
|---|
| 103 |
A:MAPPING:50+d50 |
|---|
| 104 |
M:The star shines brightly... |
|---|
| 105 |
D:The shining Star of the West, a treasured heirloom of Elendil's house. |
|---|
| 106 |
|
|---|
| 107 |
# The Arkenstone of Thrain |
|---|
| 108 |
|
|---|
| 109 |
N:3:of Thrain |
|---|
| 110 |
I:light:6:0 |
|---|
| 111 |
W:50:50:5:50000 |
|---|
| 112 |
P:0:1d1:0:0:0 |
|---|
| 113 |
F:ACTIVATE | SEE_INVIS | HOLD_LIFE | RES_LITE | RES_DARK | NO_FUEL | |
|---|
| 114 |
F:INSTA_ART |
|---|
| 115 |
A:DETECT_ALL:30+d30 |
|---|
| 116 |
M:The Arkenstone forms an image in your mind... |
|---|
| 117 |
D:A great globe seemingly filled with moonlight, the famed Heart of the |
|---|
| 118 |
D:Mountain, which splinters the light that falls upon it into a thousand |
|---|
| 119 |
D:glowing shards. |
|---|
| 120 |
|
|---|
| 121 |
|
|---|
| 122 |
# The Amulet of Carlammas |
|---|
| 123 |
|
|---|
| 124 |
N:4:of Carlammas |
|---|
| 125 |
I:amulet:50:2 |
|---|
| 126 |
W:50:10:3:60000 |
|---|
| 127 |
F:CON | HIDE_TYPE | |
|---|
| 128 |
F:ACTIVATE | RES_FIRE | |
|---|
| 129 |
F:INSTA_ART |
|---|
| 130 |
A:PROTEVIL:225:+d225 |
|---|
| 131 |
M:The amulet lets out a shrill wail... |
|---|
| 132 |
D:A fiery circle of bronze, with mighty spells to ward off and banish evil. |
|---|
| 133 |
|
|---|
| 134 |
|
|---|
| 135 |
# The Amulet of Ingwe |
|---|
| 136 |
|
|---|
| 137 |
N:5:of Ingwe |
|---|
| 138 |
I:amulet:51:3 |
|---|
| 139 |
W:65:30:3:90000 |
|---|
| 140 |
F:INT | WIS | CHR | INFRA | HIDE_TYPE | |
|---|
| 141 |
F:SEE_INVIS | FREE_ACT | ACTIVATE | |
|---|
| 142 |
F:RES_ACID | RES_COLD | RES_ELEC | |
|---|
| 143 |
F:INSTA_ART |
|---|
| 144 |
A:DISPEL_EVIL:50+d50 |
|---|
| 145 |
M:The amulet floods the area with goodness... |
|---|
| 146 |
D:The ancient heirloom of Ingwe, high lord of the Vanyar, against whom nothing |
|---|
| 147 |
D:of evil could stand. |
|---|
| 148 |
|
|---|
| 149 |
|
|---|
| 150 |
# The Necklace of the Dwarves |
|---|
| 151 |
|
|---|
| 152 |
N:6:of the Dwarves |
|---|
| 153 |
I:amulet:52:3 |
|---|
| 154 |
W:70:50:3:75000 |
|---|
| 155 |
F:STR | CON | INFRA | HIDE_TYPE | |
|---|
| 156 |
F:SEE_INVIS | FREE_ACT | REGEN | LITE | RES_FEAR | |
|---|
| 157 |
F:INSTA_ART |
|---|
| 158 |
D:The Nauglamir; a carencet of gold set with a multitude of shining gems of |
|---|
| 159 |
D:Valinor, accenting a radiant Silmaril. The sturdy spirits of Dwarvish |
|---|
| 160 |
D:craftsmen who labored long in mountain smithies lie within it still, and |
|---|
| 161 |
D:as gossamer it rests upon the bearer. |
|---|
| 162 |
|
|---|
| 163 |
|
|---|
| 164 |
# New Artifact (7): The Palantir of Westernesse |
|---|
| 165 |
|
|---|
| 166 |
N:7:of Westernesse |
|---|
| 167 |
I:light:7:2 |
|---|
| 168 |
W:75:60:200:100000 |
|---|
| 169 |
P:0:10d10:0:0:0 |
|---|
| 170 |
# F:DRAIN_MANA | |
|---|
| 171 |
F:ACTIVATE | NO_FUEL | |
|---|
| 172 |
F:INT | WIS | SEARCH | INFRA | SEE_INVIS | TELEPATHY | |
|---|
| 173 |
F:RES_CHAOS | RES_BLIND | AGGRAVATE | DRAIN_EXP | |
|---|
| 174 |
F:INSTA_ART | HIDE_TYPE |
|---|
| 175 |
A:CLAIRVOYANCE:50+d50 |
|---|
| 176 |
M:The palantir glows a deep green... |
|---|
| 177 |
D:A great globe with a heart of fire, providing the wearer with sight |
|---|
| 178 |
D:of far places - at a cost, for those espied upon are aware of it. |
|---|
| 179 |
|
|---|
| 180 |
|
|---|
| 181 |
# The Ring of Barahir |
|---|
| 182 |
|
|---|
| 183 |
N:8:of Barahir |
|---|
| 184 |
I:ring:50:1 |
|---|
| 185 |
W:50:25:2:65000 |
|---|
| 186 |
F:STR | INT | WIS | DEX | CON | CHR | STEALTH | HIDE_TYPE | |
|---|
| 187 |
F:RES_POIS | RES_DARK |
|---|
| 188 |
F:INSTA_ART |
|---|
| 189 |
D:A ring shaped into twinned serpents with eyes of emerald meeting beneath |
|---|
| 190 |
D:a crown of flowers, an ancient treasure of Isildur's house. |
|---|
| 191 |
|
|---|
| 192 |
|
|---|
| 193 |
# The Ring of Tulkas |
|---|
| 194 |
|
|---|
| 195 |
N:9:of Tulkas |
|---|
| 196 |
I:ring:51:4 |
|---|
| 197 |
W:70:50:2:150000 |
|---|
| 198 |
F:STR | DEX | CON | HIDE_TYPE | RES_FEAR | |
|---|
| 199 |
F:ACTIVATE | |
|---|
| 200 |
F:INSTA_ART |
|---|
| 201 |
A:HASTE2:150+d150 |
|---|
| 202 |
M:The ring glows brightly... |
|---|
| 203 |
D:The treasure of Tulkas, most fleet and wrathful of the Valar. |
|---|
| 204 |
|
|---|
| 205 |
|
|---|
| 206 |
# The Ring of Power 'Narya' |
|---|
| 207 |
|
|---|
| 208 |
N:10:of Power 'Narya' |
|---|
| 209 |
I:ring:52:1 |
|---|
| 210 |
W:70:50:2:100000 |
|---|
| 211 |
P:0:0d0:6:6:0 |
|---|
| 212 |
F:STR | INT | WIS | DEX | CON | CHR | SPEED | HIDE_TYPE | |
|---|
| 213 |
F:ACTIVATE | FREE_ACT | SEE_INVIS | |
|---|
| 214 |
F:SLOW_DIGEST | REGEN | TELEPATHY | |
|---|
| 215 |
F:SUST_STR | SUST_CON | |
|---|
| 216 |
F:IM_FIRE | RES_FIRE | RES_FEAR |
|---|
| 217 |
F:INSTA_ART |
|---|
| 218 |
A:PROTEVIL:200+4d50 |
|---|
| 219 |
M:Narya glows deep red... |
|---|
| 220 |
D:The Ring of Fire, set with a ruby that glows like flame. Narya is one |
|---|
| 221 |
D:of the three Rings of Power created by the Elves and hidden by them from |
|---|
| 222 |
D:Sauron. |
|---|
| 223 |
|
|---|
| 224 |
|
|---|
| 225 |
# The Ring of Power 'Nenya' |
|---|
| 226 |
|
|---|
| 227 |
N:11:of Power 'Nenya' |
|---|
| 228 |
I:ring:53:2 |
|---|
| 229 |
W:80:50:2:200000 |
|---|
| 230 |
P:0:0d0:8:8:0 |
|---|
| 231 |
F:STR | INT | WIS | DEX | CON | CHR | SPEED | HIDE_TYPE | |
|---|
| 232 |
F:ACTIVATE | HOLD_LIFE | FREE_ACT | SEE_INVIS | |
|---|
| 233 |
F:FEATHER | REGEN |
|---|
| 234 |
F:SUST_INT | SUST_WIS | SUST_CON | |
|---|
| 235 |
F:IM_COLD | RES_COLD | RES_BLIND | TELEPATHY | |
|---|
| 236 |
F:INSTA_ART |
|---|
| 237 |
A:RESTORE_LIFE:200+2d50 |
|---|
| 238 |
M:Nenya glows bright white... |
|---|
| 239 |
D:The Ring of Adamant, with a pure white stone as centerpiece. Nenya is one |
|---|
| 240 |
D:of the three Rings of Power created by the Elves and hidden by them from |
|---|
| 241 |
D:Sauron. |
|---|
| 242 |
|
|---|
| 243 |
|
|---|
| 244 |
# The Ring of Power 'Vilya' |
|---|
| 245 |
|
|---|
| 246 |
N:12:of Power 'Vilya' |
|---|
| 247 |
I:ring:54:3 |
|---|
| 248 |
W:90:80:2:300000 |
|---|
| 249 |
P:0:0d0:10:10:0 |
|---|
| 250 |
F:STR | INT | WIS | DEX | CON | CHR | SPEED | HIDE_TYPE | |
|---|
| 251 |
F:ACTIVATE | HOLD_LIFE | FREE_ACT | SEE_INVIS | |
|---|
| 252 |
F:FEATHER | SLOW_DIGEST | REGEN | TELEPATHY | |
|---|
| 253 |
F:SUST_DEX | SUST_INT | SUST_CON | |
|---|
| 254 |
F:IM_ELEC | RES_ELEC | RES_POIS | RES_DARK | |
|---|
| 255 |
F:INSTA_ART |
|---|
| 256 |
A:HEAL2:200+2d50 |
|---|
| 257 |
M:Vilya glows deep blue... |
|---|
| 258 |
D:The Ring of Sapphire, with clear blue gems that shine like stars, |
|---|
| 259 |
D:glittering untouchable despite all that Morgoth ever wrought. Vilya is |
|---|
| 260 |
D:one of the three Rings of Power created by the Elves and hidden by them |
|---|
| 261 |
D:from Sauron. |
|---|
| 262 |
|
|---|
| 263 |
|
|---|
| 264 |
# The Ring of Power 'The One Ring' |
|---|
| 265 |
|
|---|
| 266 |
N:13:of Power 'The One Ring' |
|---|
| 267 |
I:ring:55:5 |
|---|
| 268 |
W:100:100:2:5000000 |
|---|
| 269 |
P:0:0d0:15:15:0 |
|---|
| 270 |
# F: DRAIN_MANA | DRAIN_HP | |
|---|
| 271 |
F:STR | INT | WIS | DEX | CON | CHR | SPEED | HIDE_TYPE | |
|---|
| 272 |
F:ACTIVATE | LIGHT_CURSE | HEAVY_CURSE | PERMA_CURSE | |
|---|
| 273 |
F:AGGRAVATE | DRAIN_EXP | SEE_INVIS | REGEN | TELEPATHY | |
|---|
| 274 |
F:IM_FIRE | IM_COLD | IM_ELEC | IM_ACID | |
|---|
| 275 |
F:RES_FIRE | RES_COLD | RES_ELEC | RES_ACID | RES_DARK | |
|---|
| 276 |
F:RES_DISEN | RES_POIS | RES_NETHR |
|---|
| 277 |
F:SUST_STR | SUST_DEX | SUST_CON | |
|---|
| 278 |
F:SUST_INT | SUST_WIS | SUST_CHR | |
|---|
| 279 |
F:INSTA_ART |
|---|
| 280 |
A:BIZARRE:200+9d50 |
|---|
| 281 |
M:The One Ring glows intensely black... |
|---|
| 282 |
D:"One Ring to rule them all, One Ring to find them, One Ring to bring |
|---|
| 283 |
D:them all and in the darkness bind them." Made of massive gold, and |
|---|
| 284 |
D:set with runes in the foul speech of Mordor, Isildur's Bane possesses |
|---|
| 285 |
D:powers so great that it inevitably twists and masters any earthly being |
|---|
| 286 |
D:who wears it. |
|---|
| 287 |
|
|---|
| 288 |
|
|---|
| 289 |
# New Artifact (14): The Elfstone 'Elessar' |
|---|
| 290 |
|
|---|
| 291 |
N:14:'Elessar' |
|---|
| 292 |
I:amulet:53:2 |
|---|
| 293 |
W:60:60:3:40000 |
|---|
| 294 |
P:0:0d0:7:7:10 |
|---|
| 295 |
F:STR | WIS | CHR | SPEED | |
|---|
| 296 |
F:RES_FEAR | RES_FIRE | RES_POIS | HIDE_TYPE | |
|---|
| 297 |
F:ACTIVATE | |
|---|
| 298 |
F:INSTA_ART |
|---|
| 299 |
A:HEAL1:200+d0 |
|---|
| 300 |
M:Your feel a warm tingling inside... |
|---|
| 301 |
D:A green stone, imbued with the power of Elvendom and fit to be borne by |
|---|
| 302 |
D:a true King of Men, one such as brings healing after victory in battle. |
|---|
| 303 |
|
|---|
| 304 |
|
|---|
| 305 |
# New Artifact (15): The Jewel 'Evenstar' |
|---|
| 306 |
|
|---|
| 307 |
N:15:'Evenstar' |
|---|
| 308 |
I:amulet:54:0 |
|---|
| 309 |
W:40:40:3:25000 |
|---|
| 310 |
F:HOLD_LIFE | SUST_CON | SUST_WIS | SUST_INT | |
|---|
| 311 |
F:RES_DARK | RES_COLD | |
|---|
| 312 |
F:ACTIVATE | |
|---|
| 313 |
F:INSTA_ART |
|---|
| 314 |
A:RESTORE_LIFE:150+d0 |
|---|
| 315 |
M:Your Cloak glows a deep red... |
|---|
| 316 |
D:A plain white jewel, given by Queen Arwen to Frodo Baggins before his |
|---|
| 317 |
D:return to the Shire. |
|---|
| 318 |
|
|---|
| 319 |
|
|---|
| 320 |
### Here follow the Armor artifacts ### |
|---|
| 321 |
|
|---|
| 322 |
### Dragon Scale Mails ### |
|---|
| 323 |
|
|---|
| 324 |
N:16:'Razorback' |
|---|
| 325 |
I:dragon armour:Multi-Hued Dragon Scale Mail~:0 |
|---|
| 326 |
W:90:9:500:400000 |
|---|
| 327 |
P:30:2d4:-4:0:25 |
|---|
| 328 |
F:FREE_ACT | IM_ELEC | RES_ELEC | |
|---|
| 329 |
F:RES_ACID | RES_FIRE | RES_COLD | |
|---|
| 330 |
F:RES_POIS | RES_LITE | RES_DARK | |
|---|
| 331 |
F:LITE | SEE_INVIS | AGGRAVATE | |
|---|
| 332 |
F:ACTIVATE |
|---|
| 333 |
A:STAR_BALL:1000 |
|---|
| 334 |
M:Your Dragon Scale Mail is surrounded by lightning! |
|---|
| 335 |
D:A massive suit of heavy dragon scales deeply saturated with many colors. |
|---|
| 336 |
D:It throbs with angry energies, and you feel the raw elemental might of |
|---|
| 337 |
D:untamed Lightning as you put it on. |
|---|
| 338 |
|
|---|
| 339 |
|
|---|
| 340 |
N:17:'Bladeturner' |
|---|
| 341 |
I:dragon armour:Power Dragon Scale Mail~:0 |
|---|
| 342 |
W:100:16:600:500000 |
|---|
| 343 |
P:50:2d4:-8:0:35 |
|---|
| 344 |
F:HOLD_LIFE | REGEN | |
|---|
| 345 |
F:RES_ACID | RES_ELEC | RES_FIRE | RES_COLD | RES_POIS | RES_FEAR | |
|---|
| 346 |
F:RES_LITE | RES_DARK | RES_BLIND | RES_CONFU | RES_SOUND | |
|---|
| 347 |
F:RES_SHARD | RES_NETHR | RES_NEXUS | RES_CHAOS | RES_DISEN | |
|---|
| 348 |
F:ACTIVATE |
|---|
| 349 |
A:RAGE_BLESS_RESIST:400 |
|---|
| 350 |
M:Bladeturner glows many colors... |
|---|
| 351 |
D:A suit of adamant, set with scales of every color, surrounded in a nimbus |
|---|
| 352 |
D:of perfectly untramelled yet inextricably intermingled and utterly mastered |
|---|
| 353 |
D:powers elemental and ethereal. |
|---|
| 354 |
|
|---|
| 355 |
|
|---|
| 356 |
N:18:'Mediator' |
|---|
| 357 |
I:dragon armour:Balance Dragon Scale Mail~:0 |
|---|
| 358 |
W:95:12:500:400000 |
|---|
| 359 |
P:30:2d4:-4:0:25 |
|---|
| 360 |
F:RES_CHAOS | RES_DISEN | RES_SHARD | RES_SOUND | |
|---|
| 361 |
F:RES_CONFU | RES_NEXUS | AGGRAVATE | |
|---|
| 362 |
F:FREE_ACT | SLOW_DIGEST | REGEN | |
|---|
| 363 |
F:ACTIVATE |
|---|
| 364 |
A:STAR_BALL:50 |
|---|
| 365 |
M:Your Dragon Scale Male is surrounded by lightning! |
|---|
| 366 |
D:A great suit of dragon hide, set with scales of many hues. Even the |
|---|
| 367 |
D:mightiest wyrms of Law and Chaos fear the judgement of its wearer. |
|---|
| 368 |
|
|---|
| 369 |
|
|---|
| 370 |
### Heavy Armor ### |
|---|
| 371 |
|
|---|
| 372 |
N:19:'Soulkeeper' |
|---|
| 373 |
I:hard armour:Adamantite Plate Mail~:2 |
|---|
| 374 |
W:75:9:420:300000 |
|---|
| 375 |
P:40:2d4:-4:0:20 |
|---|
| 376 |
F:CON | |
|---|
| 377 |
F:HOLD_LIFE | SUST_CON | |
|---|
| 378 |
F:RES_ACID | RES_COLD | RES_DARK | RES_NETHR | RES_NEXUS | |
|---|
| 379 |
F:RES_CHAOS | RES_CONFU | RES_FEAR | |
|---|
| 380 |
F:ACTIVATE |
|---|
| 381 |
A:HEAL2:444 |
|---|
| 382 |
M:Soulkeeper glows a bright white... |
|---|
| 383 |
D:A suit of imperishable adamant, with unconquerable strength to endure evil |
|---|
| 384 |
D:and disruptive magics, that protects the life force of its wearer as |
|---|
| 385 |
D:nothing else can. |
|---|
| 386 |
|
|---|
| 387 |
|
|---|
| 388 |
N:20:of Isildur |
|---|
| 389 |
I:hard armour:Full Plate Armour~:1 |
|---|
| 390 |
W:30:3:300:50000 |
|---|
| 391 |
P:26:2d4:0:0:25 |
|---|
| 392 |
F:CON | |
|---|
| 393 |
F:RES_ACID | RES_ELEC | RES_FIRE | RES_COLD | |
|---|
| 394 |
F:RES_SOUND | RES_CONFU | RES_NEXUS |
|---|
| 395 |
D:A gleaming steel suit covering the wearer from neck to foot, with runes of |
|---|
| 396 |
D:warding and stability deeply engraved into its surface. |
|---|
| 397 |
|
|---|
| 398 |
|
|---|
| 399 |
N:21:of the Rohirrim |
|---|
| 400 |
I:hard armour:Metal Brigandine Armour~:2 |
|---|
| 401 |
W:30:3:200:30000 |
|---|
| 402 |
P:20:1d4:0:0:15 |
|---|
| 403 |
F:STR | DEX | HIDE_TYPE | RES_FEAR | |
|---|
| 404 |
F:RES_ACID | RES_ELEC | RES_FIRE | RES_COLD | RES_CONFU | RES_SOUND |
|---|
| 405 |
D:Small metal plates cover an inner layer of sturdy canvas, and both bear |
|---|
| 406 |
D:scenes of hunting and war. You feel the spirit of Eorl the Young, matchless |
|---|
| 407 |
D:in combat, around you as you put his armour on. |
|---|
| 408 |
|
|---|
| 409 |
|
|---|
| 410 |
N:22:'Belegennon' |
|---|
| 411 |
I:hard armour:Mithril Chain Mail~:4 |
|---|
| 412 |
W:40:3:150:105000 |
|---|
| 413 |
P:28:1d4:-1:0:20 |
|---|
| 414 |
F:STEALTH | HIDE_TYPE | |
|---|
| 415 |
F:RES_ACID | RES_ELEC | RES_FIRE | RES_COLD | RES_POIS | ACTIVATE |
|---|
| 416 |
A:TELE_PHASE:2 |
|---|
| 417 |
M:Belegennon twists space around you... |
|---|
| 418 |
D:This wondrous suit of fine-linked chain shimmers as though of pure silver. |
|---|
| 419 |
D:It stands untouched amidst the fury of the elements, and a power of |
|---|
| 420 |
D:concealment rests within. |
|---|
| 421 |
|
|---|
| 422 |
|
|---|
| 423 |
N:23:of Celeborn |
|---|
| 424 |
I:hard armour:Mithril Plate Mail~:4 |
|---|
| 425 |
W:40:3:250:150000 |
|---|
| 426 |
P:35:2d4:-3:0:25 |
|---|
| 427 |
F:STR | CHR | HIDE_TYPE | |
|---|
| 428 |
F:RES_ACID | RES_ELEC | RES_FIRE | RES_COLD | RES_DARK | |
|---|
| 429 |
F:RES_DISEN | ACTIVATE |
|---|
| 430 |
A:BANISHMENT:500 |
|---|
| 431 |
M:Your Mithril Plate Mail glows deep blue... |
|---|
| 432 |
D:A shimmering suit of true-silver, forged long ago by dwarven smiths of |
|---|
| 433 |
D:legend. It gleams with purest white as you gaze upon it, and mighty are |
|---|
| 434 |
D:its powers to protect and banish. |
|---|
| 435 |
|
|---|
| 436 |
|
|---|
| 437 |
N:24:of Arvedui |
|---|
| 438 |
I:hard armour:Chain Mail~:2 |
|---|
| 439 |
W:20:3:220:32000 |
|---|
| 440 |
P:14:1d4:-2:0:15 |
|---|
| 441 |
F:STR | CHR | HIDE_TYPE | |
|---|
| 442 |
F:RES_ACID | RES_ELEC | RES_FIRE | RES_COLD | RES_SHARD | RES_NEXUS |
|---|
| 443 |
D:A hauberk, leggings, and sleeves of interlocking steel rings, well padded |
|---|
| 444 |
D:with leather. You feel as strong and tall as Arvedui, last king of Arnor, |
|---|
| 445 |
D:as you put it on. |
|---|
| 446 |
|
|---|
| 447 |
|
|---|
| 448 |
N:25:of Caspanion |
|---|
| 449 |
I:hard armour:Augmented Chain Mail~:3 |
|---|
| 450 |
W:25:9:270:40000 |
|---|
| 451 |
P:16:1d4:-2:0:20 |
|---|
| 452 |
F:INT | WIS | CON | HIDE_TYPE | |
|---|
| 453 |
F:RES_ACID | RES_POIS | RES_CONFU | ACTIVATE |
|---|
| 454 |
A:DESTROY_TDOORS:10 |
|---|
| 455 |
M:Your Augmented Chain Mail glows bright red... |
|---|
| 456 |
D:A hauberk, leggings, and sleeves of interlocking steel rings, strategically |
|---|
| 457 |
D:reinforced at vital locations with a second layer of chain. Magics to |
|---|
| 458 |
D:enhance body and mind lie within, and no door can bar the wearer's path. |
|---|
| 459 |
|
|---|
| 460 |
|
|---|
| 461 |
### Light Armor ### |
|---|
| 462 |
|
|---|
| 463 |
N:26:of Himring |
|---|
| 464 |
I:soft armour:Hard Leather Armour~:0 |
|---|
| 465 |
W:50:20:100:35000 |
|---|
| 466 |
P:8:0d0:0:0:15 |
|---|
| 467 |
F:RES_CHAOS | RES_NETHR | RES_POIS | ACTIVATE |
|---|
| 468 |
A:PROTEVIL:100+d100 |
|---|
| 469 |
M:The armor lets out a shrill wail... |
|---|
| 470 |
D:Contained within this studded cuirass of pliable leather is the memory of |
|---|
| 471 |
D:unvanquished Himring, defiant fortress surrounded by the legions of Morgoth. |
|---|
| 472 |
|
|---|
| 473 |
|
|---|
| 474 |
N:27:'Hithlomir' |
|---|
| 475 |
I:soft armour:Soft Leather Armour~:4 |
|---|
| 476 |
W:20:3:80:45000 |
|---|
| 477 |
P:4:0d0:0:0:20 |
|---|
| 478 |
F:STEALTH | HIDE_TYPE | |
|---|
| 479 |
F:RES_ACID | RES_ELEC | RES_FIRE | RES_COLD | RES_DARK |
|---|
| 480 |
D:Familar with the secret ways hidden in darkness, this leather cuirass is |
|---|
| 481 |
D:truly more than it appears. |
|---|
| 482 |
|
|---|
| 483 |
|
|---|
| 484 |
N:28:'Thalkettoth' |
|---|
| 485 |
I:soft armour:Leather Scale Mail~:3 |
|---|
| 486 |
W:20:3:60:25000 |
|---|
| 487 |
P:10:1d1:-1:0:25 |
|---|
| 488 |
F:DEX | SPEED | HIDE_TYPE | |
|---|
| 489 |
F:RES_ACID | RES_SHARD |
|---|
| 490 |
D:An amazingly light tunic and skirt sewn with thick, overlapping scales of |
|---|
| 491 |
D:hardened leather whose wearer moves with agility and assurance. |
|---|
| 492 |
|
|---|
| 493 |
|
|---|
| 494 |
### Shields ### |
|---|
| 495 |
|
|---|
| 496 |
# should be Shield of Deflection |
|---|
| 497 |
N:29:of Gil-galad |
|---|
| 498 |
I:shield:Mithril Shield~:5 |
|---|
| 499 |
W:70:4:80:65000 |
|---|
| 500 |
P:10:1d3:0:0:20 |
|---|
| 501 |
F:ACTIVATE | |
|---|
| 502 |
F:LITE | WIS | CHR | |
|---|
| 503 |
F:RES_ELEC | RES_ACID | RES_DISEN | RES_DARK | HIDE_TYPE | |
|---|
| 504 |
F:SUST_WIS | SUST_DEX | SUST_CHR |
|---|
| 505 |
A:STARLIGHT2:100 |
|---|
| 506 |
M:Your Sheild of Deflection glows with the light of a thousand stars... |
|---|
| 507 |
D:The legendary shield of Ereinion Gil-galad, who fought his way to the |
|---|
| 508 |
D:gates of the Dark Tower, and with whom came light even to Gorgoroth. |
|---|
| 509 |
|
|---|
| 510 |
|
|---|
| 511 |
N:30:of Thorin |
|---|
| 512 |
I:shield:Small Metal Shield~:4 |
|---|
| 513 |
W:40:6:65:60000 |
|---|
| 514 |
P:3:1d2:0:0:25 |
|---|
| 515 |
F:STR | CON | HIDE_TYPE | RES_FEAR | |
|---|
| 516 |
F:FREE_ACT | IM_ACID | RES_SOUND | RES_CHAOS |
|---|
| 517 |
D:Invoking the strength and endurance of Thorin, King under the Mountain, |
|---|
| 518 |
D:this little metal shield is proof against the Element of Earth. |
|---|
| 519 |
|
|---|
| 520 |
|
|---|
| 521 |
N:31:of Celegorm |
|---|
| 522 |
I:shield:Leather Shield~:0 |
|---|
| 523 |
W:30:3:60:12000 |
|---|
| 524 |
P:4:1d2:0:0:20 |
|---|
| 525 |
F:RES_ACID | RES_ELEC | RES_FIRE | RES_COLD | RES_LITE | RES_DARK |
|---|
| 526 |
D:This shield emblazoned with a multitude of creatures unseen for ages |
|---|
| 527 |
D:once protected Celegorm, Lord of Himlad; around it a mystic balance lies, |
|---|
| 528 |
D:containing the conflicts of the elements. |
|---|
| 529 |
|
|---|
| 530 |
|
|---|
| 531 |
N:32:of Anarion |
|---|
| 532 |
I:shield:Large Metal Shield~:0 |
|---|
| 533 |
W:40:9:120:160000 |
|---|
| 534 |
P:5:1d3:0:0:20 |
|---|
| 535 |
F:RES_ACID | RES_ELEC | RES_FIRE | RES_COLD | SUST_STR | SUST_INT | |
|---|
| 536 |
F:SUST_WIS | SUST_DEX | SUST_CON | SUST_CHR |
|---|
| 537 |
D:The great metal-bound shield of Anarion, son of Elendil, whom Sauron |
|---|
| 538 |
D:found himself powerless to wither or diminish. |
|---|
| 539 |
|
|---|
| 540 |
|
|---|
| 541 |
### Helmets and Crowns ### |
|---|
| 542 |
|
|---|
| 543 |
N:33:of Celebrimbor |
|---|
| 544 |
I:helm:Metal Cap~:3 |
|---|
| 545 |
W:55:12:20:45000 |
|---|
| 546 |
P:3:1d1:0:0:18 |
|---|
| 547 |
F:INT | DEX | CHR | SEARCH | |
|---|
| 548 |
F:RES_FIRE | RES_ACID | RES_DISEN | RES_SHARD | |
|---|
| 549 |
D:A metal cap forged by the greatest Noldorin smith of the Second Age, |
|---|
| 550 |
D:this helm is of equal use in battle or at the forge, and its |
|---|
| 551 |
D:enchantment will never be diminished. |
|---|
| 552 |
|
|---|
| 553 |
|
|---|
| 554 |
N:34:of Morgoth |
|---|
| 555 |
I:crown:Massive Iron Crown~:125 |
|---|
| 556 |
W:100:1:400:10000000 |
|---|
| 557 |
P:0:1d1:0:0:0 |
|---|
| 558 |
F:STR | INT | WIS | DEX | CON | CHR | INFRA | HIDE_TYPE | |
|---|
| 559 |
F:RES_ACID | RES_ELEC | RES_FIRE | RES_COLD | RES_POIS | |
|---|
| 560 |
F:RES_LITE | RES_DARK | RES_CONFU | RES_NEXUS | RES_NETHR | |
|---|
| 561 |
F:LITE | SEE_INVIS | TELEPATHY | RES_FEAR | |
|---|
| 562 |
F:LIGHT_CURSE | HEAVY_CURSE | PERMA_CURSE | |
|---|
| 563 |
F:INSTA_ART |
|---|
| 564 |
D:Containing much of the power of he who once was mightiest among the Ainur, |
|---|
| 565 |
D:this plain iron crown has mounted upon it the two remaining Silmarils, |
|---|
| 566 |
D:greatest treasures of Middle-Earth. |
|---|
| 567 |
|
|---|
| 568 |
|
|---|
| 569 |
N:35:of Beruthiel |
|---|
| 570 |
I:crown:Iron Crown~:-5 |
|---|
| 571 |
W:40:12:20:1 |
|---|
| 572 |
P:0:1d1:0:0:20 |
|---|
| 573 |
F:STR | DEX | CON | HIDE_TYPE | |
|---|
| 574 |
F:FREE_ACT | SEE_INVIS | TELEPATHY | LIGHT_CURSE | HEAVY_CURSE |
|---|
| 575 |
D:The midnight-hued steel circlet of the sorceress-queen Beruthiel, which |
|---|
| 576 |
D:grants extraordinary powers of sight and awareness at a terrible physical |
|---|
| 577 |
D:cost. |
|---|
| 578 |
|
|---|
| 579 |
|
|---|
| 580 |
N:36:of Thranduil |
|---|
| 581 |
I:helm:Hard Leather Cap~:2 |
|---|
| 582 |
W:20:2:15:50000 |
|---|
| 583 |
P:2:0d0:0:0:10 |
|---|
| 584 |
F:INT | WIS | HIDE_TYPE | |
|---|
| 585 |
F:RES_BLIND | TELEPATHY |
|---|
| 586 |
D:The hunting cap of King Thranduil, to whose ears come all the secrets of |
|---|
| 587 |
D:his forest domain. |
|---|
| 588 |
|
|---|
| 589 |
|
|---|
| 590 |
N:37:of Thengel |
|---|
| 591 |
I:helm:Metal Cap~:3 |
|---|
| 592 |
W:10:2:20:22000 |
|---|
| 593 |
P:3:1d1:0:0:12 |
|---|
| 594 |
F:WIS | CHR | RES_CONFU | HIDE_TYPE |
|---|
| 595 |
D:A ridged helmet made of steel, and embossed with scenes of valor in fine- |
|---|
| 596 |
D:engraved silver. It grants the wearer nobility and understanding. |
|---|
| 597 |
|
|---|
| 598 |
|
|---|
| 599 |
N:38:of Hammerhand |
|---|
| 600 |
I:helm:Steel Helm~:3 |
|---|
| 601 |
W:20:8:60:45000 |
|---|
| 602 |
P:6:1d3:0:0:20 |
|---|
| 603 |
F:STR | DEX | CON | HIDE_TYPE | |
|---|
| 604 |
F:SUST_STR | SUST_DEX | SUST_CON | AGGRAVATE | |
|---|
| 605 |
F:RES_ACID | RES_NEXUS | RES_COLD | RES_DARK |
|---|
| 606 |
D:A great helm, as steady and as distinctive as the hero of the Westdike. |
|---|
| 607 |
D:Many long months was Helm Hammerhand besieged in the Hornburg, yet he |
|---|
| 608 |
D:strode out time and again among his foes and slew many. Although they |
|---|
| 609 |
D:knew of his coming, none could stand against him. |
|---|
| 610 |
|
|---|
| 611 |
|
|---|
| 612 |
N:39:of Dor-Lomin |
|---|
| 613 |
I:helm:Iron Helm~:4 |
|---|
| 614 |
W:40:20:75:300000 |
|---|
| 615 |
P:5:1d3:0:0:20 |
|---|
| 616 |
F:STR | DEX | CON | HIDE_TYPE | RES_FEAR | |
|---|
| 617 |
F:RES_ACID | RES_ELEC | RES_FIRE | RES_COLD | |
|---|
| 618 |
F:LITE | SEE_INVIS | TELEPATHY |
|---|
| 619 |
D:The legendary dragon helm of Turin Turambar, an object of dread to the |
|---|
| 620 |
D:servants of Morgoth. |
|---|
| 621 |
|
|---|
| 622 |
|
|---|
| 623 |
N:40:'Holhenneth' |
|---|
| 624 |
I:helm:Iron Helm~:2 |
|---|
| 625 |
W:20:5:75:100000 |
|---|
| 626 |
P:5:1d3:0:0:10 |
|---|
| 627 |
F:INT | WIS | SEARCH | HIDE_TYPE | |
|---|
| 628 |
F:RES_BLIND | RES_CONFU | SEE_INVIS | ACTIVATE |
|---|
| 629 |
A:DETECT_ALL:55+d55 |
|---|
| 630 |
M:Holhenneth forms an image in your mind... |
|---|
| 631 |
D:A famous helm of forged iron granting extraordinary powers of mind and |
|---|
| 632 |
D:awareness. |
|---|
| 633 |
|
|---|
| 634 |
|
|---|
| 635 |
N:41:of Gorlim |
|---|
| 636 |
I:helm:Iron Helm~:-5 |
|---|
| 637 |
W:20:5:75:1 |
|---|
| 638 |
P:5:1d3:8:8:10 |
|---|
| 639 |
# F: DRAIN_HP | |
|---|
| 640 |
F:INT | WIS | SEARCH | HIDE_TYPE | RES_FEAR | |
|---|
| 641 |
F:SEE_INVIS | FREE_ACT | AGGRAVATE | LIGHT_CURSE | HEAVY_CURSE |
|---|
| 642 |
D:A headpiece, gaudy and barbaric, that betrayed a warrior when he most |
|---|
| 643 |
D:needed succor. |
|---|
| 644 |
|
|---|
| 645 |
|
|---|
| 646 |
N:42:of Gondor |
|---|
| 647 |
I:crown:Golden Crown~:3 |
|---|
| 648 |
W:40:40:30:100000 |
|---|
| 649 |
P:0:1d1:0:0:15 |
|---|
| 650 |
F:STR | WIS | CON | SPEED | HIDE_TYPE | |
|---|
| 651 |
F:RES_COLD | RES_FIRE | RES_LITE | RES_BLIND | |
|---|
| 652 |
F:RES_CONFU | RES_SOUND | RES_CHAOS | |
|---|
| 653 |
F:LITE | SEE_INVIS | REGEN | ACTIVATE |
|---|
| 654 |
A:HEAL1:250 |
|---|
| 655 |
M:Your feel a warm tingling inside... |
|---|
| 656 |
D:The shining winged circlet brought by Elendil from dying Numenor, emblem of |
|---|
| 657 |
D:Gondor through an age of the world. |
|---|
| 658 |
|
|---|
| 659 |
|
|---|
| 660 |
N:43:of Numenor |
|---|
| 661 |
I:crown:Jewel Encrusted Crown~:3 |
|---|
| 662 |
W:60:30:40:50000 |
|---|
| 663 |
P:0:1d1:0:0:18 |
|---|
| 664 |
# F: DRAIN_MANA | ACTIVATE |
|---|
| 665 |
F:INT | DEX | CHR | SEARCH | SPEED | HIDE_TYPE | |
|---|
| 666 |
F:SEE_INVIS | FREE_ACT | |
|---|
| 667 |
F:RES_SHARD | RES_SOUND | RES_COLD | |
|---|
| 668 |
F:RES_LITE | RES_DARK | RES_BLIND | LITE |
|---|
| 669 |
# A:ANALYZE:50 |
|---|
| 670 |
D:A crown of massive gold, set with wondrous jewels of thought and warding, |
|---|
| 671 |
D:worn by the kings of ancient Numenor. |
|---|
| 672 |
|
|---|
| 673 |
|
|---|
| 674 |
### Cloaks and Shadow Cloaks ### |
|---|
| 675 |
|
|---|
| 676 |
N:44:'Colluin' |
|---|
| 677 |
I:cloak:Cloak~:0 |
|---|
| 678 |
W:5:45:10:50000 |
|---|
| 679 |
P:1:0d0:0:0:15 |
|---|
| 680 |
F:RES_ACID | RES_ELEC | RES_FIRE | RES_COLD | RES_POIS | ACTIVATE |
|---|
| 681 |
A:RESIST_ALL:111 |
|---|
| 682 |
M:Colluin glows many colours... |
|---|
| 683 |
D:A cape worn by a hero from Valinor, a land utterly beyond the strife |
|---|
| 684 |
D:of Elements. |
|---|
| 685 |
|
|---|
| 686 |
|
|---|
| 687 |
N:45:'Holcolleth' |
|---|
| 688 |
I:cloak:Cloak~:2 |
|---|
| 689 |
W:5:25:10:18000 |
|---|
| 690 |
P:1:0d0:0:0:4 |
|---|
| 691 |
F:INT | WIS | SPEED | STEALTH | HIDE_TYPE | |
|---|
| 692 |
F:RES_ACID | ACTIVATE |
|---|
| 693 |
A:SLEEPII:55 |
|---|
| 694 |
M:Holcolleth glows deep blue... |
|---|
| 695 |
D:This elven-grey mantle possesses great powers of tranquility and of |
|---|
| 696 |
D:concealment, and grants the wearer the knowledge and understanding of |
|---|
| 697 |
D:the Sindar. |
|---|
| 698 |
|
|---|
| 699 |
|
|---|
| 700 |
N:46:of Thingol |
|---|
| 701 |
I:cloak:Cloak~:3 |
|---|
| 702 |
W:5:50:10:35000 |
|---|
| 703 |
P:1:0d0:0:0:18 |
|---|
| 704 |
F:DEX | CHR | HIDE_TYPE | |
|---|
| 705 |
F:FREE_ACT | RES_ACID | RES_FIRE | RES_COLD | ACTIVATE |
|---|
| 706 |
A:RECHARGE:70 |
|---|
| 707 |
M:Your Cloak glows bright yellow... |
|---|
| 708 |
D:A cloak of translucent, pearly grey, with glowing elven-runes to restore |
|---|
| 709 |
D:magic showing calm and clear as moonlight on still water. |
|---|
| 710 |
|
|---|
| 711 |
|
|---|
| 712 |
N:47:of Thorongil |
|---|
| 713 |
I:cloak:Cloak~:0 |
|---|
| 714 |
W:5:10:10:8000 |
|---|
| 715 |
P:1:0d0:0:0:10 |
|---|
| 716 |
F:FREE_ACT | RES_ACID | RES_FEAR | SEE_INVIS |
|---|
| 717 |
D:This shimmering cloak of greens and browns was once worn by the young |
|---|
| 718 |
D:Aragorn, a keen-eyed captain of Gondor, valiant on both land and sea. |
|---|
| 719 |
|
|---|
| 720 |
|
|---|
| 721 |
N:48:'Colannon' |
|---|
| 722 |
I:cloak:Cloak~:3 |
|---|
| 723 |
W:5:20:10:20000 |
|---|
| 724 |
P:1:0d0:0:0:15 |
|---|
| 725 |
F:STEALTH | SPEED | HIDE_TYPE | |
|---|
| 726 |
F:RES_NEXUS | ACTIVATE |
|---|
| 727 |
A:TELE_LONG:45 |
|---|
| 728 |
M:Your Cloak twists space around you. |
|---|
| 729 |
D:A crystal-blue cape of fine silk worn by a silent messenger of the forces |
|---|
| 730 |
D:of Law. Seldom will the wearer be diverted from his mission. |
|---|
| 731 |
|
|---|
| 732 |
|
|---|
| 733 |
N:49:of Luthien |
|---|
| 734 |
I:cloak:Elven Cloak~:2 |
|---|
| 735 |
W:40:40:5:45000 |
|---|
| 736 |
P:6:0d0:0:0:20 |
|---|
| 737 |
F:INT | WIS | CHR | SPEED | STEALTH | HIDE_TYPE | |
|---|
| 738 |
F:RES_ACID | RES_FIRE | RES_COLD | ACTIVATE |
|---|
| 739 |
A:RESTORE_LIFE:250 |
|---|
| 740 |
M:Your Cloak glows a deep red... |
|---|
| 741 |
D:The opaque midnight folds of this cloak, inset with a multitude of tiny |
|---|
| 742 |
D:diamonds, swirl around you and you feel a hint, a fragment of the |
|---|
| 743 |
D:knowledge and power to restore that lay in Luthien, the most beautiful |
|---|
| 744 |
D:being who ever knew death. |
|---|
| 745 |
|
|---|
| 746 |
|
|---|
| 747 |
N:50:of Tuor |
|---|
| 748 |
I:cloak:Ethereal Cloak~:4 |
|---|
| 749 |
W:40:40:0:35000 |
|---|
| 750 |
P:6:0d0:0:0:12 |
|---|
| 751 |
F:STEALTH | DEX | HIDE_TYPE | |
|---|
| 752 |
F:FREE_ACT | IM_ACID | RES_ACID | SEE_INVIS |
|---|
| 753 |
D:From the ruin of Gondolin did Tuor escape, through secret ways and |
|---|
| 754 |
D:travail, mantled by sea-commanding Ulmo's kingly gift from a multitude |
|---|
| 755 |
D:of hostile eyes. |
|---|
| 756 |
|
|---|
| 757 |
|
|---|
| 758 |
### Gloves and Gauntlets ### |
|---|
| 759 |
|
|---|
| 760 |
N:51:of Eol |
|---|
| 761 |
I:gloves:Set~ of Gauntlets:3 |
|---|
| 762 |
W:55:35:25:40000 |
|---|
| 763 |
P:3:1d1:-5:-5:14 |
|---|
| 764 |
F:INT | FREE_ACT | FEATHER | RES_ELEC | RES_DARK | RES_POIS | AGGRAVATE |
|---|
| 765 |
F:ACTIVATE |
|---|
| 766 |
A:MANA_BOLT:30+d30 |
|---|
| 767 |
M:Your Gauntlets glow white... |
|---|
| 768 |
D:The iron-shod gauntlets of the Dark Elven smith Eol, tingling with magics |
|---|
| 769 |
D:that he could channel in battle. |
|---|
| 770 |
|
|---|
| 771 |
|
|---|
| 772 |
N:52:'Cambeleg' |
|---|
| 773 |
I:gloves:Set~ of Leather Gloves:2 |
|---|
| 774 |
W:10:6:5:36000 |
|---|
| 775 |
P:1:0d0:8:8:15 |
|---|
| 776 |
F:STR | CON | HIDE_TYPE | |
|---|
| 777 |
F:FREE_ACT | SHOW_MODS |
|---|
| 778 |
D:A hero's handgear that lends great prowess in battle. |
|---|
| 779 |
|
|---|
| 780 |
|
|---|
| 781 |
N:53:'Cammithrim' |
|---|
| 782 |
I:gloves:Set~ of Leather Gloves:0 |
|---|
| 783 |
W:10:3:5:30000 |
|---|
| 784 |
P:1:0d0:0:0:10 |
|---|
| 785 |
F:FREE_ACT | RES_LITE | SUST_CON | LITE | ACTIVATE |
|---|
| 786 |
A:MISSILE:2 |
|---|
| 787 |
M:Cammithrim glows very brightly... |
|---|
| 788 |
D:These gloves glow so brightly as to light the way for the player and cast |
|---|
| 789 |
D:magical bolts with great frequency. |
|---|
| 790 |
|
|---|
| 791 |
|
|---|
| 792 |
N:54:'Paurhach' |
|---|
| 793 |
I:gloves:Set~ of Gauntlets:0 |
|---|
| 794 |
W:10:3:25:15000 |
|---|
| 795 |
P:3:1d1:0:0:14 |
|---|
| 796 |
F:RES_FIRE | REGEN | ACTIVATE |
|---|
| 797 |
A:FIRE_BOLT:8+d8 |
|---|
| 798 |
M:Your Gauntlets are covered in fire... |
|---|
| 799 |
D:A set of gauntlets that smoulder with an unnatural heat. |
|---|
| 800 |
|
|---|
| 801 |
|
|---|
| 802 |
N:55:'Paurnimmen' |
|---|
| 803 |
I:gloves:Set~ of Gauntlets:0 |
|---|
| 804 |
W:10:3:25:13000 |
|---|
| 805 |
P:3:1d1:0:0:14 |
|---|
| 806 |
F:RES_COLD | SLOW_DIGEST | ACTIVATE |
|---|
| 807 |
A:COLD_BOLT:7+d7 |
|---|
| 808 |
M:Your Gauntlets are covered in frost... |
|---|
| 809 |
D:A set of handgear, freezing with unnatural cold. |
|---|
| 810 |
|
|---|
| 811 |
|
|---|
| 812 |
N:56:'Pauraegen' |
|---|
| 813 |
I:gloves:Set~ of Gauntlets:0 |
|---|
| 814 |
W:10:3:25:11000 |
|---|
| 815 |
P:3:1d1:0:0:14 |
|---|
| 816 |
F:RES_ELEC | LITE | ACTIVATE |
|---|
| 817 |
A:ELEC_BOLT:6+d6 |
|---|
| 818 |
M:Your Gauntlets are covered in sparks... |
|---|
| 819 |
D:A set of handgear with sparks that crackle across its knuckleguards. |
|---|
| 820 |
|
|---|
| 821 |
|
|---|
| 822 |
N:57:'Paurnen' |
|---|
| 823 |
I:gloves:Set~ of Gauntlets:0 |
|---|
| 824 |
W:10:3:25:12000 |
|---|
| 825 |
P:3:1d1:0:0:14 |
|---|
| 826 |
F:RES_ACID | FEATHER | ACTIVATE |
|---|
| 827 |
A:ACID_BOLT:5+d5 |
|---|
| 828 |
M:Your Gauntlets are covered in acid... |
|---|
| 829 |
D:A set of gauntlets that gives off a foul, acrid odour yet remains untarnished. |
|---|
| 830 |
|
|---|
| 831 |
|
|---|
| 832 |
N:58:'Camlost' |
|---|
| 833 |
I:gloves:Set~ of Gauntlets:-3 |
|---|
| 834 |
W:10:20:25:0 |
|---|
| 835 |
P:3:1d1:-12:-12:0 |
|---|
| 836 |
F:STR | DEX | HIDE_TYPE | |
|---|
| 837 |
F:RES_FIRE | RES_DISEN | FREE_ACT | DRAIN_EXP | |
|---|
| 838 |
F:AGGRAVATE | LIGHT_CURSE | HEAVY_CURSE | SHOW_MODS |
|---|
| 839 |
D:A pair of gauntlets that sap combat ability, named after the empty hand |
|---|
| 840 |
D:of Beren that once clasped a Silmaril. |
|---|
| 841 |
|
|---|
| 842 |
|
|---|
| 843 |
N:59:of Fingolfin |
|---|
| 844 |
I:gloves:Set~ of Caestus:4 |
|---|
| 845 |
W:40:15:40:110000 |
|---|
| 846 |
P:5:1d1:10:10:20 |
|---|
| 847 |
F:DEX | HIDE_TYPE | |
|---|
| 848 |
F:FREE_ACT | RES_ACID | ACTIVATE | SHOW_MODS |
|---|
| 849 |
A:ARROW:30+d30 |
|---|
| 850 |
M:Your Caestus grow magical spikes... |
|---|
| 851 |
D:The hand-sheathing of Fingolfin, warrior-king of Elves and Men, who dealt |
|---|
| 852 |
D:Morgoth seven mighty wounds and pain that will last forever. |
|---|
| 853 |
|
|---|
| 854 |
|
|---|
| 855 |
### Boots ### |
|---|
| 856 |
|
|---|
| 857 |
N:60:of Feanor |
|---|
| 858 |
I:boots:Pair~ of Leather Boots:15 |
|---|
| 859 |
W:40:120:40:300000 |
|---|
| 860 |
P:2:1d1:0:0:20 |
|---|
| 861 |
F:SPEED | HIDE_TYPE | |
|---|
| 862 |
F:RES_NEXUS | ACTIVATE |
|---|
| 863 |
A:HASTE1:200 |
|---|
| 864 |
M:Your Leather Boots glow bright green... |
|---|
| 865 |
D:This wondrous pair of leather boots once sped Feanor, creator of the |
|---|
| 866 |
D:Silmarils and the mightiest of the Eldar, to fulfill his hero's challenge |
|---|
| 867 |
D:and do battle for a Middle-Earth held in thrall. "Dear-bought those songs |
|---|
| 868 |
D:shall be accounted, and yet shall be well-bought. For the price could be |
|---|
| 869 |
D:no other." |
|---|
| 870 |
|
|---|
| 871 |
|
|---|
| 872 |
N:61:'Dal-i-thalion' |
|---|
| 873 |
I:boots:Pair~ of Leather Boots:5 |
|---|
| 874 |
W:10:25:20:40000 |
|---|
| 875 |
P:2:1d1:0:0:15 |
|---|
| 876 |
F:DEX | HIDE_TYPE | |
|---|
| 877 |
F:ACTIVATE | FREE_ACT | |
|---|
| 878 |
F:RES_NETHR | RES_CHAOS | RES_CONFU | SUST_CON |
|---|
| 879 |
A:REM_FEAR_POIS:5 |
|---|
| 880 |
M:Your Soft Leather Boots glow deep blue... |
|---|
| 881 |
D:A pair of high-laced shoes, strong against the powers of corruption and |
|---|
| 882 |
D:withering, that grant the wearer extraordinary agility. |
|---|
| 883 |
|
|---|
| 884 |
|
|---|
| 885 |
N:62:of Thror |
|---|
| 886 |
I:boots:Pair~ of Steel Shod Boots:3 |
|---|
| 887 |
W:30:25:80:12000 |
|---|
| 888 |
P:6:1d1:0:0:20 |
|---|
| 889 |
F:STR | CON | SPEED | HIDE_TYPE | RES_FEAR |
|---|
| 890 |
D:Sturdy footwear of leather and steel as enduring as the long-suffering |
|---|
| 891 |
D:Dwarven king-in-exile who wore them. |
|---|
| 892 |
|
|---|
| 893 |
|
|---|
| 894 |
N:63:of Wormtongue |
|---|
| 895 |
I:boots:Pair~ of Leather Boots:3 |
|---|
| 896 |
W:10:15:20:17000 |
|---|
| 897 |
P:2:1d1:-8:-8:0 |
|---|
| 898 |
F:INT | DEX | STEALTH | SPEED | FEATHER | LIGHT_CURSE | HIDE_TYPE |
|---|
| 899 |
F:ACTIVATE |
|---|
| 900 |
A:TELE_PHASE:20 |
|---|
| 901 |
M:Your Boots twist space around you. |
|---|
| 902 |
D:A pair of running shoes once used by the treacherous Grima son of |
|---|
| 903 |
D:Galmod, the Wormtongue of Edoras. They are aptly suited for a |
|---|
| 904 |
D:messenger, a servant, a spy... or a coward. |
|---|
| 905 |
|
|---|
| 906 |
|
|---|
| 907 |
### Weapons ### |
|---|
| 908 |
|
|---|
| 909 |
### Swords and Daggers ### |
|---|
| 910 |
|
|---|
| 911 |
N:64:of Maedhros |
|---|
| 912 |
I:sword:Main Gauche~:3 |
|---|
| 913 |
W:15:30:30:20000 |
|---|
| 914 |
P:0:2d5:12:15:0 |
|---|
| 915 |
F:INT | DEX | SPEED | HIDE_TYPE | |
|---|
| 916 |
F:SLAY_TROLL | SLAY_GIANT | FREE_ACT | SEE_INVIS | SHOW_MODS |
|---|
| 917 |
D:A short thrusting blade with a large guard worn by Maedhros the Tall, |
|---|
| 918 |
D:eldest son of Feanor, who lost his right hand in captivity in Angband. |
|---|
| 919 |
|
|---|
| 920 |
|
|---|
| 921 |
N:65:'Angrist' |
|---|
| 922 |
I:sword:Dagger~:4 |
|---|
| 923 |
W:20:80:12:100000 |
|---|
| 924 |
P:0:2d4:10:15:5 |
|---|
| 925 |
F:DEX | SPEED | BRAND_ACID | RES_ACID | HIDE_TYPE | |
|---|
| 926 |
F:SLAY_EVIL | SLAY_TROLL | SLAY_ORC | FREE_ACT | RES_DARK | SUST_DEX | |
|---|
| 927 |
F:SHOW_MODS |
|---|
| 928 |
D:Forged from meteoric iron by Telchar, greatest of Dwarven smiths, and |
|---|
| 929 |
D:used by Beren to gouge a Silmaril out of Morgoth's crown, this long |
|---|
| 930 |
D:chopping dagger slices through ordinary metal as easily as its name, |
|---|
| 931 |
D:"Iron Cleaver", suggests. |
|---|
| 932 |
|
|---|
| 933 |
|
|---|
| 934 |
N:66:'Narthanc' |
|---|
| 935 |
I:sword:Dagger~:0 |
|---|
| 936 |
W:4:3:12:12000 |
|---|
| 937 |
P:0:2d4:4:6:0 |
|---|
| 938 |
F:BRAND_FIRE | RES_FIRE | ACTIVATE | SHOW_MODS |
|---|
| 939 |
A:FIRE_BOLT:8+d8 |
|---|
| 940 |
M:Narthanc is covered in fire... |
|---|
| 941 |
D:A flame, instead of a blade, seems to spring forth from this dagger's hilt. |
|---|
| 942 |
|
|---|
| 943 |
|
|---|
| 944 |
N:67:'Nimthanc' |
|---|
| 945 |
I:sword:Dagger~:0 |
|---|
| 946 |
W:4:3:12:11000 |
|---|
| 947 |
P:0:2d4:4:6:0 |
|---|
| 948 |
F:BRAND_COLD | RES_COLD | ACTIVATE | SHOW_MODS |
|---|
| 949 |
A:COLD_BOLT:7+d8 |
|---|
| 950 |
M:Nimthanc is covered in frost... |
|---|
| 951 |
D:From the hilt of this dagger springs not so much a blade as an icicle. |
|---|
| 952 |
|
|---|
| 953 |
|
|---|
| 954 |
N:68:'Dethanc' |
|---|
| 955 |
I:sword:Dagger~:0 |
|---|
| 956 |
W:4:3:12:13000 |
|---|
| 957 |
P:0:2d4:4:6:0 |
|---|
| 958 |
F:BRAND_ELEC | RES_ELEC | ACTIVATE | SHOW_MODS |
|---|
| 959 |
A:ELEC_BOLT:6+d6 |
|---|
| 960 |
M:Dethanc is covered in sparks... |
|---|
| 961 |
D:In this dagger is bound the very force of the lightning. |
|---|
| 962 |
|
|---|
| 963 |
|
|---|
| 964 |
N:69:of Rilia |
|---|
| 965 |
I:sword:Dagger~:0 |
|---|
| 966 |
W:5:40:12:15000 |
|---|
| 967 |
P:0:2d4:4:3:0 |
|---|
| 968 |
F:SLAY_ORC | BRAND_POIS | RES_POIS | RES_DISEN | ACTIVATE | SHOW_MODS |
|---|
| 969 |
A:STINKING_CLOUD:4+d4 |
|---|
| 970 |
M:The Dagger of Rilia throws deep green... |
|---|
| 971 |
D:A large stiletto dagger that glistens with odorless poison, to which the |
|---|
| 972 |
D:wearer seems oddly immune. |
|---|
| 973 |
|
|---|
| 974 |
|
|---|
| 975 |
N:70:'Belangil' |
|---|
| 976 |
I:sword:Dagger~:2 |
|---|
| 977 |
W:10:40:12:40000 |
|---|
| 978 |
P:0:2d4:6:9:0 |
|---|
| 979 |
F:DEX | HIDE_TYPE | |
|---|
| 980 |
F:BRAND_COLD | RES_COLD | SEE_INVIS | SLOW_DIGEST | REGEN | ACTIVATE | |
|---|
| 981 |
F:SHOW_MODS |
|---|
| 982 |
A:COLD_BALL50:5+d5 |
|---|
| 983 |
M:Your Dagger is covered in frost... |
|---|
| 984 |
D:A frosty dagger wreathed in a nimbus of ice with a hilt of elk horn and |
|---|
| 985 |
D:an edge to wound the wind. |
|---|
| 986 |
|
|---|
| 987 |
|
|---|
| 988 |
N:71:'Calris' |
|---|
| 989 |
I:sword:Bastard Sword~:5 |
|---|
| 990 |
W:30:15:140:100000 |
|---|
| 991 |
P:0:5d4:-20:20:0 |
|---|
| 992 |
# F:DRAIN_HP | |
|---|
| 993 |
F:CON | HIDE_TYPE | |
|---|
| 994 |
F:KILL_DRAGON | SLAY_EVIL | SLAY_DEMON | SLAY_TROLL | RES_DISEN | |
|---|
| 995 |
F:AGGRAVATE | LIGHT_CURSE | HEAVY_CURSE | SHOW_MODS |
|---|
| 996 |
D:This sword has runes of power incused on its ornate hint, and a single |
|---|
| 997 |
D:blood channel that gleams coldly blue as you grasp this mighty weapon of |
|---|
| 998 |
D:peril. |
|---|
| 999 |
|
|---|
| 1000 |
|
|---|
| 1001 |
N:72:'Arunruth' |
|---|
| 1002 |
I:sword:Broad Sword~:4 |
|---|
| 1003 |
W:20:45:150:50000 |
|---|
| 1004 |
P:0:3d5:20:12:0 |
|---|
| 1005 |
F:DEX | HIDE_TYPE | |
|---|
| 1006 |
F:SLAY_DEMON | SLAY_ORC | FREE_ACT | RES_COLD | FEATHER | |
|---|
| 1007 |
F:SLOW_DIGEST | ACTIVATE | SHOW_MODS |
|---|
| 1008 |
A:COLD_BOLT2:50 |
|---|
| 1009 |
M:Arunuth glows a pale blue... |
|---|
| 1010 |
D:The beautiful sword of Thingol, justly named "King's Ire". It glistens |
|---|
| 1011 |
D:icy enough to freeze the hearts of demons, and you feel supple and |
|---|
| 1012 |
D:lightfooted as you clasp its hilt of gold and silver inlay. |
|---|
| 1013 |
|
|---|
| 1014 |
|
|---|
| 1015 |
N:73:'Glamdring' |
|---|
| 1016 |
I:sword:Broad Sword~:1 |
|---|
| 1017 |
W:20:20:150:40000 |
|---|
| 1018 |
P:0:2d5:10:15:0 |
|---|
| 1019 |
F:SEARCH | HIDE_TYPE | BLESSED | LITE | |
|---|
| 1020 |
F:SLAY_EVIL | BRAND_FIRE | SLAY_ORC | SLAY_DEMON | RES_FIRE | RES_LITE | |
|---|
| 1021 |
F:SLOW_DIGEST | SHOW_MODS |
|---|
| 1022 |
D:This fiery, shining blade, mate to Orcrist, earned its sobriquet "Beater" |
|---|
| 1023 |
D:from dying orcs who dared to behold hidden Gondolin. |
|---|
| 1024 |
|
|---|
| 1025 |
|
|---|
| 1026 |
N:74:'Aeglin' |
|---|
| 1027 |
I:sword:Broad Sword~:1 |
|---|
| 1028 |
W:20:30:150:45000 |
|---|
| 1029 |
P:0:2d5:12:16:0 |
|---|
| 1030 |
F:SEARCH | HIDE_TYPE | BLESSED | LITE | |
|---|
| 1031 |
F:SLAY_ORC | SLAY_TROLL | SLAY_GIANT | BRAND_ELEC | RES_ELEC | RES_BLIND | |
|---|
| 1032 |
F:SLOW_DIGEST | SHOW_MODS |
|---|
| 1033 |
D:Like unto Orcrist and Glamdring, and like them long lost, this sword is |
|---|
| 1034 |
D:continually coved in tiny arcs of captive lightning that flash and dance |
|---|
| 1035 |
D:eerily in the globes of light they create. |
|---|
| 1036 |
|
|---|
| 1037 |
|
|---|
| 1038 |
N:75:'Orcrist' |
|---|
| 1039 |
I:sword:Broad Sword~:3 |
|---|
| 1040 |
W:20:20:150:40000 |
|---|
| 1041 |
P:0:2d5:10:15:0 |
|---|
| 1042 |
F:SEARCH | HIDE_TYPE | BLESSED | LITE | |
|---|
| 1043 |
F:SLAY_EVIL | BRAND_COLD | SLAY_ORC | SLAY_DRAGON | RES_COLD | RES_DARK | |
|---|
| 1044 |
F:SLOW_DIGEST | SHOW_MODS |
|---|
| 1045 |
D:This coldly gleaming blade, mate to Glamdring, is called simply "Biter" |
|---|
| 1046 |
D:by orcs who came to know its power all too well. |
|---|
| 1047 |
|
|---|
| 1048 |
|
|---|
| 1049 |
N:76:'Gurthang' |
|---|
| 1050 |
I:sword:Zweihander~:2 |
|---|
| 1051 |
W:30:30:200:100000 |
|---|
| 1052 |
P:0:3d6:13:17:0 |
|---|
| 1053 |
F:STR | HIDE_TYPE | RES_FIRE | RES_POIS | |
|---|
| 1054 |
F:BRAND_FIRE | BRAND_POIS | |
|---|
| 1055 |
F:KILL_DRAGON | FREE_ACT | SLOW_DIGEST | REGEN | SHOW_MODS |
|---|
| 1056 |
D:A giant sword once wielded by mighty Turin, and an even greater dragonbane; |
|---|
| 1057 |
D:for what wyrm could stand against the blade that bathed in Glaurung's |
|---|
| 1058 |
D:blood? |
|---|
| 1059 |
|
|---|
| 1060 |
|
|---|
| 1061 |
N:77:'Zarcuthra' |
|---|
| 1062 |
I:sword:Zweihander~:4 |
|---|
| 1063 |
W:30:180:250:200000 |
|---|
| 1064 |
P:0:4d6:19:21:0 |
|---|
| 1065 |
# F:DRAIN_MANA | |
|---|
| 1066 |
F:STR | CHR | INFRA | HIDE_TYPE | |
|---|
| 1067 |
F:KILL_DRAGON | SLAY_ANIMAL | SLAY_EVIL | BRAND_FIRE | |
|---|
| 1068 |
F:SLAY_UNDEAD | SLAY_DEMON | SLAY_TROLL | SLAY_GIANT | SLAY_ORC | |
|---|
| 1069 |
F:RES_FIRE | RES_CHAOS | FREE_ACT | SEE_INVIS | AGGRAVATE | SHOW_MODS |
|---|
| 1070 |
D:Runes dark and deadly stand stark against the naked steel of this awesome |
|---|
| 1071 |
D:weapon, and you feel a wrathful power of slaying and rending as you |
|---|
| 1072 |
D:slowly approach. |
|---|
| 1073 |
|
|---|
| 1074 |
|
|---|
| 1075 |
N:78:'Mormegil' |
|---|
| 1076 |
I:sword:Zweihander~:-10 |
|---|
| 1077 |
W:30:15:250:10000 |
|---|
| 1078 |
P:0:3d6:-15:-15:-10 |
|---|
| 1079 |
# F:DRAIN_HP | DRAIN_MANA | |
|---|
| 1080 |
F:BRAND_POIS | KILL_DRAGON | SLAY_UNDEAD | |
|---|
| 1081 |
F:SPEED | HIDE_TYPE | SEE_INVIS | HOLD_LIFE | SHOW_MODS | |
|---|
| 1082 |
F:AGGRAVATE | DRAIN_EXP | LIGHT_CURSE | HEAVY_CURSE |
|---|
| 1083 |
D:A foul, twisted sword with blackened spines and knobs, whose very name is |
|---|
| 1084 |
D:a curse upon the lips of Elves and Men. It is said that it will drink the |
|---|
| 1085 |
D:very lifeblood of its wielder. |
|---|
| 1086 |
|
|---|
| 1087 |
|
|---|
| 1088 |
N:79:'Gondricam' |
|---|
| 1089 |
I:sword:Cutlass~:3 |
|---|
| 1090 |
W:20:8:110:28000 |
|---|
| 1091 |
P:0:1d8:10:11:0 |
|---|
| 1092 |
F:DEX | STEALTH | HIDE_TYPE | |
|---|
| 1093 |
F:RES_ACID | RES_ELEC | RES_FIRE | RES_COLD | FEATHER | |
|---|
| 1094 |
F:SEE_INVIS | REGEN | SHOW_MODS |
|---|
| 1095 |
D:Famed sea-defender of Lebennin. A short, slightly curved chopping blade |
|---|
| 1096 |
D:with a perfect edge shining cleanly in the sun, an object of hate to the |
|---|
| 1097 |
D:men of Umbar who met it in combat. |
|---|
| 1098 |
|
|---|
| 1099 |
|
|---|
| 1100 |
N:80:'Crisdurian' |
|---|
| 1101 |
I:sword:Executioner's Sword~:0 |
|---|
| 1102 |
W:40:25:260:100000 |
|---|
| 1103 |
P:0:4d5:18:19:0 |
|---|
| 1104 |
F:SLAY_DRAGON | SLAY_EVIL | SLAY_UNDEAD | SLAY_TROLL | SLAY_GIANT | |
|---|
| 1105 |
F:SLAY_ORC | SEE_INVIS | SHOW_MODS |
|---|
| 1106 |
D:A giant's weapon, with a long blade tall and straight thrusting out from a |
|---|
| 1107 |
D:massive double-pronged hilt. On its blade are written doomspells against |
|---|
| 1108 |
D:both the living and undead. |
|---|
| 1109 |
|
|---|
| 1110 |
|
|---|
| 1111 |
N:81:'Aglarang' |
|---|
| 1112 |
I:sword:Katana~:5 |
|---|
| 1113 |
W:30:25:50:40000 |
|---|
| 1114 |
P:0:8d4:0:0:0 |
|---|
| 1115 |
F:DEX | SPEED | HIDE_TYPE | |
|---|
| 1116 |
F:SUST_DEX | SHOW_MODS |
|---|
| 1117 |
D:An utterly perfect, cleanly chiseled sword, with a edge that effortlessly |
|---|
| 1118 |
D:slices rock and bone and spells to render the wearer lithe and nimble. It |
|---|
| 1119 |
D:is combat incarnate. |
|---|
| 1120 |
|
|---|
| 1121 |
|
|---|
| 1122 |
N:82:'Ringil' |
|---|
| 1123 |
I:sword:Long Sword~:10 |
|---|
| 1124 |
W:20:120:130:300000 |
|---|
| 1125 |
P:0:4d5:22:25:0 |
|---|
| 1126 |
F:SPEED | RES_FEAR | BLESSED | |
|---|
| 1127 |
F:SLAY_EVIL | BRAND_COLD | SLAY_UNDEAD | KILL_DEMON | SLAY_TROLL | |
|---|
| 1128 |
F:FREE_ACT | RES_COLD | RES_LITE | LITE | SEE_INVIS | SLOW_DIGEST | REGEN | |
|---|
| 1129 |
F:ACTIVATE | SHOW_MODS |
|---|
| 1130 |
A:COLD_BALL100:40 |
|---|
| 1131 |
M:Ringil glows an intense blue... |
|---|
| 1132 |
D:The weapon of Fingolfin, High King of the Noldor; it shines like a column |
|---|
| 1133 |
D:of ice lit by light unquenchable. Morgoth came but unwillingly to meet it |
|---|
| 1134 |
D:of old; his lame foot will remind him of its might should he face it again. |
|---|
| 1135 |
|
|---|
| 1136 |
|
|---|
| 1137 |
N:83:'Anduril' |
|---|
| 1138 |
I:sword:Long Sword~:4 |
|---|
| 1139 |
W:20:40:130:80000 |
|---|
| 1140 |
P:0:3d5:10:15:10 |
|---|
| 1141 |
F:STR | DEX | HIDE_TYPE | RES_FEAR | FREE_ACT | BLESSED | |
|---|
| 1142 |
F:SLAY_EVIL | BRAND_FIRE | SLAY_TROLL | SLAY_ORC | SLAY_UNDEAD | |
|---|
| 1143 |
F:RES_FIRE | RES_DISEN | |
|---|
| 1144 |
F:SUST_STR | SUST_DEX | SEE_INVIS | ACTIVATE | SHOW_MODS |
|---|
| 1145 |
A:FIRE_BOLT72:40 |
|---|
| 1146 |
M:Anduril rages in fire... |
|---|
| 1147 |
D:The famed "Flame of the West", the Sword that was Broken and is forged |
|---|
| 1148 |
D:again. It glows with the essence of fire, its wearer is mighty in combat, |
|---|
| 1149 |
D:and no creature of Sauron can withstand it. |
|---|
| 1150 |
|
|---|
| 1151 |
|
|---|
| 1152 |
N:84:'Anguirel' |
|---|
| 1153 |
I:sword:Long Sword~:2 |
|---|
| 1154 |
W:20:30:130:40000 |
|---|
| 1155 |
P:0:2d5:8:12:0 |
|---|
| 1156 |
F:STR | CON | SPEED | HIDE_TYPE | AGGRAVATE | |
|---|
| 1157 |
F:SLAY_EVIL | BRAND_POIS | SLAY_DEMON | FREE_ACT | RES_ELEC | |
|---|
| 1158 |
F:RES_LITE | RES_DARK | LITE | SEE_INVIS | SHOW_MODS |
|---|
| 1159 |
D:Forged of black galvorn by the Dark-Elven smith Eol, and as deadly as any |
|---|
| 1160 |
D:other blade he forged. |
|---|
| 1161 |
|
|---|
| 1162 |
|
|---|
| 1163 |
N:85:'Elvagil' |
|---|
| 1164 |
I:sword:Long Sword~:2 |
|---|
| 1165 |
W:20:8:130:30000 |
|---|
| 1166 |
P:0:2d5:2:7:0 |
|---|
| 1167 |
F:DEX | CHR | STEALTH | HIDE_TYPE | |
|---|
| 1168 |
F:SLAY_TROLL | SLAY_ORC | FEATHER | SEE_INVIS | SHOW_MODS |
|---|
| 1169 |
D:The "Singing Blade", whose wearer can slay Orcs and Trolls in the hidden |
|---|
| 1170 |
D:and secret places of the earth. |
|---|
| 1171 |
|
|---|
| 1172 |
|
|---|
| 1173 |
N:86:'Forasgil' |
|---|
| 1174 |
I:sword:Rapier~:0 |
|---|
| 1175 |
W:15:8:40:15000 |
|---|
| 1176 |
P:0:1d6:12:19:0 |
|---|
| 1177 |
F:SLAY_ANIMAL | BRAND_COLD | RES_COLD | RES_LITE | LITE | SHOW_MODS |
|---|
| 1178 |
D:A slender, tapered needle of ice that coldly grips its impaled prey. |
|---|
| 1179 |
|
|---|
| 1180 |
|
|---|
| 1181 |
N:87:'Careth Asdriag' |
|---|
| 1182 |
I:sword:Rapier~:1 |
|---|
| 1183 |
W:15:8:40:25000 |
|---|
| 1184 |
P:0:1d6:6:9:0 |
|---|
| 1185 |
F:BLOWS | HIDE_TYPE | |
|---|
| 1186 |
F:SLAY_DRAGON | SLAY_ANIMAL | SLAY_TROLL | SLAY_GIANT | |
|---|
| 1187 |
F:SLAY_ORC | SHOW_MODS |
|---|
| 1188 |
D:An heirloom of the dauntless Lords of Rhun far to the east, and a name |
|---|
| 1189 |
D:of dismay to creatures natural and unnatural. |
|---|
| 1190 |
|
|---|
| 1191 |
|
|---|
| 1192 |
N:88:'Sting' |
|---|
| 1193 |
I:sword:Short Sword~:2 |
|---|
| 1194 |
W:20:15:75:100000 |
|---|
| 1195 |
P:0:1d6:7:8:0 |
|---|
| 1196 |
F:STR | DEX | CON | BLOWS | SPEED | HIDE_TYPE | RES_FEAR | |
|---|
| 1197 |
F:SLAY_EVIL | SLAY_UNDEAD | SLAY_ORC | SLAY_ANIMAL | |
|---|
| 1198 |
F:FREE_ACT | RES_LITE | LITE | SEE_INVIS | SHOW_MODS |
|---|
| 1199 |
D:"I will give you a name, and I shall call you Sting." The perfect size |
|---|
| 1200 |
D:for Bilbo, and stamped forever by the courage he found in Mirkwood, this |
|---|
| 1201 |
D:sturdy little blade grants the wearer combat prowess and survival |
|---|
| 1202 |
D:abilities he did not know he had. |
|---|
| 1203 |
|
|---|
| 1204 |
|
|---|
| 1205 |
N:89:'Haradekket' |
|---|
| 1206 |
I:sword:Scimitar~:2 |
|---|
| 1207 |
W:20:15:130:30000 |
|---|
| 1208 |
P:0:4d2:9:11:0 |
|---|
| 1209 |
F:DEX | BLOWS | HIDE_TYPE | |
|---|
| 1210 |
F:SLAY_ANIMAL | SLAY_EVIL | SLAY_UNDEAD | SEE_INVIS | |
|---|
| 1211 |
F:SHOW_MODS |
|---|
| 1212 |
D:A damascened scimitar that hefts with wondrous ease. Famed in song |
|---|
| 1213 |
D:as the "Sickle of Harad", and a deadly foe to the undead. |
|---|
| 1214 |
|
|---|
| 1215 |
|
|---|
| 1216 |
N:90:'Dagmor' |
|---|
| 1217 |
I:sword:Short Sword~:2 |
|---|
| 1218 |
W:20:8:80:15000 |
|---|
| 1219 |
P:0:1d7:3:7:0 |
|---|
| 1220 |
F:BLOWS | HIDE_TYPE | BRAND_POIS | |
|---|
| 1221 |
F:SLAY_ANIMAL | SLOW_DIGEST | REGEN | SHOW_MODS |
|---|
| 1222 |
D:A stubby blade worn by Beren, whose horn sounded of old in the glades of |
|---|
| 1223 |
D:Brethil. |
|---|
| 1224 |
|
|---|
| 1225 |
|
|---|
| 1226 |
N:91:'Doomcaller' |
|---|
| 1227 |
I:sword:Blade~ of Chaos:0 |
|---|
| 1228 |
W:70:25:180:200000 |
|---|
| 1229 |
P:0:6d5:18:28:-50 |
|---|
| 1230 |
# F:DRAIN_HP | |
|---|
| 1231 |
F:KILL_DRAGON | SLAY_ANIMAL | SLAY_EVIL | BRAND_COLD | SLAY_TROLL | |
|---|
| 1232 |
F:SLAY_DEMON | FREE_ACT | RES_ACID | RES_ELEC | RES_FIRE | RES_COLD | |
|---|
| 1233 |
F:RES_CHAOS | SEE_INVIS | TELEPATHY | AGGRAVATE | SHOW_MODS |
|---|
| 1234 |
D:This weapon of wrath, wrought by a desperate berserker gang, dives hungrily |
|---|
| 1235 |
D:into the yielding flesh of your enemies. You yourself fall under the |
|---|
| 1236 |
D:shadow of death even as you inflict wounds that will not heal. |
|---|
| 1237 |
|
|---|
| 1238 |
|
|---|
| 1239 |
### Polearms ### |
|---|
| 1240 |
|
|---|
| 1241 |
N:92:of Melkor |
|---|
| 1242 |
I:polearm:Spear~:-4 |
|---|
| 1243 |
W:65:45:200:100000 |
|---|
| 1244 |
P:0:4d6:-12:20:0 |
|---|
| 1245 |
# F:DRAIN_MANA | DRAIN_HP | |
|---|
| 1246 |
F:STEALTH | WIS | LIGHT_CURSE | HEAVY_CURSE | DRAIN_EXP | AGGRAVATE | |
|---|
| 1247 |
F:BRAND_POIS | RES_DARK | RES_BLIND | RES_LITE | RES_NETHR |
|---|
| 1248 |
D:A mighty, heavy black spear, once wielded by the Lord of Darkness |
|---|
| 1249 |
D:himself as he came to Valinor in wrath. Its envenomed bite pierced |
|---|
| 1250 |
D:the Two Trees with wounds that would not heal. |
|---|
| 1251 |
|
|---|
| 1252 |
|
|---|
| 1253 |
N:93:of Theoden |
|---|
| 1254 |
I:polearm:Beaked Axe~:3 |
|---|
| 1255 |
W:20:15:180:40000 |
|---|
| 1256 |
P:0:2d6:8:10:0 |
|---|
| 1257 |
F:WIS | CON | HIDE_TYPE | |
|---|
| 1258 |
F:SLAY_DRAGON | TELEPATHY | SLOW_DIGEST | ACTIVATE | SHOW_MODS |
|---|
| 1259 |
A:DRAIN_LIFE2:40 |
|---|
| 1260 |
M:Your Beaked Axe glows black... |
|---|
| 1261 |
D:The narrow axe head of this weapon would pierce the armour of a very |
|---|
| 1262 |
D:Dragon, and the designs of your enemies stand naked and revealed. |
|---|
| 1263 |
|
|---|
| 1264 |
|
|---|
| 1265 |
N:94:of Pain |
|---|
| 1266 |
I:polearm:Glaive~:0 |
|---|
| 1267 |
W:30:25:300:50000 |
|---|
| 1268 |
P:0:9d6:0:30:0 |
|---|
| 1269 |
F:SHOW_MODS | RES_FEAR |
|---|
| 1270 |
D:The massive cleaver that crowns this glaive glows blood-red and black; |
|---|
| 1271 |
D:fell spells of annihilation swirl and dance as you swing death's myrmidon |
|---|
| 1272 |
D:down. |
|---|
| 1273 |
|
|---|
| 1274 |
|
|---|
| 1275 |
N:95:'Osondir' |
|---|
| 1276 |
I:polearm:Halberd~:3 |
|---|
| 1277 |
W:20:8:190:22000 |
|---|
| 1278 |
P:0:3d5:6:9:0 |
|---|
| 1279 |
F:CHR | HIDE_TYPE | |
|---|
| 1280 |
F:BRAND_FIRE | SLAY_UNDEAD | SLAY_GIANT | RES_FIRE | RES_SOUND | |
|---|
| 1281 |
F:FEATHER | SEE_INVIS | SHOW_MODS |
|---|
| 1282 |
D:Lordly and tall did Osondir stand against the wrath of giants, and |
|---|
| 1283 |
D:clear-eyed in barrows fell, wielding a halberd glowing ruby red. |
|---|
| 1284 |
|
|---|
| 1285 |
|
|---|
| 1286 |
N:96:'Til-i-arc' |
|---|
| 1287 |
I:polearm:Pike~:2 |
|---|
| 1288 |
W:20:15:160:32000 |
|---|
| 1289 |
P:0:2d5:10:12:10 |
|---|
| 1290 |
F:INT | HIDE_TYPE | |
|---|
| 1291 |
F:BRAND_COLD | BRAND_FIRE | SLAY_DEMON | SLAY_TROLL | SLAY_GIANT | |
|---|
| 1292 |
F:RES_FIRE | RES_COLD | SUST_INT | SLOW_DIGEST | SHOW_MODS |
|---|
| 1293 |
D:Within this long two-handed spear dwell the spirits of frost giants and |
|---|
| 1294 |
D:fire demons, who war forever, fettered in sorcerous binds. |
|---|
| 1295 |
|
|---|
| 1296 |
|
|---|
| 1297 |
N:97:'Aeglos' |
|---|
| 1298 |
I:polearm:Spear~:4 |
|---|
| 1299 |
W:15:45:50:140000 |
|---|
| 1300 |
P:0:3d6:15:25:5 |
|---|
| 1301 |
F:WIS | DEX | HIDE_TYPE | RES_FEAR | |
|---|
| 1302 |
F:BRAND_COLD | RES_COLD | SLAY_EVIL | SLAY_TROLL | SLAY_ORC | KILL_UNDEAD | |
|---|
| 1303 |
F:FREE_ACT | SLOW_DIGEST | ACTIVATE | BLESSED | SHOW_MODS |
|---|
| 1304 |
A:COLD_BALL100:35 |
|---|
| 1305 |
M:Aeglos glows an intense blue... |
|---|
| 1306 |
D:The mighty spear of Gil-galad, famed as "Snow-point" in the songs of Elves, |
|---|
| 1307 |
D:against which all the foul corruptions of Sauron dashed in vain. |
|---|
| 1308 |
|
|---|
| 1309 |
|
|---|
| 1310 |
N:98:of Orome |
|---|
| 1311 |
I:polearm:Spear~:4 |
|---|
| 1312 |
W:15:45:50:60000 |
|---|
| 1313 |
P:0:4d6:15:15:0 |
|---|
| 1314 |
# F:DRAIN_MANA | |
|---|
| 1315 |
F:INT | SPEED | INFRA | HIDE_TYPE | |
|---|
| 1316 |
F:BRAND_FIRE | SLAY_GIANT | SLAY_ANIMAL | RES_FIRE | RES_LITE | |
|---|
| 1317 |
F:FEATHER | LITE | SEE_INVIS | ACTIVATE | BLESSED | SHOW_MODS |
|---|
| 1318 |
A:STONE_TO_MUD:5 |
|---|
| 1319 |
M:Your Spear pulsates... |
|---|
| 1320 |
D:The thrusting spear of wise Orome the Vala, strong against giants of frost, |
|---|
| 1321 |
D:and able to pierce rock or flesh with ease. |
|---|
| 1322 |
|
|---|
| 1323 |
|
|---|
| 1324 |
N:99:'Nimloth' |
|---|
| 1325 |
I:polearm:Spear~:3 |
|---|
| 1326 |
W:15:12:50:30000 |
|---|
| 1327 |
P:0:1d6:11:13:0 |
|---|
| 1328 |
F:STEALTH | SPEED | HIDE_TYPE | BLESSED | |
|---|
| 1329 |
F:BRAND_COLD | SLAY_UNDEAD | RES_COLD | SEE_INVIS | SHOW_MODS |
|---|
| 1330 |
D:A thin spike of thrice-forged steel caps a straight silvan shaft cut from |
|---|
| 1331 |
D:a legendary tree, and spells to break the wills of the undead and strike |
|---|
| 1332 |
D:cold into the breasts of your enemies lay upon this perfectly balanced |
|---|
| 1333 |
D:spear. |
|---|
| 1334 |
|
|---|
| 1335 |
|
|---|
| 1336 |
N:100:of Eorlingas |
|---|
| 1337 |
I:polearm:Lance~:2 |
|---|
| 1338 |
W:20:23:360:55000 |
|---|
| 1339 |
P:0:3d8:13:21:0 |
|---|
| 1340 |
F:STR | DEX | SPEED | HIDE_TYPE | RES_FEAR | |
|---|
| 1341 |
F:SLAY_EVIL | SLAY_TROLL | SLAY_ORC | SEE_INVIS | SHOW_MODS |
|---|
| 1342 |
D:"Forth Eorlingas!" To the field of Cormallen Eorl the Young came beyond |
|---|
| 1343 |
D:hope to save beleaguered Gondor, and from his lance fled massive trolls |
|---|
| 1344 |
D:and dire wolves. |
|---|
| 1345 |
|
|---|
| 1346 |
|
|---|
| 1347 |
N:101:of Durin |
|---|
| 1348 |
I:polearm:Great Axe~:3 |
|---|
| 1349 |
W:30:90:230:150000 |
|---|
| 1350 |
P:0:4d4:10:20:15 |
|---|
| 1351 |
F:STR | CON | TUNNEL | HIDE_TYPE | BRAND_ACID | BRAND_FIRE | |
|---|
| 1352 |
F:KILL_DRAGON | SLAY_DEMON | SLAY_TROLL | SLAY_ORC | FREE_ACT | |
|---|
| 1353 |
F:RES_CONFU | RES_FEAR | |
|---|
| 1354 |
F:RES_ACID | RES_FIRE | RES_LITE | RES_DARK | RES_CHAOS | SHOW_MODS |
|---|
| 1355 |
D:The twin massive axe heads of this ancient demon's dread gleam with |
|---|
| 1356 |
D:mithril inlay, which tell sagas of endurance, invoking the powers of |
|---|
| 1357 |
D:Kazad-dum to protect the wearer and slay all evils found underground. |
|---|
| 1358 |
|
|---|
| 1359 |
|
|---|
| 1360 |
N:102:of Eonwe |
|---|
| 1361 |
I:polearm:Great Axe~:2 |
|---|
| 1362 |
W:30:120:230:200000 |
|---|
| 1363 |
P:0:5d4:15:18:8 |
|---|
| 1364 |
F:STR | INT | WIS | DEX | CON | CHR | HIDE_TYPE | RES_FEAR | |
|---|
| 1365 |
F:SLAY_EVIL | BRAND_COLD | SLAY_UNDEAD | KILL_DEMON | |
|---|
| 1366 |
F:SLAY_ORC | FREE_ACT | IM_COLD | RES_COLD | |
|---|
| 1367 |
F:SEE_INVIS | ACTIVATE | |
|---|
| 1368 |
F:BLESSED | SHOW_MODS |
|---|
| 1369 |
A:LOSKILL:1000 |
|---|
| 1370 |
M:Your Greate Axe lets out a long, shrill note... |
|---|
| 1371 |
D:The axe of Eonwe, leader of the Hosts of the West before the gates of |
|---|
| 1372 |
D:Thangorodrim, strikes with icy wrath at the undead, disperses hosts of |
|---|
| 1373 |
D:evil at a word, and grants Maia-like powers of body and mind. |
|---|
| 1374 |
|
|---|
| 1375 |
|
|---|
| 1376 |
N:103:of Balli Stonehand |
|---|
| 1377 |
I:polearm:Battle Axe~:3 |
|---|
|
|---|