ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/lib/artifacts
(Generate patch)

Comparing deliantra/server/lib/artifacts (file contents):
Revision 1.3 by root, Tue Jul 11 12:14:17 2006 UTC vs.
Revision 1.14 by root, Sat Mar 27 01:21:57 2010 UTC

1# List of artifact modifiers 1# List of artifact modifiers
2# 2#
3# Note: 3# Note:
4# Attributes (str, dex, etc) are modifiers to the previous 4# Attributes (str, dex, etc) are modifiers to the previous
5# value - positive will increase it by that much, negative 5# value - positive will increase it by that much, negative
6# will decrease it. 6# will decrease it.
7# 7#
8# cursed and damned flags will make the object cursed/damned. 8# cursed and damned flags will make the object cursed/damned.
9# no way to remove cursed/damnedness right now. If the 9# no way to remove cursed/damnedness right now. If the
10# object is cursed, the present magic value will become 10# object is cursed, the present magic value will become
11# negative (ie, a +1 sword will become -1 cursed.) 11# negative (ie, a +1 sword will become -1 cursed.)
12# 12#
13# immune, protected, vulnerable, path_attuned, path_denied, 13# immune, protected, vulnerable, path_attuned, path_denied,
14# path_repelled values are OR'd to existing values. 14# path_repelled values are OR'd to existing values.
15# 15#
16# luck,exp, wc and ac increase the value by that amount (which means 16# luck,exp, wc and ac increase the value by that amount (which means
17# a negative value will decrease the value) 17# a negative value will decrease the value)
18# 18#
19# lifesave, reflect_spell, reflect_missile, stealth, xrays, 19# lifesave, reflect_spell, reflect_missile, stealth, xrays,
20# and make_invisible invisible sets the appropriate value 20# and make_invisible invisible sets the appropriate value
21# in the new artifact. No way to remove these abilities. 21# in the new artifact. No way to remove these abilities.
22# 22#
23# if stand_still is set, the object will not be animated 23# if stand_still is set, the object will not be animated
24# (useful if giving an artifact a new image when the object 24# (useful if giving an artifact a new image when the object
25# it is being created from is animated. 25# it is being created from is animated.
26# 26#
27# nrof is the number of object to be created. A range 27# nrof is the number of object to be created. A range
28# of 1-nrof of objects will be created. If 0, then the 28# of 1-nrof of objects will be created. If 0, then the
29# default number will be used instead. 29# default number will be used instead.
30# 30#
31# hp, maxhp, sp, maxsp, food, level have this: If the value is 31# hp, maxhp, sp, maxsp, food, level have this: If the value is
32# positive, it is increased by that amount. If negative, the 32# positive, it is increased by that amount. If negative, the
33# artifact is created with that value absolute (ie, hp -5 33# artifact is created with that value absolute (ie, hp -5
34# will create and artifact with hp value of 5) 34# will create and artifact with hp value of 5)
35# 35#
36# dam: If negative, absolute value is used (as in 36# dam: If negative, absolute value is used (as in
37# hp, maxhp, etc above). If positive, it acts as a percentage 37# hp, maxhp, etc above). If positive, it acts as a percentage
38# in increments of 10 (a value of 10 has the normal value, 5 38# in increments of 10 (a value of 10 has the normal value, 5
39# would be half normal, 20 twice, etc. 39# would be half normal, 20 twice, etc.
40# 40#
41# weight, last_sp, gen_sp_armour is in percent (200% would 41# weight, last_sp, gen_sp_armour is in percent (200% would
42# be twice normal, 50% half of normal). Negative values 42# be twice normal, 50% half of normal). Negative values
43# work the same as armour and dam. 43# work the same as armour and dam.
44# 44#
45# 'value' is a multiplier to the previous value (value 10 45# 'value' is a multiplier to the previous value (value 10
46# means the object is worth 10 times normal) 46# means the object is worth 10 times normal)
47# 47#
49# replace exiting values. 49# replace exiting values.
50# 50#
51# magic is the mininum magic for an item to become that artifact. 51# magic is the mininum magic for an item to become that artifact.
52# 52#
53# item_power is the additional number of enchantments to count for 53# item_power is the additional number of enchantments to count for
54# this item. This can be negative. Note that this information is 54# this item. This can be negative. Note that this information is
55# only relevant for equipment that is applied for long periods of time. 55# only relevant for equipment that is applied for long periods of time.
56# I've made a quick pass through this file and put in item_power 56# I've made a quick pass through this file and put in item_power
57# values, but these almost certainly need to be refined. 57# values, but these almost certainly need to be refined.
58# 58#
59# If the value is not described above, changing it probably is 59# If the value is not described above, changing it probably is
61# 61#
62# This file has been changed around in 0.91.1 to allow better 62# This file has been changed around in 0.91.1 to allow better
63# control of probability and creation conditions. 63# control of probability and creation conditions.
64# 64#
65# Allowed is followed with a comma seperated list of items that 65# Allowed is followed with a comma seperated list of items that
66# that artifact is allowed for. a ! can precede the object name, 66# that artifact is allowed for. A ! can precede the object name,
67# to mean that the object is allowed for all objects except those with 67# to mean that the object is allowed for all objects except those with
68# that name. The name will be matched to either the normal item 68# that name. The name will be matched to either the normal item
69# name, or the name of the archetype. 69# name, or the name of the archetype.
70# 70#
71# After the 'Allowed <whatever>' field, a 'chance <value>' field 71# After the 'Allowed <whatever>' field, a 'chance <value>' field
72# follows. This is how likely the item is to be created. It is relative 72# follows. This is how likely the item is to be created. It is relative
73# to other objects of the same type. What happens is that all of the 73# to other objects of the same type. What happens is that all of the
74# artifacts with the same type are put on 1 list, and their chance 74# artifacts with the same type are put on 1 list, and their chance
75# field is summed together. Then, when an artifact is created, 75# field is summed together. Then, when an artifact is created,
76# a roll is made based on that sum, and the appropriate artifact 76# a roll is made based on that sum, and the appropriate artifact
77# is chosen. If the item being transformed can not turn into that 77# is chosen. If the item being transformed can not turn into that
78# artifact (magic bonus, difficulty (see below), or just not 'Allowed'), 78# artifact (magic bonus, difficulty (see below), or just not 'Allowed'),
79# it will be re-rolled, attempting to make an artifact again. The number 79# it will be re-rolled, attempting to make an artifact again. The number
80# of re-rolls attempted is determined in the treasure.c file. IT is, 80# of re-rolls attempted is determined in the treasure.c file. It is,
81# by default, 1. 81# by default, 1.
82# 82#
83# 'difficulty <value>' can also be included before the 'Object <name>' 83# 'difficulty <value>' can also be included before the 'Object <name>'
84# field. If set, the difficulty must be greater or equal to that 84# field. If set, the difficulty must be greater or equal to that
85# value in order to the object to be created. This can make it so that 85# value in order to the object to be created. This can make it so that
86# some items are never created on easy maps. 86# some items are never created on easy maps.
87# 87#
88# Note that the above mentioned fields (chance, difficulty) must be set 88# Note that the above mentioned fields (chance, difficulty) must be set
89# before the Object command - if they are placed between the Object and 89# before the Object command - if they are placed between the Object and
90# End commands, they will have no affect. 90# End commands, they will have no affect.
91# 91#
92# Because of these changes, general artifact types are no longer allowed. 92# Because of these changes, general artifact types are no longer allowed.
93# This is for a few reasons: 1) With no type, it would not be possible 93# This is for a few reasons: 1) With no type, it would not be possible
94# to know what lists to put it on. If it put it on all lists 94# to know what lists to put it on. If it put it on all lists
95# presently existing, then the order of this file would become relevant, 95# presently existing, then the order of this file would become relevant,
96# 2) Since chance is now a a field, and different items types have 96# 2) Since chance is now a a field, and different items types have
97# different total chances, using a generic chance value could have 97# different total chances, using a generic chance value could have
98# unexpected results. 98# unexpected results.
99# 99#
100# Various notes: 100# Various notes:
101# chance is meaningless if there is only 1 artifact of a certain 101# chance is meaningless if there is only 1 artifact of a certain
102# type. It will always be generated, no matter what the chance 102# type. It will always be generated, no matter what the chance
103# is set to. As such, if adding an artifact for a new type, 103# is set to. As such, if adding an artifact for a new type,
104# make sure there are at least two, unless you always want 104# make sure there are at least two, unless you always want
105# that specific one to be generated. 105# that specific one to be generated.
106# 106#
107# running crossfire with -m3 creates a nice list of this 107# running crossfire with -m3 creates a nice list of this
108# table. Good for debugging if you seem to have problems with 108# table. Good for debugging if you seem to have problems with
109# some entry. 109# some entry.
110# 110#
111# Try to keep common types of items together. For example, keep 111# Try to keep common types of items together. For example, keep
112# all helmets types together, all weapon types, etc. From there, 112# all helmets types together, all weapon types, etc. From there,
113# try to group by subtype (plate mails, leathers, chains, crowns, 113# try to group by subtype (plate mails, leathers, chains, crowns,
114# etc.) This just makes it easier to find stuff. From their, it 114# etc.) This just makes it easier to find stuff. From their, it
115# might be nice to keep them in chance order, but most aren't in 115# might be nice to keep them in chance order, but most aren't in
116# that right now. 116# that right now.
117# 117#
118# Monsters 118# Monsters
119# Note: Only generated monsters are affected (just like items) - monsters 119# Note: Only generated monsters are affected (just like items) - monsters
120# already on the map are not affected. Also, many of the values (exp, hp, 120# already on the map are not affected. Also, many of the values (exp, hp,
121# maxhp) are fixed addition values, so if creating generic types (like the 121# maxhp) are fixed addition values, so if creating generic types (like the
122# Leader and Chief types), you what to keep the Allowed monsters at roughly 122# Leader and Chief types), you what to keep the Allowed monsters at roughly
123# the same power. 123# the same power.
124# As of now, 1:10 monsters can become artifact monsters. This is set in 124# As of now, 1:10 monsters can become artifact monsters. This is set in
125# time.c 125# time.c
126Allowed orc 126allowed orc
127chance 10 127chance 10
128Object Leader 128object Leader
129type 0 129type 0
130wc 1 130wc 1
131ac 1 131ac 1
132hp 12 132hp 12
133maxhp 12 133maxhp 12
134exp 20 134exp 20
135level 1 135level 1
136resist_physical 20 136resist_physical 20
137dam 13 137dam 13
138face orc_leader.111 138face orc_leader.x11
139stand_still 1 139stand_still 1
140end 140end
141# 141#
142Allowed goblin 142allowed goblin
143chance 10 143chance 10
144Object Leader 144object Leader
145type 0 145type 0
146wc 1 146wc 1
147ac 1 147ac 1
148hp 10 148hp 10
149maxhp 10 149maxhp 10
150exp 20 150exp 20
151level 1 151level 1
152resist_physical 20 152resist_physical 20
153dam 13 153dam 13
154face goblin_leader.111 154face goblin_leader.x11
155stand_still 1 155stand_still 1
156end 156end
157# 157#
158Allowed gnoll 158allowed gnoll
159chance 10 159chance 10
160Object Leader 160object Leader
161type 0 161type 0
162wc 1 162wc 1
163ac 1 163ac 1
164hp 13 164hp 13
165maxhp 13 165maxhp 13
166exp 20 166exp 20
167level 1 167level 1
168resist_physical 20 168resist_physical 20
169dam 13 169dam 13
170face gnoll_leader.111 170face gnoll_leader.x11
171stand_still 1 171stand_still 1
172end 172end
173# 173#
174Allowed ogre 174allowed ogre
175chance 10 175chance 10
176Object Leader 176object Leader
177type 0 177type 0
178wc 1 178wc 1
179ac 1 179ac 1
180hp 15 180hp 15
181maxhp 15 181maxhp 15
182exp 20 182exp 20
183level 1 183level 1
184resist_physical 20 184resist_physical 20
185dam 13 185dam 13
186face ogre_leader.111 186face ogre_leader.x11
187stand_still 1 187stand_still 1
188end 188end
189# 189#
190Allowed skeleton 190allowed skeleton
191chance 5 191chance 5
192Object Leader 192object Leader
193type 0 193type 0
194hp 15 194hp 15
195maxhp 15 195maxhp 15
196exp 40 196exp 40
197level 2 197level 2
198resist_physical 20 198resist_physical 20
199dam 1 199dam 1
200face skeleton_leader.111 200face skeleton_leader.x11
201stand_still 1 201stand_still 1
202end 202end
203# 203#
204Allowed beholder 204allowed beholder
205chance 5 205chance 5
206Object Leader 206object Leader
207type 0 207type 0
208wc 5 208wc 5
209ac 2 209ac 2
210hp 15 210hp 15
211maxhp 5 211maxhp 5
212exp 500 212exp 500
213level 2 213level 2
214resist_physical 40 214resist_physical 40
215dam 15 215dam 15
216face beholder_leader.111 216face beholder.x11
217stand_still 1 217stand_still 1
218end 218end
219# 219#
220Allowed orc 220allowed orc
221chance 2 221chance 2
222Object Chief 222object Chief
223type 0 223type 0
224wc 2 224wc 2
225ac 2 225ac 2
226hp 20 226hp 20
227maxhp 20 227maxhp 20
228exp 80 228exp 80
229level 2 229level 2
230resist_physical 30 230resist_physical 30
231dam 14 231dam 14
232face orc_chief.111 232face orc_chief.x11
233stand_still 1 233stand_still 1
234end 234end
235# 235#
236Allowed goblin 236allowed goblin
237chance 2 237chance 2
238Object Chief 238object Chief
239type 0 239type 0
240wc 2 240wc 2
241ac 2 241ac 2
242hp 20 242hp 20
243maxhp 20 243maxhp 20
244exp 100 244exp 100
245level 2 245level 2
246resist_physical 30 246resist_physical 30
247dam 13 247dam 13
248face goblin_chief.111 248face goblin_chief.x11
249stand_still 1 249stand_still 1
250end 250end
251# 251#
252Allowed gnoll 252allowed gnoll
253chance 2 253chance 2
254Object Chief 254object Chief
255type 0 255type 0
256wc 2 256wc 2
257ac 2 257ac 2
258hp 20 258hp 20
259maxhp 20 259maxhp 20
260exp 100 260exp 100
261level 2 261level 2
262resist_physical 30 262resist_physical 30
263dam 14 263dam 14
264face gnoll_chief.111 264face gnoll_chief.x11
265stand_still 1 265stand_still 1
266end 266end
267# 267#
268Allowed ogre 268allowed ogre
269chance 2 269chance 2
270Object Chief 270object Chief
271type 0 271type 0
272wc 2 272wc 2
273ac 2 273ac 2
274hp 22 274hp 22
275maxhp 22 275maxhp 22
276exp 150 276exp 150
277level 2 277level 2
278resist_physical 30 278resist_physical 30
279dam 19 279dam 19
280face ogre_chief.111 280face ogre_chief.x11
281stand_still 1 281stand_still 1
282end 282end
283# 283#
284Allowed skeleton 284allowed skeleton
285chance 2 285chance 2
286Object Chief 286object Chief
287type 0 287type 0
288wc 1 288wc 1
289hp 10 289hp 10
290maxhp 15 290maxhp 15
291exp 50 291exp 50
292level 2 292level 2
293resist_physical 40 293resist_physical 40
294dam 1 294dam 1
295face skeleton_chief.111 295face skeleton_chief.x11
296stand_still 1 296stand_still 1
297end 297end
298# 298#
299# Just to fix probability some. 299# Just to fix probability some.
300Allowed orc,goblin,ogre,gnoll,beholder 300allowed orc,goblin,ogre,gnoll,beholder
301chance 20 301chance 20
302Object NONE 302object NONE
303end 303end
304# 304#
305# Weapons: 305# Weapons:
306# 306#
307Allowed all 307allowed all
308chance 10 308chance 10
309Object Ilrya 309object Ilrya
310type 15 310type 15
311value 10 311value 10
312weight 80 312weight 80
313end 313end
314# 314#
315Allowed all 315allowed all
316chance 5 316chance 5
317Object Lythander 317object Lythander
318type 15 318type 15
319value 20 319value 20
320luck 1 320luck 1
321weight 90 321weight 90
322item_power 1 322item_power 1
323end 323end
324# 324#
325Allowed all 325allowed all
326chance 5 326chance 5
327Object Fear 327object Fear
328type 15 328type 15
329value 30 329value 30
330attacktype 16385 330attacktype 16385
331resist_fear 100 331resist_fear 100
332weight 90 332weight 90
333item_power 2 333item_power 2
334end 334end
335# 335#
336Allowed all 336allowed all
337chance 20 337chance 20
338Object Woe 338object Woe
339type 15 339type 15
340cursed 1 340cursed 1
341Str -1 341Str -1
342Con -1 342Con -1
343Dex -1 343Dex -1
347Cha -1 347Cha -1
348luck -1 348luck -1
349value 5 349value 5
350end 350end
351# 351#
352Allowed all 352allowed all
353chance 20 353chance 20
354Object Mass 354object Mass
355type 15 355type 15
356value 5 356value 5
357cursed 1 357cursed 1
358weight 300 358weight 300
359dam 15 359dam 15
360wc -3 360wc -3
361end 361end
362# 362#
363Allowed all 363allowed all
364chance 10 364chance 10
365Object Gnarg 365object Gnarg
366type 15 366type 15
367value 10 367value 10
368dam 12 368dam 12
369resist_poison 30 369resist_poison 30
370Cha -1 370Cha -1
371item_power 1 371item_power 1
372end 372end
373# 373#
374Allowed all 374allowed all
375chance 6 375chance 6
376Object Zormola 376object Zormola
377type 15 377type 15
378value 15 378value 15
379weight 80 379weight 80
380wc 2 380wc 2
381item_power 2 381item_power 2
382end 382end
383# 383#
384Allowed all 384allowed all
385chance 5 385chance 5
386Object Ixalovh 386object Ixalovh
387type 15 387type 15
388value 10 388value 10
389sp 1 389sp 1
390grace 1 390grace 1
391magic 1 391magic 1
392item_power 1 392item_power 1
393end 393end
394# 394#
395Allowed axe,axe_2,axe_3,axe_4,axe_5,battle_axe,stoneaxe,poleaxe,morningstar,large_morningstar,nunchacu_1,nunchacu_2,hammer,mace,mace_2,lspear,spear,club,quarterstaff,big_club,stonehammer,stake,bonecrusher,mjoellnir,skullcleaver 395allowed axe,axe_2,axe_3,axe_4,axe_5,battle_axe,stoneaxe,poleaxe,morningstar,large_morningstar,nunchacu_1,nunchacu_2,hammer,mace,mace_2,lspear,spear,club,quarterstaff,big_club,stonehammer,stake,bonecrusher,mjoellnir,skullcleaver
396chance 20 396chance 20
397Object Gaea 397object Gaea
398type 15 398type 15
399value 50 399value 50
400hp 1 400hp 1
401dam 11 401dam 11
402magic 2 402magic 2
403item_power 1 403item_power 1
404end 404end
405# 405#
406Allowed all 406allowed all
407chance 20 407chance 20
408Object Kragi 408object Kragi
409type 15 409type 15
410value 50 410value 50
411magic 3 411magic 3
412Con 1 412Con 1
413dam 11 413dam 11
414item_power 1 414item_power 1
415end 415end
416# 416#
417Allowed all 417allowed all
418chance 6 418chance 6
419Object Morgul 419object Morgul
420type 15 420type 15
421value 15 421value 15
422magic 3 422magic 3
423dam 20 423dam 20
424wc -3 424wc -3
426Dex -2 426Dex -2
427Con -2 427Con -2
428damned 1 428damned 1
429end 429end
430# 430#
431Allowed all 431allowed all
432chance 5 432chance 5
433Object Slay Ogre 433object Slay Ogre
434type 15 434type 15
435slaying ogre 435slaying ogre
436value 20 436value 20
437magic 1 437magic 1
438item_power 2 438item_power 2
439end 439end
440# 440#
441Allowed all 441allowed all
442chance 15 442chance 15
443Object Valriel 443object Valriel
444type 15 444type 15
445slaying demon 445slaying demon
446last_sp 120 446last_sp 120
447value 30 447value 30
448magic 2 448magic 2
449msg 449msg
450 This weapon faintly glows with a 450This weapon faintly glows with a
451 warm radiance that casts no shadows. 451warm radiance that casts no shadows.
452 Just holding it gives you the 452Just holding it gives you the
453 courage to send the most evil monsters 453courage to send the most evil monsters
454 back to whatever Hell they came from. 454back to whatever Hell they came from.
455endmsg 455endmsg
456item_power 2 456item_power 2
457end 457end
458# 458#
459Allowed all 459allowed all
460chance 15 460chance 15
461Object Gorokh 461object Gorokh
462type 15 462type 15
463slaying angel 463slaying angel
464last_sp 120 464last_sp 120
465value 30 465value 30
466magic 2 466magic 2
467msg 467msg
468 This weapon faintly glows with a 468This weapon faintly glows with a
469 dark radiance that makes shadows 469dark radiance that makes shadows
470 seem deeper and darker than they 470seem deeper and darker than they
471 should be. You have a strong 471should be. You have a strong
472 feeling that even the mightiest 472feeling that even the mightiest
473 champions of light must fall to 473champions of light must fall to
474 such powerful darkness. 474such powerful darkness.
475endmsg 475endmsg
476item_power 2 476item_power 2
477end 477end
478# 478#
479Allowed all 479allowed all
480chance 8 480chance 8
481Object the Devourers 481object the Devourers
482type 15 482type 15
483value 30 483value 30
484attacktype 65553 484attacktype 65553
485magic 1 485magic 1
486msg 486msg
487 This weapon radiates a bone-chilling 487This weapon radiates a bone-chilling
488 aura of otherworldly cold. 488aura of otherworldly cold.
489endmsg 489endmsg
490item_power 2 490item_power 2
491end 491end
492# 492#
493Allowed all 493allowed all
494chance 3 494chance 3
495Object Doom 495object Doom
496type 15 496type 15
497damned 1 497damned 1
498Str -5 498Str -5
499Con -5 499Con -5
500Dex -5 500Dex -5
504Cha -5 504Cha -5
505value 30 505value 30
506magic 1 506magic 1
507end 507end
508# 508#
509Allowed all 509allowed all
510chance 20 510chance 20
511Object Crolmi 511object Crolmi
512type 15 512type 15
513value 40 513value 40
514magic 3 514magic 3
515Str 1 515Str 1
516weight 110 516weight 110
517item_power 1 517item_power 1
518end 518end
519# 519#
520Allowed all 520allowed all
521chance 2 521chance 2
522Object Great Mass 522object Great Mass
523type 15 523type 15
524value 50 524value 50
525damned 1 525damned 1
526weight 600 526weight 600
527dam 25 527dam 25
528wc -5 528wc -5
529end 529end
530# 530#
531Allowed all 531allowed all
532chance 2 532chance 2
533Object Slay Troll 533object Slay Troll
534type 15 534type 15
535slaying troll 535slaying troll
536value 50 536value 50
537magic 2 537magic 2
538item_power 2 538item_power 2
539end 539end
540# 540#
541Allowed all 541allowed all
542chance 2 542chance 2
543Object Slay Undead 543object Slay Undead
544type 15 544type 15
545slaying undead 545slaying undead
546value 50 546value 50
547magic 2 547magic 2
548msg 548msg
549 This vicious weapon is designed 549This vicious weapon is designed
550 specifically for destroying any 550specifically for destroying any
551 abominations that have risen from 551abominations that have risen from
552 their graves and making sure they 552their graves and making sure they
553 stay dead this time. 553stay dead this time.
554endmsg 554endmsg
555item_power 2 555item_power 2
556end 556end
557# 557#
558Allowed all 558allowed all
559chance 1 559chance 1
560Object Slay Dragon 560object Slay Dragon
561type 15 561type 15
562slaying dragon 562slaying dragon
563value 100 563value 100
564magic 3 564magic 3
565item_power 2 565item_power 2
566end 566end
567# 567#
568Allowed all 568allowed all
569chance 1 569chance 1
570Object Slay Beholder 570object Slay Beholder
571type 15 571type 15
572slaying beholder 572slaying beholder
573value 150 573value 150
574resist_magic 20 574resist_magic 20
575magic 3 575magic 3
576item_power 3 576item_power 3
577end 577end
578# 578#
579Allowed all 579allowed all
580chance 10 580chance 10
581Object Rhyz 581object Rhyz
582type 15 582type 15
583value 80 583value 80
584magic 4 584magic 4
585Str 1 585Str 1
586Dex 1 586Dex 1
587weight 90 587weight 90
588item_power 2 588item_power 2
589end 589end
590# 590#
591Allowed all 591allowed all
592chance 10 592chance 10
593Object Glamdri 593object Glamdri
594type 15 594type 15
595value 150 595value 150
596magic 4 596magic 4
597resist_magic 30 597resist_magic 30
598Int 1 598Int 1
599Pow 1 599Pow 1
600weight 90 600weight 90
601item_power 5 601item_power 5
602end 602end
603# 603#
604Allowed all 604allowed all
605chance 5 605chance 5
606Object Berserkergang 606object Berserkergang
607type 15 607type 15
608value 15 608value 15
609magic 4 609magic 4
610dam 30 610dam 30
611wc 7 611wc 7
619material 256 619material 256
620weight 50 620weight 50
621exp 3 621exp 3
622hp 2 622hp 2
623msg 623msg
624 This weapon burns with a supernatural rage: 624This weapon burns with a supernatural rage: its anger invests the wielder
625 its anger invests the wielder and empowers 625and empowers G<him|her>. However, it also clouds H<his|her> thoughts, and
626 him. However, it also clouds his thoughts,
627 and drool is very unattractive. 626drool is very unattractive.
628endmsg 627endmsg
629attacktype 16385 628attacktype 16385
630damned 1 629damned 1
631end 630end
632# 631#
633# This item is attack type weaponmagic. It only happens in weapons that 632# This item is attack type weaponmagic. It only happens in weapons that
634# are already pretty magical (+3 or better). Thus, while the chance 633# are already pretty magical (+3 or better). Thus, while the chance
635# may look high, since there are not that many +3 or better weapons 634# may look high, since there are not that many +3 or better weapons
636# created, it will not be created that often. 635# created, it will not be created that often.
637# 636#
638Allowed all 637allowed all
639chance 10 638chance 10
640Object Magic Hitting 639object Magic Hitting
641type 15 640type 15
642magic 3 641magic 3
643value 20 642value 20
644attacktype 256 643attacktype 256
645item_power 1 644item_power 1
646end 645end
647# 646#
648Allowed axe,axe_2,axe_3,axe_4,axe_5,battle_axe,hammer,skullcleaver,mjoellnir,bonecrusher,frost_hammer 647allowed axe,axe_2,axe_3,axe_4,axe_5,battle_axe,hammer,skullcleaver,mjoellnir,bonecrusher,frost_hammer
649chance 10 648chance 10
650Object Mostrai 649object Mostrai
651type 15 650type 15
652magic 1 651magic 1
653value 12 652value 12
654dam 14 653dam 14
655weight 115 654weight 115
656end 655end
657# 656#
658Allowed sword,sabre,rapier,scimitar,light_sword,katana_1,falchion 657allowed sword,sabre,rapier,scimitar,light_sword,katana_1,falchion
659chance 90 658chance 90
660Object Occidental Mages 659object Occidental Mages
661type 15 660type 15
662magic 2 661magic 2
663value 20 662value 20
664msg 663msg
665 The Ancient School of Occidental Mages created that weapon during 664The Ancient School of Occidental Mages created that weapon during
666 the Empire Wars, charging it with their Chaotic Powers. 665the Empire Wars, charging it with their Chaotic Powers.
667endmsg 666endmsg
668event_attack_plugin Python 667event_attack_plugin Python
669event_attack /python/items/weapon_occidental_mages.py 668event_attack /python/items/weapon_occidental_mages.py
670end 669end
671# 670#
672# 671#
673# Swords (subtype of weapons) 672# Swords (subtype of weapons)
674# 673#
675Allowed sword,sabre,rapier,scimitar,light_sword,katana_1,falchion 674allowed sword,sabre,rapier,scimitar,light_sword,katana_1,falchion
676chance 10 675chance 10
677Object Poisoning 676object Poisoning
678type 15 677type 15
679value 20 678value 20
680weight 80 679weight 80
681attacktype 1025 680attacktype 1025
682item_power 1 681item_power 1
683end 682end
684# 683#
685# 684#
686# Metal Weapons 685# Metal Weapons
687# 686#
688Allowed dagger,light_sword,shortsword,shortsword_2,taifu_1,trident,axe,axe_2,axe_3,axe_4,axe_5,battle_axe,poleaxe,morningstar,large_morningstar,hammer,mace,mace_2,lspear,spear,sword,sword_2,sword_3,sabre,rapier,rapier,scimitar,katana_1,falchion,broadsword,broadsword_2 687allowed dagger,light_sword,shortsword,shortsword_2,taifu_1,trident,axe,axe_2,axe_3,axe_4,axe_5,battle_axe,poleaxe,morningstar,large_morningstar,hammer,mace,mace_2,lspear,spear,sword,sword_2,sword_3,sabre,rapier,rapier,scimitar,katana_1,falchion,broadsword,broadsword_2
689chance 5 688chance 5
690Object Sorig 689object Sorig
691type 15 690type 15
692magic 1 691magic 1
693value 15 692value 15
694weight 95 693weight 95
695attacktype 9 694attacktype 9
696last_sp 125 695last_sp 125
697item_power 1 696item_power 1
698end 697end
699# 698#
700Allowed trident 699allowed trident
701chance 5 700chance 5
702Object Ixalovh 701object Ixalovh
703type 15 702type 15
704magic 2 703magic 2
705value 20 704value 20
706weight 20 705weight 20
707attacktype 17 706attacktype 17
710Cha -1 709Cha -1
711Con -1 710Con -1
712item_power 2 711item_power 2
713end 712end
714# 713#
715Allowed dagger,axe,axe_2,axe_3,axe_4,axe_5,battle_axe,sword,sword_2,sword_3,sabre,rapier,scimitar,light_sword,katana_1,falchion,broadsword,broadsword_2,shortsword,shortsword_2,morningstar,large_morningstar,hammer,mace,mace_2,lspear,spear,poleaxe,taifu_1,trident 714allowed dagger,axe,axe_2,axe_3,axe_4,axe_5,battle_axe,sword,sword_2,sword_3,sabre,rapier,scimitar,light_sword,katana_1,falchion,broadsword,broadsword_2,shortsword,shortsword_2,morningstar,large_morningstar,hammer,mace,mace_2,lspear,spear,poleaxe,taifu_1,trident
716chance 5 715chance 5
717Object Ruggilli 716object Ruggilli
718type 15 717type 15
719magic 1 718magic 1
720value 15 719value 15
721weight 85 720weight 85
722attacktype 5 721attacktype 5
724last_sp 110 723last_sp 110
725end 724end
726# 725#
727# Daggers (subtype of weapons) 726# Daggers (subtype of weapons)
728# 727#
729Allowed dagger 728allowed dagger
730chance 10 729chance 10
731Object Poisoning 730object Poisoning
732type 15 731type 15
733value 20 732value 20
734weight 80 733weight 80
735attacktype 1025 734attacktype 1025
736item_power 1 735item_power 1
737end 736end
738# 737#
739Allowed dagger 738allowed dagger
740chance 10 739chance 10
741Object Paralysis 740object Paralysis
742type 15 741type 15
743value 30 742value 30
744weight 80 743weight 80
745attacktype 4097 744attacktype 4097
746item_power 1 745item_power 1
747end 746end
748# 747#
749Allowed dagger 748allowed dagger
750chance 10 749chance 10
751Object Madness 750object Madness
752type 15 751type 15
753value 10 752value 10
754weight 80 753weight 80
755attacktype 33 754attacktype 33
756item_power 1 755item_power 1
757end 756end
758# 757#
759# 758#
760# Helmets 759# Helmets
761# 760#
762Allowed helmet, crown 761allowed helmet, crown
763chance 6 762chance 6
764Object Xebinon 763object Xebinon
765type 34 764type 34
766value 35 765value 35
767gen_sp_armour -2 766gen_sp_armour -2
768path_attuned 1024 767path_attuned 1024
769sp 1 768sp 1
770magic 2 769magic 2
771item_power 1 770item_power 1
772end 771end
773# 772#
774Allowed all 773allowed all
775chance 1 774chance 1
776Object Blindness 775object Blindness
777type 34 776type 34
778is_blind 1 777is_blind 1
779magic 1 778magic 1
780cursed 1 779cursed 1
781end 780end
782# 781#
783Allowed full helmet,helmet 782allowed full helmet,helmet
784chance 1 783chance 1
785Object Dark Vision 784object Dark Vision
786type 34 785type 34
787can_see_in_dark 1 786can_see_in_dark 1
788value 10 787value 10
789item_power 1 788item_power 1
790end 789end
791# 790#
792Allowed full helmet,helmet 791allowed full helmet,helmet
793chance 1 792chance 1
794Object Might 793object Might
795type 34 794type 34
796value 500 795value 500
797magic 2 796magic 2
798Str 1 797Str 1
799Con 1 798Con 1
800Dex 1 799Dex 1
801item_power 3 800item_power 3
802end 801end
803# 802#
804Allowed full helmet 803allowed full helmet
805chance 20 804chance 20
806Object Valriel 805object Valriel
807type 34 806type 34
808value 50 807value 50
809magic 2 808magic 2
810Wis 1 809Wis 1
811Cha 1 810Cha 1
812item_power 2 811item_power 2
813end 812end
814# 813#
815Allowed full helmet 814allowed full helmet
816chance 4 815chance 4
817Object Argoth 816object Argoth
818type 34 817type 34
819value 25 818value 25
820magic 1 819magic 1
821ac 1 820ac 1
822Cha 1 821Cha 1
823resist_fire 30 822resist_fire 30
824resist_physical 8 823resist_physical 8
825msg 824msg
826 Argoth was an ancient dwarven city 825Argoth was an ancient dwarven city
827 in a mountain which was infested with 826in a mountain which was infested with
828 dragons. The dwarves specialized in 827dragons. The dwarves specialized in
829 equipment which helped them survive their 828equipment which helped them survive their
830 environment. 829environment.
831endmsg 830endmsg
832item_power 3 831item_power 3
833end 832end
834# 833#
835Allowed !crown 834allowed !crown
836chance 10 835chance 10
837Object Ilrya 836object Ilrya
838type 34 837type 34
839value 10 838value 10
840weight 80 839weight 80
841end 840end
842# 841#
843Allowed !crown 842allowed !crown
844chance 5 843chance 5
845Object Lythander 844object Lythander
846type 34 845type 34
847value 20 846value 20
848luck 1 847luck 1
849weight 90 848weight 90
850item_power 1 849item_power 1
851end 850end
852# 851#
853Allowed !crown 852allowed !crown
854chance 20 853chance 20
855Object Mass 854object Mass
856type 34 855type 34
857value 5 856value 5
858cursed 1 857cursed 1
859weight 400 858weight 400
860end 859end
861# 860#
862Allowed !crown 861allowed !crown
863chance 2 862chance 2
864Object Great Mass 863object Great Mass
865type 34 864type 34
866value 50 865value 50
867damned 1 866damned 1
868weight 1000 867weight 1000
869end 868end
870# 869#
871Allowed all 870allowed all
872chance 6 871chance 6
873Object Stupidity 872object Stupidity
874type 34 873type 34
875value 15 874value 15
876magic 1 875magic 1
877Int -10 876Int -10
878damned 1 877damned 1
879end 878end
880# 879#
881Allowed all 880allowed all
882chance 5 881chance 5
883Object Sorig 882object Sorig
884type 34 883type 34
885value 20 884value 20
886ac 1 885ac 1
887magic 1 886magic 1
888resist_physical 8 887resist_physical 8
889resist_electricity 40 888resist_electricity 40
890item_power 3 889item_power 3
891end 890end
892# 891#
893Allowed all 892allowed all
894chance 3 893chance 3
895Object Doom 894object Doom
896type 34 895type 34
897damned 1 896damned 1
898Str -5 897Str -5
899Con -5 898Con -5
900Dex -5 899Dex -5
904Cha -5 903Cha -5
905value 30 904value 30
906magic 1 905magic 1
907end 906end
908# 907#
909Allowed all 908allowed all
910chance 20 909chance 20
911Object Woe 910object Woe
912type 34 911type 34
913cursed 1 912cursed 1
914Str -1 913Str -1
915Con -1 914Con -1
916Dex -1 915Dex -1
922value 5 921value 5
923end 922end
924# 923#
925# Crowns start here (subset of helmets ) 924# Crowns start here (subset of helmets )
926# 925#
927Allowed crown 926allowed crown
928chance 1 927chance 1
929Object the Magi 928object the Magi
930type 34 929type 34
931value 500 930value 500
932sp 2 931sp 2
933Int 2 932Int 2
934Pow 2 933Pow 2
935item_power 6 934item_power 6
936end 935end
937# 936#
938Allowed crown 937allowed crown
939chance 1 938chance 1
940Object Fire 939object Fire
941type 34 940type 34
942value 100 941value 100
943resist_fire 30 942resist_fire 30
944path_attuned 2 943path_attuned 2
945path_repelled 4 944path_repelled 4
946item_power 2 945item_power 2
947end 946end
948# 947#
949Allowed crown 948allowed crown
950chance 10 949chance 10
951Object Lordliness 950object Lordliness
952magic 2 951magic 2
953type 34 952type 34
954value 10 953value 10
955Cha 2 954Cha 2
956item_power 2 955item_power 2
957end 956end
958# 957#
959Allowed crown 958allowed crown
960chance 6 959chance 6
961Object Rulership 960object Rulership
962type 34 961type 34
963value 15 962value 15
964magic 3 963magic 3
965Cha 1 964Cha 1
966Wis 1 965Wis 1
967item_power 2 966item_power 2
968end 967end
969# 968#
970Allowed crown 969allowed crown
971chance 4 970chance 4
972Object Might 971object Might
973type 34 972type 34
974value 25 973value 25
975magic 3 974magic 3
976Con 1 975Con 1
977Str 1 976Str 1
978item_power 2 977item_power 2
979end 978end
980# 979#
981# Shields 980# Shields
982# 981#
983Allowed all 982allowed all
984chance 10 983chance 10
985Object Ilrya 984object Ilrya
986type 33 985type 33
987value 10 986value 10
988weight 80 987weight 80
989end 988end
990# 989#
991Allowed all 990allowed all
992chance 20 991chance 20
993Object Mass 992object Mass
994type 33 993type 33
995value 5 994value 5
996cursed 1 995cursed 1
997weight 400 996weight 400
998end 997end
999# 998#
1000Allowed all 999allowed all
1001chance 2 1000chance 2
1002Object Great Mass 1001object Great Mass
1003type 33 1002type 33
1004value 50 1003value 50
1005damned 1 1004damned 1
1006weight 1000 1005weight 1000
1007end 1006end
1008# 1007#
1009Allowed all 1008allowed all
1010chance 2 1009chance 2
1011Object Deflection 1010object Deflection
1012type 33 1011type 33
1013value 50 1012value 50
1014magic 2 1013magic 2
1015ac 3 1014ac 3
1016weight 110 1015weight 110
1017msg 1016msg
1018 This highly enchanted shield is 1017This highly enchanted shield is
1019 craftfully made to give more 1018craftfully made to give more
1020 protection than usual. 1019protection than usual.
1021endmsg 1020endmsg
1022item_power 2 1021item_power 2
1023end 1022end
1024# 1023#
1025Allowed all 1024allowed all
1026chance 8 1025chance 8
1027Object Mostrai 1026object Mostrai
1028type 33 1027type 33
1029value 24 1028value 24
1030magic 1 1029magic 1
1031resist_fire 20 1030resist_fire 20
1032item_power 1 1031item_power 1
1033end 1032end
1034# 1033#
1035Allowed all 1034allowed all
1036chance 8 1035chance 8
1037Object Gnarg 1036object Gnarg
1038type 33 1037type 33
1039magic 1 1038magic 1
1040value 12 1039value 12
1041Cha -1 1040Cha -1
1042ac 1 1041ac 1
1043resist_physical 10 1042resist_physical 10
1044end 1043end
1045# This one is amazingly rare, I would be surprised if I ever saw one! 1044# This one is amazingly rare, I would be surprised if I ever saw one!
1046Allowed high_shield 1045allowed high_shield
1047chance 1 1046chance 1
1048difficulty 10 1047difficulty 10
1049Object holy light 1048object holy light
1050type 33 1049type 33
1051magic 3 1050magic 3
1052value 1200 1051value 1200
1053weight 90 1052weight 90
1054Cha 5 1053Cha 5
1058resist_drain 100 1057resist_drain 100
1059resist_ghosthit 60 1058resist_ghosthit 60
1060resist_fire 25 1059resist_fire 25
1061resist_cold 25 1060resist_cold 25
1062glow_radius 1 1061glow_radius 1
1063face holyshield.111 1062face holyshield.x11
1064msg 1063msg
1065 Passed down from one of the elder 1064Passed down from one of the elder
1066 this shield is amazing. Its soft glow 1065this shield is amazing. Its soft glow
1067 hides a deep power which you feel 1066hides a deep power which you feel
1068 you can almost taste. It soon dawns 1067you can almost taste. It soon dawns
1069 on you that this must be one of the 1068on you that this must be one of the
1070 most prized shields of all the lands. 1069most prized shields of all the lands.
1071endmsg 1070endmsg
1072item_power 25 1071item_power 25
1073end 1072end
1074# 1073#
1075Allowed all 1074allowed all
1076chance 3 1075chance 3
1077Object Doom 1076object Doom
1078type 33 1077type 33
1079damned 1 1078damned 1
1080Str -5 1079Str -5
1081Con -5 1080Con -5
1082Dex -5 1081Dex -5
1086Cha -5 1085Cha -5
1087value 30 1086value 30
1088magic 1 1087magic 1
1089end 1088end
1090# 1089#
1091Allowed all 1090allowed all
1092chance 20 1091chance 20
1093Object Woe 1092object Woe
1094type 33 1093type 33
1095cursed 1 1094cursed 1
1096Str -1 1095Str -1
1097Con -1 1096Con -1
1098Dex -1 1097Dex -1
1102Cha -1 1101Cha -1
1103luck -1 1102luck -1
1104value 5 1103value 5
1105end 1104end
1106# 1105#
1107Allowed all 1106allowed all
1108chance 8 1107chance 8
1109Object Gnarg 1108object Gnarg
1110type 33 1109type 33
1111magic 1 1110magic 1
1112value 12 1111value 12
1113Cha -1 1112Cha -1
1114ac 1 1113ac 1
1118 1117
1119# 1118#
1120# 1119#
1121# Gauntlets / Gloves 1120# Gauntlets / Gloves
1122# 1121#
1123Allowed gauntlets 1122allowed gauntlets
1124chance 5 1123chance 5
1125Object Sorig 1124object Sorig
1126type 100 1125type 100
1127resist_physical 8 1126resist_physical 8
1128resist_electricity 35 1127resist_electricity 35
1129attacktype 8 1128attacktype 8
1130weight 125 1129weight 125
1131value 175 1130value 175
1132item_power 3 1131item_power 3
1133end 1132end
1134# 1133#
1135Allowed gloves 1134allowed gloves
1136chance 10 1135chance 10
1137Object Havok 1136object Havok
1138type 100 1137type 100
1139dam 4 1138dam 4
1140wc 2 1139wc 2
1141resist_physical 8 1140resist_physical 8
1142weight 125 1141weight 125
1143value 175 1142value 175
1144item_power 2 1143item_power 2
1145end 1144end
1146# 1145#
1147Allowed gloves 1146allowed gloves
1148chance 10 1147chance 10
1149Object Sorig 1148object Sorig
1150type 100 1149type 100
1151resist_physical 5 1150resist_physical 5
1152resist_electricity 30 1151resist_electricity 30
1153weight 125 1152weight 125
1154value 10 1153value 10
1155item_power 2 1154item_power 2
1156end 1155end
1157# 1156#
1158Allowed all 1157allowed all
1159chance 20 1158chance 20
1160Object bladed steel 1159object bladed steel
1161type 100 1160type 100
1162resist_physical 10 1161resist_physical 10
1163dam 2 1162dam 2
1164material 8194 1163material 8194
1165materialname steel 1164materialname steel
1166weight 125 1165weight 125
1167value 40 1166value 40
1168end 1167end
1169# 1168#
1170Allowed gauntlets 1169allowed gauntlets
1171chance 20 1170chance 20
1172Object the Titans 1171object the Titans
1173type 100 1172type 100
1174resist_physical 10 1173resist_physical 10
1175dam 8 1174dam 8
1176weight 2500 1175weight 2500
1177value 40 1176value 40
1178end 1177end
1179# 1178#
1180Allowed gloves 1179allowed gloves
1181chance 20 1180chance 20
1182Object marksmanship 1181object marksmanship
1183type 100 1182type 100
1184resist_physical 2 1183resist_physical 2
1185wc 4 1184wc 4
1186weight 95 1185weight 95
1187value 40 1186value 40
1188item_power 4 1187item_power 4
1189end 1188end
1190# 1189#
1191Allowed gloves 1190allowed gloves
1192chance 20 1191chance 20
1193Object oiled leather 1192object oiled leather
1194material 8200 1193material 8200
1195materialname leather 1194materialname leather
1196type 100 1195type 100
1197resist_acid 25 1196resist_acid 25
1198cha -4 1197cha -4
1202end 1201end
1203 1202
1204# 1203#
1205# Armour 1204# Armour
1206# 1205#
1207Allowed all 1206allowed all
1208chance 10 1207chance 10
1209Object Ilrya 1208object Ilrya
1210type 16 1209type 16
1211value 10 1210value 10
1212weight 80 1211weight 80
1213msg 1212msg
1214 This armour is made of lighter and more expensive material. 1213This armour is made of lighter and more expensive material.
1215endmsg 1214endmsg
1216end 1215end
1217# 1216#
1218Allowed all 1217allowed all
1219chance 20 1218chance 20
1220Object Mass 1219object Mass
1221type 16 1220type 16
1222value 5 1221value 5
1223cursed 1 1222cursed 1
1224weight 300 1223weight 300
1225end 1224end
1226# 1225#
1227Allowed all 1226allowed all
1228chance 2 1227chance 2
1229Object Great Mass 1228object Great Mass
1230type 16 1229type 16
1231value 50 1230value 50
1232damned 1 1231damned 1
1233weight 1000 1232weight 1000
1234end 1233end
1235# 1234#
1236Allowed all 1235allowed all
1237chance 6 1236chance 6
1238Object Clumsiness 1237object Clumsiness
1239type 16 1238type 16
1240value 15 1239value 15
1241Dex -1 1240Dex -1
1242cursed 1 1241cursed 1
1243end 1242end
1244# 1243#
1245Allowed plate_mail,scale_mail 1244allowed plate_mail,scale_mail
1246chance 6 1245chance 6
1247Object Valriel 1246object Valriel
1248type 16 1247type 16
1249value 20 1248value 20
1250resist_physical 5 1249resist_physical 5
1251resist_blind 40 1250resist_blind 40
1252weight 110 1251weight 110
1253magic 1 1252magic 1
1254item_power 2 1253item_power 2
1255end 1254end
1256# 1255#
1257Allowed plate_mail,scale_mail 1256allowed plate_mail,scale_mail
1258chance 6 1257chance 6
1259Object Gorokh 1258object Gorokh
1260type 16 1259type 16
1261value 15 1260value 15
1262ac 2 1261ac 2
1263resist_magic 15 1262resist_magic 15
1264resist_fear 30 1263resist_fear 30
1266weight 105 1265weight 105
1267magic 1 1266magic 1
1268item_power 3 1267item_power 3
1269end 1268end
1270# 1269#
1271Allowed plate_mail,scale_mail 1270allowed plate_mail,scale_mail
1272chance 6 1271chance 6
1273Object Gnarg 1272object Gnarg
1274type 16 1273type 16
1275value 15 1274value 15
1276ac 1 1275ac 1
1277resist_poison +45 1276resist_poison +45
1278resist_magic -10 1277resist_magic -10
1279weight 105 1278weight 105
1280magic 1 1279magic 1
1281item_power 2 1280item_power 2
1282end 1281end
1283# 1282#
1284Allowed plate_mail,scale_mail,dragon_mail 1283allowed plate_mail,scale_mail,dragon_mail
1285chance 6 1284chance 6
1286Object Ruggilli 1285object Ruggilli
1287type 16 1286type 16
1288value 55 1287value 55
1289ac 1 1288ac 1
1290resist_physical 15 1289resist_physical 15
1291resist_fire 35 1290resist_fire 35
1292weight 90 1291weight 90
1293magic 2 1292magic 2
1294item_power 3 1293item_power 3
1295end 1294end
1296# 1295#
1297Allowed all 1296allowed all
1298chance 10 1297chance 10
1299Object Gaea 1298object Gaea
1300type 16 1299type 16
1301value 25 1300value 25
1302ac 1 1301ac 1
1303hp 1 1302hp 1
1304resist_drain 30 1303resist_drain 30
1307resist_physical 10 1306resist_physical 10
1308magic 2 1307magic 2
1309item_power 5 1308item_power 5
1310end 1309end
1311# 1310#
1312Allowed all 1311allowed all
1313chance 6 1312chance 6
1314Object Protection 1313object Protection
1315type 16 1314type 16
1316value 15 1315value 15
1317ac 2 1316ac 2
1318resist_physical 20 1317resist_physical 20
1319magic 3 1318magic 3
1320msg 1319msg
1321 The quality of this superb armour 1320The quality of this superb armour
1322 is extreme; it gives much more 1321is extreme; it gives much more
1323 protection than any made today. 1322protection than any made today.
1324 It is very old, probably from some 1323It is very old, probably from some
1325 lost civilization who had much 1324lost civilization who had much
1326 better skills, but it doesn't look 1325better skills, but it doesn't look
1327 worn at all. It is obviously highly 1326worn at all. It is obviously highly
1328 enchanted. 1327enchanted.
1329endmsg 1328endmsg
1330item_power 3 1329item_power 3
1331end 1330end
1332# 1331#
1333Allowed all 1332allowed all
1334chance 6 1333chance 6
1335Object Berwean 1334object Berwean
1336type 16 1335type 16
1337value 15 1336value 15
1338ac -1 1337ac -1
1339resist_physical 8 1338resist_physical 8
1340last_sp 150 1339last_sp 150
1341exp 1 1340exp 1
1342weight 70 1341weight 70
1343msg 1342msg
1344 This armour is made of very light and 1343This armour is made of very light and
1345 expensive material. As a result you 1344expensive material. As a result you
1346 can move much faster in it, but it gives 1345can move much faster in it, but it gives
1347 a bit worse protection than normal armour. 1346a bit worse protection than normal armour.
1348endmsg 1347endmsg
1349end 1348end
1350# 1349#
1351Allowed all 1350allowed all
1352chance 3 1351chance 3
1353Object Doom 1352object Doom
1354type 16 1353type 16
1355damned 1 1354damned 1
1356Str -5 1355Str -5
1357Con -5 1356Con -5
1358Dex -5 1357Dex -5
1362Cha -5 1361Cha -5
1363value 30 1362value 30
1364magic 1 1363magic 1
1365end 1364end
1366# 1365#
1367Allowed all 1366allowed all
1368chance 20 1367chance 20
1369Object Woe 1368object Woe
1370type 16 1369type 16
1371cursed 1 1370cursed 1
1372Str -1 1371Str -1
1373Con -1 1372Con -1
1374Dex -1 1373Dex -1
1378Cha -1 1377Cha -1
1379luck -1 1378luck -1
1380value 5 1379value 5
1381end 1380end
1382# 1381#
1383Allowed plate_mail 1382allowed plate_mail
1384chance 1 1383chance 1
1385Object Power 1384object Power
1386type 16 1385type 16
1387value 150 1386value 150
1388magic 4 1387magic 4
1389Str 1 1388Str 1
1390resist_fire 30 1389resist_fire 30
1391weight 200 1390weight 200
1392last_sp 5 1391last_sp 5
1393resist_physical 20 1392resist_physical 20
1394ac 1 1393ac 1
1395msg 1394msg
1396 This extremely unique platemail was made 1395This extremely unique platemail was made
1397 for the line of dwarven kings in one of the 1396for the line of dwarven kings in one of the
1398 vanished northern kingdoms of old. 1397vanished northern kingdoms of old.
1399 Due to its magic, it will fit creatures of any size. 1398Due to its magic, it will fit creatures of any size.
1400 It is highly enchanted, increasing the strength of the 1399It is highly enchanted, increasing the strength of the
1401 wearer and protecting against fire. 1400wearer and protecting against fire.
1402 Unfortunately it is also very heavy, limiting speed somewhat. 1401Unfortunately it is also very heavy, limiting speed somewhat.
1403endmsg 1402endmsg
1404item_power 4 1403item_power 4
1405end 1404end
1406# 1405#
1407Allowed plate_mail 1406allowed plate_mail
1408chance 5 1407chance 5
1409Object Prowess 1408object Prowess
1410type 16 1409type 16
1411resist_physical 30 1410resist_physical 30
1412weight 250 1411weight 250
1413ac 1 1412ac 1
1414Str 2 1413Str 2
1415Dex 2 1414Dex 2
1416Int -5 1415Int -5
1417Pow -5 1416Pow -5
1418value 100 1417value 100
1419msg 1418msg
1420 This very heavy armour gives protection 1419This very heavy armour gives protection
1421 greater than normal mail. It is created 1420greater than normal mail. It is created
1422 for fighters - the high weight and the fact 1421for fighters - the high weight and the fact
1423 that it clouds the mind makes it unsuitable for 1422that it clouds the mind makes it unsuitable for
1424 mages. It increases the wearer's strength and 1423mages. It increases the wearer's strength and
1425 dexterity, making him even more fearsome in 1424dexterity, making G<him|her> even more fearsome in
1426 battle. 1425battle.
1427endmsg 1426endmsg
1428end 1427end
1429# 1428#
1430Allowed leather_armour,mithril_chainmail 1429allowed leather_armour,mithril_chainmail
1431chance 10 1430chance 10
1432Object Irial 1431object Irial
1433type 16 1432type 16
1434value 10 1433value 10
1435Cha 1 1434Cha 1
1436msg 1435msg
1437 This armour, which is of elven origin, 1436This armour, which is of elven origin,
1438 is beautifully decorated with ancient emblems. 1437is beautifully decorated with ancient emblems.
1439endmsg 1438endmsg
1440item_power 1 1439item_power 1
1441end 1440end
1442# 1441#
1443# Robes (subtype of armor) 1442# Robes (subtype of armor)
1444# 1443#
1445Allowed robe 1444allowed robe
1446chance 10 1445chance 10
1447Object Displacement 1446object Displacement
1448type 16 1447type 16
1449value 100 1448value 100
1450ac 3 1449ac 3
1451msg 1450msg
1452 This robe blurs the vision of those trying 1451This robe blurs the vision of those trying
1453 to attack, making the wearer more difficult to hit. 1452to attack, making the wearer more difficult to hit.
1454endmsg 1453endmsg
1455item_power 3 1454item_power 3
1456end 1455end
1457# 1456#
1458Allowed robe 1457allowed robe
1459chance 10 1458chance 10
1460Object metal weave 1459object metal weave
1461face metalrobe.111 1460face metalrobe.x11
1462material 2 1461material 2
1463type 16 1462type 16
1464value 100 1463value 100
1465weight 150 1464weight 150
1466resist_physical 15 1465resist_physical 15
1467ac 3 1466ac 3
1468msg 1467msg
1469 This magical robe is somehow woven of 1468This magical robe is somehow woven of
1470 metal fibers. 1469metal fibers.
1471endmsg 1470endmsg
1472item_power 3 1471item_power 3
1473end 1472end
1474# 1473#
1475# Rings 1474# Rings
1476# 1475#
1477# Ring of Thieves 1476# Ring of Thieves
1478# 1477#
1479Allowed all 1478allowed all
1480chance 20 1479chance 20
1481Object Thieves 1480object Thieves
1482value 80 1481value 80
1483type 70 1482type 70
1484face ring.117 1483face ring.x17
1485exp 5 1484exp 5
1486Dex 3 1485Dex 3
1487stealth 1 1486stealth 1
1488can_see_in_dark 1 1487can_see_in_dark 1
1489item_power 10 1488item_power 10
1490end 1489end
1491# 1490#
1492#Ring of Fighting 1491#Ring of Fighting
1493# 1492#
1494Allowed all 1493allowed all
1495chance 32 1494chance 32
1496Object Fighting 1495object Fighting
1497face ring.117 1496face ring.x17
1498type 70 1497type 70
1499value 30 1498value 30
1500Str 1 1499Str 1
1501Con 1 1500Con 1
1502exp 2 1501exp 2
1506item_power 9 1505item_power 9
1507end 1506end
1508# 1507#
1509#Ring of Combat 1508#Ring of Combat
1510# 1509#
1511Allowed all 1510allowed all
1512chance 8 1511chance 8
1513Object Combat 1512object Combat
1514type 70 1513type 70
1515face ring.117 1514face ring.x17
1516value 130 1515value 130
1517Str 1 1516Str 1
1518Con 1 1517Con 1
1519Dex 1 1518Dex 1
1520wc 2 1519wc 2
1528end 1527end
1529# 1528#
1530# 1529#
1531#Ring of Strife 1530#Ring of Strife
1532# 1531#
1533Allowed all 1532allowed all
1534chance 4 1533chance 4
1535Object Strife 1534object Strife
1536type 70 1535type 70
1537face ring.117 1536face ring.x17
1538value 230 1537value 230
1539exp 4 1538exp 4
1540Str 2 1539Str 2
1541Con 2 1540Con 2
1542Dex 2 1541Dex 2
1552item_power 6 1551item_power 6
1553end 1552end
1554# 1553#
1555#Ring of War 1554#Ring of War
1556# 1555#
1557Allowed all 1556allowed all
1558chance 1 1557chance 1
1559Object War 1558object War
1560face ring.117 1559face ring.x17
1561type 70 1560type 70
1562value 350 1561value 350
1563Str 3 1562Str 3
1564Con 3 1563Con 3
1565Dex 3 1564Dex 3
1577item_power 7 1576item_power 7
1578end 1577end
1579# 1578#
1580#Ring of Ice 1579#Ring of Ice
1581# 1580#
1582Allowed all 1581allowed all
1583chance 33 1582chance 33
1584Object Ice 1583object Ice
1585face ring.117 1584face ring.x17
1586#color_fg light_blue 1585#color_fg light_blue
1587type 70 1586type 70
1588value 30 1587value 30
1589resist_cold 30 1588resist_cold 30
1590path_attuned 4 1589path_attuned 4
1591msg 1590msg
1592 This elemental ring is one of those made at 1591This elemental ring is one of those made at
1593 the Guild of Magicks by the powerful wizards 1592the Guild of Magicks by the powerful wizards
1594 who survived the ancient war of the elementals. 1593who survived the ancient war of the elementals.
1595 The wielder is surrounded by a thin, almost 1594The wielder is surrounded by a thin, almost
1596 invisible, globe of warmth; which protects 1595invisible, globe of warmth; which protects
1597 against cold. It also grants its holder 1596against cold. It also grants its holder
1598 greater control of cold spells. 1597greater control of cold spells.
1599endmsg 1598endmsg
1600item_power 3 1599item_power 3
1601end 1600end
1602# 1601#
1603Allowed all 1602allowed all
1604chance 28 1603chance 28
1605Object Fire 1604object Fire
1606face ring.117 1605face ring.x17
1607#color_fg red 1606#color_fg red
1608type 70 1607type 70
1609value 35 1608value 35
1610resist_fire 30 1609resist_fire 30
1611path_attuned 2 1610path_attuned 2
1612msg 1611msg
1613 This elemental ring is one of those 1612This elemental ring is one of those
1614 made at the Guild of Magicks by the 1613made at the Guild of Magicks by the
1615 powerful wizards who survived the 1614powerful wizards who survived the
1616 ancient war of the elementals. 1615ancient war of the elementals.
1617 The wielder is surrounded by a thin, 1616The wielder is surrounded by a thin,
1618 almost invisible, globe of coolness; 1617almost invisible, globe of coolness;
1619 which protects against heat. It also 1618which protects against heat. It also
1620 grants the holder greater facility 1619grants the holder greater facility
1621 with fire spells. 1620with fire spells.
1622endmsg 1621endmsg
1623item_power 3 1622item_power 3
1624end 1623end
1625# 1624#
1626Allowed all 1625allowed all
1627chance 40 1626chance 40
1628Object Storm 1627object Storm
1629face ring.117 1628face ring.x17
1630type 70 1629type 70
1631value 25 1630value 25
1632resist_electricity 30 1631resist_electricity 30
1633path_attuned 8 1632path_attuned 8
1634msg 1633msg
1635 This elemental ring is one of those made 1634This elemental ring is one of those made
1636 at the Guild of Magicks by the powerful 1635at the Guild of Magicks by the powerful
1637 wizards who survived the ancient war 1636wizards who survived the ancient war
1638 of the elementals. The wielder is 1637of the elementals. The wielder is
1639 surrounded by a thin, almost invisible, 1638surrounded by a thin, almost invisible,
1640 grid of force; which protects against 1639grid of force; which protects against
1641 electricity. It also gives facility 1640electricity. It also gives facility
1642 with electricity spells. 1641with electricity spells.
1643endmsg 1642endmsg
1644item_power 3 1643item_power 3
1645end 1644end
1646# 1645#
1647Allowed all 1646allowed all
1648chance 13 1647chance 13
1649Object Magic 1648object Magic
1650face ring.117 1649face ring.x17
1651type 70 1650type 70
1652value 80 1651value 80
1653sp 1 1652sp 1
1654Pow 1 1653Pow 1
1655resist_magic 20 1654resist_magic 20
1656msg 1655msg
1657 Most highlevel wizards receive one of 1656Most highlevel wizards receive one of
1658 these from their guild when they become 1657these from their guild when they become
1659 its leader. 1658its leader.
1660endmsg 1659endmsg
1661item_power 3 1660item_power 3
1662end 1661end
1663# 1662#
1664Allowed all 1663allowed all
1665chance 7 1664chance 7
1666Object Ancient Magic 1665object Ancient Magic
1667face ring.117 1666face ring.x17
1668type 70 1667type 70
1669value 150 1668value 150
1670sp 2 1669sp 2
1671Int 1 1670Int 1
1672Pow 1 1671Pow 1
1673resist_magic 25 1672resist_magic 25
1674item_power 5 1673item_power 5
1675end 1674end
1676# 1675#
1677Allowed all 1676allowed all
1678chance 4 1677chance 4
1679Object High Magic 1678object High Magic
1680face ring.117 1679face ring.x17
1681type 70 1680type 70
1682value 250 1681value 250
1683sp 2 1682sp 2
1684material 256 1683material 256
1685Int 2 1684Int 2
1689end 1688end
1690# 1689#
1691# Slaying balrog--aint no such thing as a balrog yet, but.. when there is... 1690# Slaying balrog--aint no such thing as a balrog yet, but.. when there is...
1692# Mithrandir's magic ring--gives power according to the ability of the user 1691# Mithrandir's magic ring--gives power according to the ability of the user
1693# 1692#
1694Allowed all 1693allowed all
1695chance 1 1694chance 1
1696Object Mithrandir 1695object Mithrandir
1697slaying Balrog 1696slaying Balrog
1698face ring.117 1697face ring.x17
1699type 70 1698type 70
1700value 450 1699value 450
1701sp 2 1700sp 2
1702Int 2 1701Int 2
1703material 256 1702material 256
1706resist_fire 20 1705resist_fire 20
1707path_attuned 2 1706path_attuned 2
1708item_power 9 1707item_power 9
1709end 1708end
1710# 1709#
1711# Galadriel's magic ring. She used it for the protection and healing 1710# Galadriel's magic ring. She used it for the protection and healing
1712# of her land in Lord of the Rings 1711# of her land in Lord of the Rings
1713# 1712#
1714Allowed all 1713allowed all
1715chance 1 1714chance 1
1716Object Adamant 1715object Adamant
1717face ring.117 1716face ring.x17
1718type 70 1717type 70
1719value 450 1718value 450
1720sp 3 1719sp 3
1721material 256 1720material 256
1722Int 3 1721Int 3
1725resist_drain 100 1724resist_drain 100
1726path_attuned 257 1725path_attuned 257
1727item_power 15 1726item_power 15
1728end 1727end
1729# 1728#
1730# Elrond's magic ring. It was the greatest of the three rings. 1729# Elrond's magic ring. It was the greatest of the three rings.
1731# 1730#
1732Allowed all 1731allowed all
1733chance 1 1732chance 1
1734Object Elrond 1733object Elrond
1735face ring.117 1734face ring.x17
1736type 70 1735type 70
1737value 550 1736value 550
1738sp 3 1737sp 3
1739material 256 1738material 256
1740Int 3 1739Int 3
1746item_power 25 1745item_power 25
1747end 1746end
1748# 1747#
1749# The One Ring to rule them all 1748# The One Ring to rule them all
1750# 1749#
1751Allowed all 1750allowed all
1752chance 1 1751chance 1
1753difficulty 6 1752difficulty 6
1754Object Ruling 1753object Ruling
1755face ring.117 1754face ring.x17
1756type 70 1755type 70
1757value 1750 1756value 1750
1758sp 5 1757sp 5
1759Int 3 1758Int 3
1760Pow 3 1759Pow 3
1778item_power 15 1777item_power 15
1779end 1778end
1780# 1779#
1781# Beguilement 1780# Beguilement
1782# 1781#
1783Allowed all 1782allowed all
1784chance 13 1783chance 13
1785Object Beguilement 1784object Beguilement
1786face ring.117 1785face ring.x17
1787type 70 1786type 70
1788value 50 1787value 50
1789Cha 3 1788Cha 3
1790item_power 3 1789item_power 3
1791end 1790end
1792# 1791#
1793# Ring of the Dark Priest 1792# Ring of the Dark Priest
1794# 1793#
1795Allowed all 1794allowed all
1796chance 4 1795chance 4
1797Object the Dark Priest 1796object the Dark Priest
1798face ring.117 1797face ring.x17
1799type 70 1798type 70
1800value 50 1799value 50
1801Cha -1 1800Cha -1
1802material 256 1801material 256
1803path_attuned 131072 1802path_attuned 131072
1809item_power 3 1808item_power 3
1810end 1809end
1811# 1810#
1812# Ring of the Healer 1811# Ring of the Healer
1813# 1812#
1814Allowed all 1813allowed all
1815chance 4 1814chance 4
1816Object the Healer 1815object the Healer
1817face ring.117 1816face ring.x17
1818type 70 1817type 70
1819value 50 1818value 50
1820Cha 1 1819Cha 1
1821material 256 1820material 256
1822path_attuned 256 1821path_attuned 256
1827item_power 4 1826item_power 4
1828end 1827end
1829# 1828#
1830# Ring of the Paladin 1829# Ring of the Paladin
1831# 1830#
1832Allowed all 1831allowed all
1833chance 4 1832chance 4
1834Object the Paladin 1833object the Paladin
1835face ring.117 1834face ring.x17
1836type 70 1835type 70
1837value 50 1836value 50
1838Cha 1 1837Cha 1
1839path_attuned 65536 1838path_attuned 65536
1840path_repelled 64 1839path_repelled 64
1845item_power 4 1844item_power 4
1846end 1845end
1847# 1846#
1848# Ring of the Prelate 1847# Ring of the Prelate
1849# 1848#
1850Allowed all 1849allowed all
1851chance 7 1850chance 7
1852Object the Prelate 1851object the Prelate
1853face ring.117 1852face ring.x17
1854type 70 1853type 70
1855value 250 1854value 250
1856Cha 1 1855Cha 1
1857path_attuned 65664 1856path_attuned 65664
1858Wis 2 1857Wis 2
1862item_power 7 1861item_power 7
1863end 1862end
1864# 1863#
1865# Ring of the Demon Priest 1864# Ring of the Demon Priest
1866# 1865#
1867Allowed all 1866allowed all
1868chance 2 1867chance 2
1869difficulty 6 1868difficulty 6
1870Object the Demon Priest 1869object the Demon Priest
1871face ring.117 1870face ring.x17
1872type 70 1871type 70
1873material 256 1872material 256
1874value 250 1873value 250
1875Cha -2 1874Cha -2
1876path_attuned 131136 1875path_attuned 131136
1883item_power 6 1882item_power 6
1884end 1883end
1885# 1884#
1886# Ring of Benevolence 1885# Ring of Benevolence
1887# 1886#
1888Allowed all 1887allowed all
1889chance 2 1888chance 2
1890difficulty 6 1889difficulty 6
1891Object Benevolence 1890object Benevolence
1892face ring.117 1891face ring.x17
1893type 70 1892type 70
1894material 256 1893material 256
1895value 250 1894value 250
1896Cha 2 1895Cha 2
1897path_attuned 257 1896path_attuned 257
1908endmsg 1907endmsg
1909end 1908end
1910# 1909#
1911# Ring of the Crusade 1910# Ring of the Crusade
1912# 1911#
1913Allowed all 1912allowed all
1914chance 2 1913chance 2
1915difficulty 6 1914difficulty 6
1916Object the Crusade 1915object the Crusade
1917face ring.117 1916face ring.x17
1918type 70 1917type 70
1919value 250 1918value 250
1920material 256 1919material 256
1921Cha 2 1920Cha 2
1922path_attuned 65664 1921path_attuned 65664
1927item_power 14 1926item_power 14
1928end 1927end
1929# 1928#
1930# Ring of the Death Priest 1929# Ring of the Death Priest
1931# 1930#
1932Allowed all 1931allowed all
1933chance 1 1932chance 1
1934difficulty 7 1933difficulty 7
1935Object the Death Priest 1934object the Death Priest
1936face ring.117 1935face ring.x17
1937type 70 1936type 70
1938value 400 1937value 400
1939material 256 1938material 256
1940Cha -3 1939Cha -3
1941path_attuned 393280 1940path_attuned 393280
1949item_power 20 1948item_power 20
1950end 1949end
1951# 1950#
1952# Ring of the Saint 1951# Ring of the Saint
1953# 1952#
1954Allowed all 1953allowed all
1955difficulty 7 1954difficulty 7
1956chance 1 1955chance 1
1957Object the Saint 1956object the Saint
1958face ring.117 1957face ring.x17
1959type 70 1958type 70
1960material 256 1959material 256
1961value 400 1960value 400
1962Cha 3 1961Cha 3
1963path_attuned 65665 1962path_attuned 65665
1971item_power 25 1970item_power 25
1972end 1971end
1973# 1972#
1974# Ring of Miracles 1973# Ring of Miracles
1975# 1974#
1976Allowed all 1975allowed all
1977difficulty 7 1976difficulty 7
1978chance 1 1977chance 1
1979Object Miracles 1978object Miracles
1980face ring.117 1979face ring.x17
1981type 70 1980type 70
1982value 450 1981value 450
1983Cha 3 1982Cha 3
1984path_attuned 67969 1983path_attuned 67969
1985path_repelled 131072 1984path_repelled 131072
1992grace 3 1991grace 3
1993item_power 30 1992item_power 30
1994end 1993end
1995# 1994#
1996# 1995#
1997Allowed all 1996allowed all
1998chance 40 1997chance 40
1999Object Acid 1998object Acid
2000face ring.117 1999face ring.x17
2001type 70 2000type 70
2002value 25 2001value 25
2003resist_acid 30 2002resist_acid 30
2004material 256 2003material 256
2005resist_physical 20 2004resist_physical 20
2006msg 2005msg
2007 This elemental ring is one of those 2006This elemental ring is one of those
2008 made at the Guild of Magicks by the 2007made at the Guild of Magicks by the
2009 powerful wizards who survived the 2008powerful wizards who survived the
2010 ancient war of the elementals. 2009ancient war of the elementals.
2011 The wielder is surrounded by a thin, 2010The wielder is surrounded by a thin,
2012 almost invisible globe of base liquid; 2011almost invisible globe of base liquid;
2013 which protects against acid. It also 2012which protects against acid. It also
2014 gives a fair protection against normal attacks. 2013gives a fair protection against normal attacks.
2015endmsg 2014endmsg
2016item_power 3 2015item_power 3
2017end 2016end
2018# 2017#
2019Allowed all 2018allowed all
2020chance 17 2019chance 17
2021Object Free Action 2020object Free Action
2022face ring.117 2021face ring.x17
2023type 70 2022type 70
2024value 60 2023value 60
2025resist_slow 100 2024resist_slow 100
2026resist_paralyze 100 2025resist_paralyze 100
2027resist_confusion 30 2026resist_confusion 30
2028resist_fear 30 2027resist_fear 30
2029item_power 11 2028item_power 11
2030end 2029end
2031# 2030#
2032Allowed all 2031allowed all
2033chance 13 2032chance 13
2034Object Life 2033object Life
2035face ring.117 2034face ring.x17
2036type 70 2035type 70
2037value 80 2036value 80
2038resist_drain 100 2037resist_drain 100
2039resist_deplete 100 2038resist_deplete 100
2040hp 2 2039hp 2
2041msg 2040msg
2042 This semi-elemental ring is one of those made 2041This semi-elemental ring is one of those made
2043 at the Guild of Magics by the powerful wizards 2042at the Guild of Magics by the powerful wizards
2044 who survived the ancient war of the elementals. 2043who survived the ancient war of the elementals.
2045 The wielder is surrounded by a thin, almost 2044The wielder is surrounded by a thin, almost
2046 invisible, globe of positive energy; which 2045invisible, globe of positive energy; which
2047 makes the wielder immune from life draining. 2046makes the wielder immune from life draining.
2048 It also grants an unnatural vitality. 2047It also grants an unnatural vitality.
2049endmsg 2048endmsg
2050item_power 9 2049item_power 9
2051end 2050end
2052# 2051#
2053Allowed all 2052allowed all
2054chance 50 2053chance 50
2055Object Halvor 2054object Halvor
2056face ring.117 2055face ring.x17
2057type 70 2056type 70
2058value 20 2057value 20
2059Str 1 2058Str 1
2060resist_paralyze 100 2059resist_paralyze 100
2061item_power 5 2060item_power 5
2062end 2061end
2063# 2062#
2064Allowed all 2063allowed all
2065chance 25 2064chance 25
2066Object Yordan 2065object Yordan
2067face ring.117 2066face ring.x17
2068type 70 2067type 70
2069value 40 2068value 40
2070wc 2 2069wc 2
2071Dex 2 2070Dex 2
2072dam 2 2071dam 2
2073item_power 6 2072item_power 6
2074end 2073end
2075# 2074#
2076Allowed all 2075allowed all
2077chance 25 2076chance 25
2078Object Extremity 2077object Extremity
2079face ring.117 2078face ring.x17
2080type 70 2079type 70
2081value 40 2080value 40
2082wc 2 2081wc 2
2083Str 4 2082Str 4
2084Dex 4 2083Dex 4
2087Wis -3 2086Wis -3
2088Pow -5 2087Pow -5
2089damned 1 2088damned 1
2090end 2089end
2091# 2090#
2092Allowed all 2091allowed all
2093chance 33 2092chance 33
2094Object Doom 2093object Doom
2095face ring.117 2094face ring.x17
2096type 70 2095type 70
2097damned 1 2096damned 1
2098Str -5 2097Str -5
2099Con -5 2098Con -5
2100Dex -5 2099Dex -5
2103Pow -5 2102Pow -5
2104Cha -5 2103Cha -5
2105value 30 2104value 30
2106end 2105end
2107# 2106#
2108Allowed all 2107allowed all
2109chance 200 2108chance 200
2110Object Woe 2109object Woe
2111type 70 2110type 70
2112face ring.117 2111face ring.x17
2113cursed 1 2112cursed 1
2114Str -1 2113Str -1
2115Con -1 2114Con -1
2116Dex -1 2115Dex -1
2117Wis -1 2116Wis -1
2120Cha -1 2119Cha -1
2121luck -1 2120luck -1
2122value 5 2121value 5
2123end 2122end
2124# 2123#
2125Allowed all 2124allowed all
2126chance 15 2125chance 15
2127Object Occidental Mages 2126object Occidental Mages
2128type 70 2127type 70
2129face ring.117 2128face ring.x17
2130value 5 2129value 5
2131msg 2130msg
2132 The Ancient School of Occidental Mages created that ring during 2131The Ancient School of Occidental Mages created that ring during
2133 the Empire Wars, charging it with their Chaotic Powers. 2132the Empire Wars, charging it with their Chaotic Powers.
2134endmsg 2133endmsg
2135event_apply_plugin Python 2134event_apply_plugin Python
2136event_apply /python/items/ring_occidental_mages.py 2135event_apply /python/items/ring_occidental_mages.py
2137end 2136end
2138# 2137#
2139# Horns: 2138# Horns:
2140# 2139#
2141Allowed all 2140allowed all
2142chance 17 2141chance 17
2143Object Plenty 2142object Plenty
2144face horn2.111 2143face horn2.x11
2145type 35 2144type 35
2146level -20 2145level -20
2147hp -30 2146hp -30
2148maxhp -30 2147maxhp -30
2149value 25 2148value 25
2150other_arch spell_create_food 2149other_arch spell_create_food
2151end 2150end
2152# 2151#
2153Allowed all 2152allowed all
2154chance 10 2153chance 10
2155Object Fire 2154object Fire
2156type 35 2155type 35
2157other_arch spell_firebolt 2156other_arch spell_firebolt
2158hp -40 2157hp -40
2159maxhp -40 2158maxhp -40
2160value 10 2159value 10
2161end 2160end
2162# 2161#
2163Allowed all 2162allowed all
2164chance 10 2163chance 10
2165Object Frost 2164object Frost
2166type 35 2165type 35
2167other_arch spell_frostbolt 2166other_arch spell_frostbolt
2168hp -40 2167hp -40
2169maxhp -40 2168maxhp -40
2170value 10 2169value 10
2171end 2170end
2172# 2171#
2173Allowed all 2172allowed all
2174chance 33 2173chance 33
2175Object Aggravation 2174object Aggravation
2176type 35 2175type 35
2177other_arch spell_aggravation 2176other_arch spell_aggravation
2178hp -10 2177hp -10
2179maxhp -10 2178maxhp -10
2180value 3 2179value 3
2181cursed 1 2180cursed 1
2182end 2181end
2183# 2182#
2184Allowed all 2183allowed all
2185chance 20 2184chance 20
2186Object Fools 2185object Fools
2187type 35 2186type 35
2188other_arch spell_aggravation 2187other_arch spell_aggravation
2189hp -10 2188hp -10
2190maxhp -10 2189maxhp -10
2191value 5 2190value 5
2192luck -2 2191luck -2
2193Int -2 2192Int -2
2194damned 1 2193damned 1
2195end 2194end
2196# 2195#
2197Allowed all 2196allowed all
2198chance 5 2197chance 5
2199Object Sirens 2198object Sirens
2200msg 2199msg
2201 This is a charming little horn. 2200This is a charming little horn.
2202endmsg 2201endmsg
2203type 35 2202type 35
2204other_arch spell_siren_call 2203other_arch spell_siren_call
2205hp -20 2204hp -20
2206maxhp -20 2205maxhp -20
2207Cha 2 2206Cha 2
2208Int -2 2207Int -2
2209value 30 2208value 30
2210end 2209end
2211# 2210#
2212Allowed all 2211allowed all
2213chance 3 2212chance 3
2214Object Eorlingas 2213object Eorlingas
2215type 35 2214type 35
2216other_arch spell_firebolt 2215other_arch spell_firebolt
2217hp -100 2216hp -100
2218maxhp -100 2217maxhp -100
2219value 40 2218value 40
2220Cha 1 2219Cha 1
2221end 2220end
2222# 2221#
2223# Cloaks 2222# Cloaks
2224# 2223#
2225Allowed all 2224allowed all
2226chance 49 2225chance 49
2227Object Woe 2226object Woe
2228type 87 2227type 87
2229cursed 1 2228cursed 1
2230Str -1 2229Str -1
2231Con -1 2230Con -1
2232Dex -1 2231Dex -1
2236Cha -1 2235Cha -1
2237luck -1 2236luck -1
2238value 5 2237value 5
2239end 2238end
2240# 2239#
2241Allowed all 2240allowed all
2241chance 49
2242object Zenfur
2243type 87
2244Str -1
2245Con -1
2246Dex -1
2247Wis -1
2248Int -1
2249Pow -1
2250Cha -1
2251value 8
2252msg
2253This is Zenfur's Cloak. It was worn proudly by the hero Zenfur until he
2254was tier nine.
2255
2256Then some magician pointed out that the cloak was magical in nature and
2257had somewhat undesirable effects. It is not known what exactly Zenfur said,
2258but he was not pleased.
2259endmsg
2260end
2261#
2262allowed all
2242chance 50 2263chance 50
2243Object Woe 2264object Woe
2244type 87 2265type 87
2245cursed 1 2266cursed 1
2246Str -1 2267Str -1
2247Con -1 2268Con -1
2248Dex -1 2269Dex -1
2250Int -1 2271Int -1
2251Pow -1 2272Pow -1
2252Cha -1 2273Cha -1
2253luck -1 2274luck -1
2254value 5 2275value 5
2255face cloak_black.111 2276face cloak_black.x11
2256stand_still 1 2277stand_still 1
2278msg
2279This cloak holds strong powers - and they are not good.
2280endmsg
2257end 2281end
2258# 2282#
2259Allowed all 2283allowed all
2260chance 50 2284chance 50
2261Object Woe 2285object Woe
2262type 87 2286type 87
2263cursed 1 2287cursed 1
2264Str -1 2288Str -1
2265Con -1 2289Con -1
2266Dex -1 2290Dex -1
2268Int -1 2292Int -1
2269Pow -1 2293Pow -1
2270Cha -1 2294Cha -1
2271luck -1 2295luck -1
2272value 5 2296value 5
2273face cloak_red.111 2297face cloak_red.x11
2274stand_still 1 2298stand_still 1
2299msg
2300This cloak holds strong powers - and they are not good.
2301endmsg
2275end 2302end
2276# 2303#
2277Allowed all 2304allowed all
2278chance 50 2305chance 50
2279Object Woe 2306object Woe
2280type 87 2307type 87
2281cursed 1 2308cursed 1
2282Str -1 2309Str -1
2283Con -1 2310Con -1
2284Dex -1 2311Dex -1
2286Int -1 2313Int -1
2287Pow -1 2314Pow -1
2288Cha -1 2315Cha -1
2289luck -1 2316luck -1
2290value 5 2317value 5
2291face cloak_white.111 2318face cloak_white.x11
2292stand_still 1 2319stand_still 1
2320msg
2321This cloak holds strong powers - and they are not good.
2322endmsg
2293end 2323end
2294# 2324#
2295Allowed all 2325allowed all
2296chance 3 2326chance 3
2297Object Doom 2327object Doom
2298type 87 2328type 87
2299damned 1 2329damned 1
2300Str -5 2330Str -5
2301Con -5 2331Con -5
2302Dex -5 2332Dex -5
2304Int -5 2334Int -5
2305Pow -5 2335Pow -5
2306Cha -5 2336Cha -5
2307value 30 2337value 30
2308magic 1 2338magic 1
2309face cloak_lgrey.111 2339face cloak_lgrey.x11
2310stand_still 1 2340stand_still 1
2341msg
2342Looking at your cloak, things do not look too good, to use an
2343enourmously exaggerated euphemism.
2344endmsg
2311end 2345end
2312# 2346#
2313Allowed all 2347allowed all
2314chance 3 2348chance 3
2315Object Doom 2349object Doom
2316type 87 2350type 87
2317damned 1 2351damned 1
2318Str -5 2352Str -5
2319Con -5 2353Con -5
2320Dex -5 2354Dex -5
2322Int -5 2356Int -5
2323Pow -5 2357Pow -5
2324Cha -5 2358Cha -5
2325value 30 2359value 30
2326magic 1 2360magic 1
2327face cloak_black.111 2361face cloak_black.x11
2328stand_still 1 2362stand_still 1
2363msg
2364Looking at your cloak, things do not look too good, to use an
2365enourmously exaggerated euphemism.
2366endmsg
2329end 2367end
2330# 2368#
2331Allowed all 2369allowed all
2332chance 2 2370chance 2
2333Object the Magi 2371object the Magi
2334type 87 2372type 87
2335weight 120 2373weight 120
2336Pow 1 2374Pow 1
2337Wis 1 2375Wis 1
2338sp 2 2376sp 2
2339value 2000 2377value 2000
2340material 8320 2378material 8320
2341materialname astolare 2379materialname astolare
2342face cloak_purple.111 2380face cloak_purple.x11
2343stand_still 1 2381stand_still 1
2344item_power 4 2382item_power 4
2345end 2383end
2346# 2384#
2347Allowed all 2385allowed all
2348chance 2 2386chance 2
2349Object Lythander 2387object Lythander
2350type 87 2388type 87
2351weight 120 2389weight 120
2352Pow 2 2390Pow 2
2353sp 1 2391sp 1
2354resist_confusion 55 2392resist_confusion 55
2355value 2000 2393value 2000
2356material 256 2394material 256
2357face serp_cloak.111 2395face serp_cloak.x11
2358stand_still 1 2396stand_still 1
2359item_power 5 2397item_power 5
2360end 2398end
2361# 2399#
2362Allowed all 2400allowed all
2363chance 2 2401chance 2
2364Object Gaea 2402object Gaea
2365type 87 2403type 87
2366weight 120 2404weight 120
2367reflect_spell 1 2405reflect_spell 1
2368Str -1 2406Str -1
2369hp 2 2407hp 2
2370resist_fire 10 2408resist_fire 10
2371resist_cold 10 2409resist_cold 10
2372resist_electricity 10 2410resist_electricity 10
2373value 2000 2411value 2000
2374material 256 2412material 256
2375face serp_cloak.111 2413face serp_cloak.x11
2376stand_still 1 2414stand_still 1
2377item_power 3 2415item_power 3
2378end 2416end
2379# 2417#
2380Allowed all 2418allowed all
2381chance 50 2419chance 50
2382difficulty 3 2420difficulty 3
2383Object minor protection 2421object minor protection
2384weight 120 2422weight 120
2385type 87 2423type 87
2386value 20 2424value 20
2387ac 1 2425ac 1
2388face cloak_lgrey.111 2426face cloak_lgrey.x11
2389stand_still 1 2427stand_still 1
2390item_power 1 2428item_power 1
2391end 2429end
2392# 2430#
2393Allowed all 2431allowed all
2394chance 10 2432chance 10
2395difficulty 5 2433difficulty 5
2396Object intermediate protection 2434object intermediate protection
2397weight 125 2435weight 125
2398type 87 2436type 87
2399value 100 2437value 100
2400ac 2 2438ac 2
2401face cloak_white.111 2439face cloak_white.x11
2402stand_still 1 2440stand_still 1
2403item_power 2 2441item_power 2
2404end 2442end
2405# 2443#
2406Allowed all 2444allowed all
2407chance 3 2445chance 3
2408difficulty 7 2446difficulty 7
2409Object greater protection 2447object greater protection
2410type 87 2448type 87
2411weight 130 2449weight 130
2412value 300 2450value 300
2413ac 3 2451ac 3
2414material 8320 2452material 8320
2415materialname astolare 2453materialname astolare
2416face cloak_white.111 2454face cloak_white.x11
2417stand_still 1 2455stand_still 1
2418item_power 3 2456item_power 3
2419end 2457end
2420# 2458#
2421Allowed all 2459allowed all
2422chance 10 2460chance 10
2423difficulty 3 2461difficulty 3
2424Object beguilement 2462object beguilement
2425type 87 2463type 87
2426value 100 2464value 100
2427Cha 2 2465Cha 2
2428weight 110 2466weight 110
2429face cloak_lblue.111 2467face cloak_lblue.x11
2430stand_still 1 2468stand_still 1
2431item_power 2 2469item_power 2
2432end 2470end
2433# 2471#
2434Allowed all 2472allowed all
2435chance 3 2473chance 3
2436difficulty 3 2474difficulty 3
2437Object Asbestos 2475object Asbestos
2438type 87 2476type 87
2439weight 135 2477weight 135
2440value 400 2478value 400
2441resist_fire 25 2479resist_fire 25
2442material 8320 2480material 8320
2443materialname asbestos 2481materialname asbestos
2444face cloak_lgrey.111 2482face cloak_lgrey.x11
2445stand_still 1 2483stand_still 1
2446item_power 1 2484item_power 1
2447end 2485end
2448# 2486#
2449Allowed all 2487allowed all
2450chance 3 2488chance 3
2451difficulty 3 2489difficulty 3
2452Object Warmth 2490object Warmth
2453type 87 2491type 87
2454weight 140 2492weight 140
2455value 350 2493value 350
2456resist_cold 25 2494resist_cold 25
2457material 8320 2495material 8320
2458materialname wool 2496materialname wool
2459face cloak_red.111 2497face cloak_red.x11
2460stand_still 1 2498stand_still 1
2461item_power 1 2499item_power 1
2462end 2500end
2463# 2501#
2464Allowed all 2502allowed all
2465chance 3 2503chance 3
2466difficulty 3 2504difficulty 3
2467Object Insulation 2505object Insulation
2468type 87 2506type 87
2469weight 140 2507weight 140
2470value 350 2508value 350
2471resist_electricity 25 2509resist_electricity 25
2472material 8320 2510material 8320
2473materialname rubber 2511materialname rubber
2474face cloak_white.111 2512face cloak_white.x11
2475stand_still 1 2513stand_still 1
2476item_power 1 2514item_power 1
2477end 2515end
2478# 2516#
2479Allowed all 2517allowed all
2480chance 2 2518chance 2
2481difficulty 3 2519difficulty 3
2482Object Acid Proofing 2520object Acid Proofing
2483type 87 2521type 87
2484value 500 2522value 500
2485weight 95 2523weight 95
2486resist_acid 65 2524resist_acid 65
2487material 8320 2525material 8320
2488materialname astolare 2526materialname astolare
2489face cloak_black.111 2527face cloak_black.x11
2490stand_still 1 2528stand_still 1
2491item_power 3 2529item_power 3
2492end 2530end
2493# 2531#
2494Allowed all 2532allowed all
2495chance 3 2533chance 3
2496difficulty 3 2534difficulty 3
2497Object the Devourers 2535object the Devourers
2498type 87 2536type 87
2499value 500 2537value 500
2500weight 50 2538weight 50
2501resist_drain 30 2539resist_drain 30
2502resist_ghosthit 30 2540resist_ghosthit 30
2503resist_deplete 100 2541resist_deplete 100
2504material 8320 2542material 8320
2505materialname astolare 2543materialname astolare
2506Cha -2 2544Cha -2
2507face cloak_black.111 2545face cloak_black.x11
2508stand_still 1 2546stand_still 1
2509item_power 4 2547item_power 4
2510end 2548end
2511# 2549#
2512Allowed all 2550allowed all
2513chance 1 2551chance 1
2514difficulty 5 2552difficulty 5
2515Object Gorokh 2553object Gorokh
2516type 87 2554type 87
2517value 5000 2555value 5000
2518weight 200 2556weight 200
2519resist_fire 30 2557resist_fire 30
2520resist_acid 50 2558resist_acid 50
2521material 0 2559material 0
2522Cha -6 2560Cha -6
2523face cloak_red.111 2561face cloak_red.x11
2524stand_still 1 2562stand_still 1
2525end 2563end
2526# 2564#
2527Allowed all 2565allowed all
2528chance 1 2566chance 1
2529difficulty 7 2567difficulty 7
2530Object the Underworld 2568object the Underworld
2531type 87 2569type 87
2532value 2000 2570value 2000
2533resist_confusion 50 2571resist_confusion 50
2534resist_acid 90 2572resist_acid 90
2535resist_drain 100 2573resist_drain 100
2538resist_deplete 100 2576resist_deplete 100
2539weight 150 2577weight 150
2540material 8320 2578material 8320
2541materialname astolare 2579materialname astolare
2542Cha -4 2580Cha -4
2543face cloak_black.111 2581face cloak_black.x11
2544stand_still 1 2582stand_still 1
2545item_power 19 2583item_power 19
2546end 2584end
2547# 2585#
2548Allowed all 2586allowed all
2549chance 1 2587chance 1
2550difficulty 20 2588difficulty 20
2551Object Invisibility 2589object Invisibility
2552type 87 2590type 87
2553value 800 2591value 800
2554weight 130 2592weight 130
2555material 8320 2593material 8320
2556materialname astolare 2594materialname astolare
2557Str -10 2595Str -10
2558Dex -10 2596Dex -10
2559Con -10 2597Con -10
2560msg 2598msg
2561 This cloak sucks vitality from the 2599This cloak sucks vitality from the
2562 wearer in order to maintain his 2600wearer in order to maintain G<his|her>
2563 invisibility. 2601invisibility.
2564endmsg 2602endmsg
2565make_invisible 1 2603make_invisible 1
2566resist_paralyze -100 2604resist_paralyze -100
2567face cloak_trans.112 2605face cloak_trans.x12
2568stand_still 1 2606stand_still 1
2569end 2607end
2570# 2608#
2571Allowed all 2609allowed all
2572chance 1 2610chance 1
2573difficulty 50 2611difficulty 50
2574Object Unholy Protection 2612object Unholy Protection
2575type 87 2613type 87
2576damned 1 2614damned 1
2577weight 50 2615weight 50
2578resist_holyword 50 2616resist_holyword 50
2579material 8320 2617material 8320
2580materialname astolare 2618materialname astolare
2581Wis -2 2619Wis -2
2582face cloak_black.111 2620face cloak_black.x11
2583stand_still 1 2621stand_still 1
2584item_power 5 2622item_power 5
2585end 2623end
2586# 2624#
2587#Artifact boots! 2625#Artifact boots!
2588# 2626#
2589Allowed low_boots 2627allowed low_boots
2590chance 1 2628chance 1
2591difficulty 15 2629difficulty 15
2592Object Invisibility 2630object Invisibility
2593type 99 2631type 99
2594value 800 2632value 800
2595weight 60 2633weight 60
2596material 8200 2634material 8200
2597materialname dragonhide 2635materialname dragonhide
2598ac 1 2636ac 1
2599Str -10 2637Str -10
2600Dex -12 2638Dex -12
2601Con -10 2639Con -10
2602msg 2640msg
2603 These shoes prevent others from seeing 2641These shoes prevent others from seeing
2604 your movements. Bewarned however that 2642your movements. Bewarned however that
2605 they slow you down and draw strength 2643they slow you down and draw strength
2606 from you. Not only this but some 2644from you. Not only this but some
2607 enemies can still see you with magic! 2645enemies can still see you with magic!
2608endmsg 2646endmsg
2609make_invisible 1 2647make_invisible 1
2610face low_boots.111 2648face low_boots.x11
2611stand_still 1 2649stand_still 1
2612end 2650end
2613# 2651#
2614Allowed !sandals 2652allowed !sandals
2615chance 20 2653chance 20
2616difficulty 2 2654difficulty 2
2617Object granite 2655object granite
2618type 99 2656type 99
2619value 60 2657value 60
2620weight 1000 2658weight 1000
2621material 8256 2659material 8256
2622materialname granite 2660materialname granite
2623ac 5 2661ac 5
2624msg 2662msg
2625 What strange boots, they look very 2663What strange boots, they look very
2626 protective, but amazingly heavy. 2664protective, but amazingly heavy.
2627 There also doesn't appear to be 2665There also doesn't appear to be
2628 any laces, you wonder how you're ever 2666any laces, you wonder how you're ever
2629 going to take them off. 2667going to take them off.
2630endmsg 2668endmsg
2631face high_boots.111 2669face high_boots.x11
2632stand_still 1 2670stand_still 1
2633cursed 1 2671cursed 1
2634end 2672end
2635# 2673#
2636Allowed !high_boots 2674allowed !high_boots
2637chance 40 2675chance 40
2638difficulty 1 2676difficulty 1
2639Object mobility 2677object mobility
2640type 99 2678type 99
2641value 50 2679value 50
2642weight 80 2680weight 80
2643material 8200 2681material 8200
2644materialname dragonhide 2682materialname dragonhide
2646resist_slow 20 2684resist_slow 20
2647resist_paralyze 20 2685resist_paralyze 20
2648resist_fear 50 2686resist_fear 50
2649speed 2 2687speed 2
2650msg 2688msg
2651 These sure look like useful boots. 2689These sure look like useful boots.
2652 They feel alittle lighter and appear 2690They feel a little lighter and appear
2653 abit sleeker. 2691a bit sleeker.
2654endmsg 2692endmsg
2655stand_still 1 2693stand_still 1
2656item_power 4 2694item_power 4
2657end 2695end
2658# 2696#
2659Allowed all 2697allowed all
2660chance 40 2698chance 40
2661difficulty 1 2699difficulty 1
2662Object clawing 2700object clawing
2663type 99 2701type 99
2664value 50 2702value 50
2665weight 120 2703weight 120
2666material 8200 2704material 8200
2667materialname dragonhide 2705materialname dragonhide
2668dam 2 2706dam 12
2669msg 2707msg
2670 These boots have sharpened claws at the 2708These boots have sharpened claws at the
2671 tips, which look like they would aid 2709tips, which look like they would aid
2672 greatly in combat. 2710greatly in combat.
2673endmsg 2711endmsg
2674stand_still 1 2712stand_still 1
2675item_power 1 2713item_power 1
2676end 2714end
2677# 2715#
2678Allowed all 2716allowed all
2679chance 40 2717chance 40
2680difficulty 1 2718difficulty 1
2681Object steel 2719object steel
2682type 99 2720type 99
2683value 50 2721value 50
2684weight 110 2722weight 110
2685material 8194 2723material 8194
2686materialname steel 2724materialname steel
2687ac 1 2725ac 1
2688resist_physical 10 2726resist_physical 10
2689msg 2727msg
2690 The metal exterior provides alittle 2728The metal exterior provides a little
2691 extra resistance. 2729extra resistance.
2692endmsg 2730endmsg
2693stand_still 1 2731stand_still 1
2694item_power 2 2732item_power 2
2695end 2733end
2696# 2734#
2697 2735
2698# 2736#
2699#Artifact gems! 2737#Artifact gems!
2700# 2738#
2701Allowed diamond 2739allowed diamond
2702chance 60 2740chance 60
2703Object great value 2741object great value
2704face pretty_crystal.111 2742face pretty_crystal.x11
2705stand_still 1 2743stand_still 1
2706value 10 2744value 10
2707type 60 2745type 60
2708weight 110 2746weight 110
2709end 2747end
2710# 2748#
2711Allowed diamond 2749allowed diamond
2712chance 20 2750chance 20
2713difficulty 3 2751difficulty 3
2714Object exceptional beauty 2752object exceptional beauty
2715face pretty_crystal.111 2753face pretty_crystal.x11
2716value 100 2754value 100
2717stand_still 1 2755stand_still 1
2718type 60 2756type 60
2719weight 130 2757weight 130
2720nrof 4 2758nrof 4
2721end 2759end
2722# 2760#
2723Allowed diamond 2761allowed diamond
2724chance 5 2762chance 5
2725difficulty 5 2763difficulty 5
2726Object flawless beauty 2764object flawless beauty
2727face pretty_crystal.111 2765face pretty_crystal.x11
2728value 1000 2766value 1000
2729stand_still 1 2767stand_still 1
2730type 60 2768type 60
2731weight 200 2769weight 200
2732nrof 4 2770nrof 4
2733end 2771end
2734# 2772#
2735Allowed ruby 2773allowed ruby
2736chance 60 2774chance 60
2737Object great value 2775object great value
2738face pretty_ruby.111 2776face pretty_ruby.x11
2739stand_still 1 2777stand_still 1
2740value 10 2778value 10
2741type 60 2779type 60
2742weight 110 2780weight 110
2743end 2781end
2744# 2782#
2745Allowed ruby 2783allowed ruby
2746chance 20 2784chance 20
2747difficulty 3 2785difficulty 3
2748Object exceptional beauty 2786object exceptional beauty
2749face pretty_ruby.111 2787face pretty_ruby.x11
2750value 100 2788value 100
2751stand_still 1 2789stand_still 1
2752type 60 2790type 60
2753weight 130 2791weight 130
2754nrof 4 2792nrof 4
2755end 2793end
2756# 2794#
2757Allowed ruby 2795allowed ruby
2758chance 5 2796chance 5
2759difficulty 5 2797difficulty 5
2760Object flawless beauty 2798object flawless beauty
2761face pretty_ruby.111 2799face pretty_ruby.x11
2762value 1000 2800value 1000
2763stand_still 1 2801stand_still 1
2764type 60 2802type 60
2765weight 200 2803weight 200
2766nrof 4 2804nrof 4
2767end 2805end
2768# 2806#
2769Allowed sapphire 2807allowed sapphire
2770chance 60 2808chance 60
2771Object great value 2809object great value
2772face pretty_sapphire.111 2810face pretty_sapphire.x11
2773stand_still 1 2811stand_still 1
2774value 10 2812value 10
2775type 60 2813type 60
2776weight 110 2814weight 110
2777end 2815end
2778# 2816#
2779Allowed sapphire 2817allowed sapphire
2780chance 20 2818chance 20
2781difficulty 3 2819difficulty 3
2782Object exceptional beauty 2820object exceptional beauty
2783face pretty_sapphire.111 2821face pretty_sapphire.x11
2784value 100 2822value 100
2785stand_still 1 2823stand_still 1
2786type 60 2824type 60
2787weight 130 2825weight 130
2788nrof 4 2826nrof 4
2789end 2827end
2790# 2828#
2791Allowed sapphire 2829allowed sapphire
2792chance 5 2830chance 5
2793difficulty 5 2831difficulty 5
2794Object flawless beauty 2832object flawless beauty
2795face pretty_sapphire.111 2833face pretty_sapphire.x11
2796value 1000 2834value 1000
2797stand_still 1 2835stand_still 1
2798type 60 2836type 60
2799weight 200 2837weight 200
2800nrof 4 2838nrof 4
2801end 2839end
2802# 2840#
2803Allowed emerald 2841allowed emerald
2804chance 60 2842chance 60
2805Object great value 2843object great value
2806face pretty_emerald.111 2844face pretty_emerald.x11
2807stand_still 1 2845stand_still 1
2808value 10 2846value 10
2809type 60 2847type 60
2810weight 110 2848weight 110
2811end 2849end
2812# 2850#
2813Allowed emerald 2851allowed emerald
2814chance 20 2852chance 20
2815difficulty 3 2853difficulty 3
2816Object exceptional beauty 2854object exceptional beauty
2817face pretty_emerald.111 2855face pretty_emerald.x11
2818value 100 2856value 100
2819stand_still 1 2857stand_still 1
2820type 60 2858type 60
2821weight 130 2859weight 130
2822nrof 4 2860nrof 4
2823end 2861end
2824# 2862#
2825Allowed emerald 2863allowed emerald
2826chance 5 2864chance 5
2827difficulty 5 2865difficulty 5
2828Object flawless beauty 2866object flawless beauty
2829face pretty_emerald.111 2867face pretty_emerald.x11
2830value 1000 2868value 1000
2831stand_still 1 2869stand_still 1
2832type 60 2870type 60
2833weight 200 2871weight 200
2834nrof 4 2872nrof 4
2835end 2873end
2836# 2874#
2837Allowed amethyst 2875allowed amethyst
2838chance 60 2876chance 60
2839Object great value 2877object great value
2840face pretty_amethyst.111 2878face pretty_amethyst.x11
2841stand_still 1 2879stand_still 1
2842value 10 2880value 10
2843type 60 2881type 60
2844weight 110 2882weight 110
2845end 2883end
2846# 2884#
2847Allowed amethyst 2885allowed amethyst
2848chance 20 2886chance 20
2849difficulty 3 2887difficulty 3
2850Object exceptional beauty 2888object exceptional beauty
2851face pretty_amethyst.111 2889face pretty_amethyst.x11
2852value 100 2890value 100
2853stand_still 1 2891stand_still 1
2854type 60 2892type 60
2855weight 130 2893weight 130
2856nrof 4 2894nrof 4
2857end 2895end
2858# 2896#
2859Allowed amethyst 2897allowed amethyst
2860chance 5 2898chance 5
2861difficulty 5 2899difficulty 5
2862Object flawless beauty 2900object flawless beauty
2863face pretty_amethyst.111 2901face pretty_amethyst.x11
2864value 1000 2902value 1000
2865stand_still 1 2903stand_still 1
2866type 60 2904type 60
2867weight 200 2905weight 200
2868nrof 4 2906nrof 4
2869end 2907end
2870# 2908#
2871# 2909#
2872#Amulets! 2910#Amulets!
2873# 2911#
2874Allowed all 2912allowed all
2875chance 127 2913chance 127
2876Object Shielding 2914object Shielding
2877face amulet_lif.111 2915face amulet_lif.x11
2878resist_physical 20 2916resist_physical 20
2879type 39 2917type 39
2880value 20 2918value 20
2881item_power 1 2919item_power 1
2882end 2920end
2883# 2921#
2884Allowed all 2922allowed all
2885chance 127 2923chance 127
2886Object Sustenance 2924object Sustenance
2887face amulet_lif.111 2925face amulet_lif.x11
2888food 15 2926food 15
2889type 39 2927type 39
2890value 20 2928value 20
2891# item power calculation is skewed because of 2929# item power calculation is skewed because of
2892# the high food value above 2930# the high food value above
2893item_power 4 2931item_power 4
2894end 2932end
2895# 2933#
2896Allowed all 2934allowed all
2897chance 100 2935chance 100
2898difficulty 6 2936difficulty 6
2899Object Empowerment 2937object Empowerment
2900face amulet_lif.111 2938face amulet_lif.x11
2901material 256 2939material 256
2902type 39 2940type 39
2903value 40 2941value 40
2904sp 2 2942sp 2
2905item_power 2 2943item_power 2
2906end 2944end
2907# 2945#
2908Allowed all 2946allowed all
2909chance 255 2947chance 255
2910difficulty 6 2948difficulty 6
2911Object Sorrow 2949object Sorrow
2912face amulet_lif.111 2950face amulet_lif.x11
2913type 39 2951type 39
2914value 0 2952value 0
2915cursed 1 2953cursed 1
2916resist_magic -100 2954resist_magic -100
2917end 2955end
2918# 2956#
2919Allowed all 2957allowed all
2920chance 50 2958chance 50
2921difficulty 4 2959difficulty 4
2922Object Calling Death 2960object Calling Death
2923face amulet_lif.111 2961face amulet_lif.x11
2924type 39 2962type 39
2925value 0 2963value 0
2926damned 1 2964damned 1
2927cursed 1 2965cursed 1
2928resist_physical -100 2966resist_physical -100
2932resist_cold -100 2970resist_cold -100
2933resist_confusion -100 2971resist_confusion -100
2934resist_acid -100 2972resist_acid -100
2935end 2973end
2936# 2974#
2937Allowed all 2975allowed all
2938chance 10 2976chance 10
2939difficulty 10 2977difficulty 10
2940Object Aethereality 2978object Aethereality
2941face amulet_lif.111 2979face amulet_lif.x11
2942material 256 2980material 256
2943type 39 2981type 39
2944value 3000 2982value 3000
2945resist_physical 50 2983resist_physical 50
2946item_power 3 2984item_power 3
2947end 2985end
2948# 2986#
2949Allowed all 2987allowed all
2950chance 10 2988chance 10
2951difficulty 10 2989difficulty 10
2952Object Oghul 2990object Oghul
2953type 39 2991type 39
2954face amulet_lif.111 2992face amulet_lif.x11
2955material 256 2993material 256
2956sp 7 2994sp 7
2957value 4000 2995value 4000
2958item_power 5 2996item_power 5
2959msg 2997msg
2963alone. As an aid, he created a large number of amulets that would help him 3001alone. As an aid, he created a large number of amulets that would help him
2964to regenerate his magical energy. 3002to regenerate his magical energy.
2965endmsg 3003endmsg
2966end 3004end
2967# 3005#
2968Allowed all 3006allowed all
2969chance 75 3007chance 75
2970difficulty 7 3008difficulty 7
2971Object Deflection 3009object Deflection
2972reflect_spell 1 3010reflect_spell 1
2973face amulet_lif.111 3011face amulet_lif.x11
2974reflect_missile 1 3012reflect_missile 1
2975material 256 3013material 256
2976ac 2 3014ac 2
2977resist_physical 30 3015resist_physical 30
2978type 39 3016type 39
2979value 1000 3017value 1000
2980item_power 5 3018item_power 5
2981end 3019end
2982# 3020#
2983Allowed all 3021allowed all
2984chance 50 3022chance 50
2985difficulty 7 3023difficulty 7
2986Object the Shielded Mind 3024object the Shielded Mind
2987face amulet_lif.111 3025face amulet_lif.x11
2988type 39 3026type 39
2989material 256 3027material 256
2990resist_confusion 100 3028resist_confusion 100
2991resist_paralyze 100 3029resist_paralyze 100
2992resist_fear 100 3030resist_fear 100
2993value 1000 3031value 1000
2994item_power 14 3032item_power 14
2995end 3033end
2996# 3034#
2997Allowed all 3035allowed all
2998chance 40 3036chance 40
2999difficulty 5 3037difficulty 5
3000Object Free Action 3038object Free Action
3001face amulet_lif.111 3039face amulet_lif.x11
3002type 39 3040type 39
3003material 256 3041material 256
3004value 300 3042value 300
3005resist_slow 100 3043resist_slow 100
3006resist_paralyze 100 3044resist_paralyze 100
3007resist_confusion 30 3045resist_confusion 30
3008resist_fear 30 3046resist_fear 30
3009item_power 8 3047item_power 8
3010end 3048end
3011# 3049#
3012Allowed all 3050allowed all
3013chance 5 3051chance 5
3014difficulty 9 3052difficulty 9
3015Object the Magi 3053object the Magi
3016face amulet_lif.111 3054face amulet_lif.x11
3017type 39 3055type 39
3018material 256 3056material 256
3019sp 5 3057sp 5
3020Int 2 3058Int 2
3021Pow 2 3059Pow 2
3023resist_magic 30 3061resist_magic 30
3024reflect_spell 1 3062reflect_spell 1
3025item_power 12 3063item_power 12
3026end 3064end
3027# 3065#
3028Allowed all 3066allowed all
3029chance 30 3067chance 30
3030difficulty 9 3068difficulty 9
3031Object Holiness 3069object Holiness
3032face amulet_lif.111 3070face amulet_lif.x11
3033type 39 3071type 39
3034material 256 3072material 256
3035Wis 3 3073Wis 3
3036value 300 3074value 300
3037path_attuned 385 3075path_attuned 385
3038item_power 3 3076item_power 3
3039end 3077end
3040# 3078#
3041Allowed all 3079allowed all
3042chance 60 3080chance 60
3043difficulty 9 3081difficulty 9
3044Object Unholiness 3082object Unholiness
3045face amulet_lif.111 3083face amulet_lif.x11
3046type 39 3084type 39
3047value 10 3085value 10
3048path_repelled 257 3086path_repelled 257
3049path_attuned 192 3087path_attuned 192
3050damned 1 3088damned 1
3051cursed 1 3089cursed 1
3052end 3090end
3053# 3091#
3054Allowed all 3092allowed all
3055chance 1 3093chance 1
3056difficulty 9 3094difficulty 9
3057Object Destruction 3095object Destruction
3058face amulet_lif.111 3096face amulet_lif.x11
3059type 39 3097type 39
3060value 800 3098value 800
3061material 256 3099material 256
3062path_repelled 256 3100path_repelled 256
3063path_attuned 542 3101path_attuned 542
3064path_denied 2048 3102path_denied 2048
3065end 3103end
3066# 3104#
3067# Containers (the following is hack to get a quiver for bolts also) 3105# Containers (the following is hack to get a quiver for bolts also)
3068# It would be better that it would be possible to define object 3106# It would be better that it would be possible to define object
3069# NONE also, and not use the fixed probability. 3107# NONE also, and not use the fixed probability.
3070# 3108#
3071Allowed quiver 3109allowed quiver
3072chance 100 3110chance 100
3073Object Holding Bolts 3111object Holding Bolts
3074type 122 3112type 122
3075value 100 3113value 100
3076race crossbow bolts 3114race bolt
3077Str 80 3115Str 80
3078end 3116end
3079# 3117#
3080Allowed quiver 3118allowed quiver
3081chance 100 3119chance 100
3082Object Holding Arrows 3120object Holding Arrows
3083type 122 3121type 122
3084value 100 3122value 100
3085Str 80 3123Str 80
3086end 3124end
3087# 3125#
3088Allowed !quiver,!cauldron 3126allowed !quiver,!cauldron
3089chance 100 3127chance 100
3090Object Holding 3128object Holding
3091type 122 3129type 122
3092value 100 3130value 100
3093Str 50 3131Str 50
3094end 3132end
3095# 3133#
3096Allowed bag 3134allowed bag
3097chance 10 3135chance 10
3098difficulty 7 3136difficulty 7
3099Object Great Holding 3137object Great Holding
3100type 122 3138type 122
3101value 100 3139value 100
3102Str 75 3140Str 75
3103end 3141end
3104# 3142#
3105# Arrows/Missiles 3143# Arrows/Missiles
3106# 3144#
3107Allowed all 3145allowed all
3108chance 250 3146chance 250
3109Object inaccuracy 3147object inaccuracy
3110type 13 3148type 13
3111wc -7 3149wc -7
3112cursed 1 3150cursed 1
3113end 3151end
3114# 3152#
3115Allowed all 3153allowed all
3116chance 100 3154chance 100
3117difficulty 5 3155difficulty 5
3118Object Accuracy 3156object Accuracy
3119type 13 3157type 13
3120value 5 3158value 5
3121wc 7 3159wc 7
3122dam -8 3160dam -8
3123food 50 3161food 50
3124end 3162end
3125# 3163#
3126Allowed all 3164allowed all
3127chance 100 3165chance 100
3128Object Fire 3166object Fire
3129attacktype 4 3167attacktype 4
3130type 13 3168type 13
3131dam -8 3169dam -8
3132value 6 3170value 6
3133end 3171end
3134# 3172#
3135Allowed all 3173allowed all
3136chance 100 3174chance 100
3137Object Frost 3175object Frost
3138attacktype 16 3176attacktype 16
3139type 13 3177type 13
3140dam -8 3178dam -8
3141value 6 3179value 6
3142end 3180end
3143# 3181#
3144Allowed all 3182allowed all
3145chance 100 3183chance 100
3146difficulty 6 3184difficulty 6
3147Object Poison 3185object Poison
3148attacktype 1025 3186attacktype 1025
3149type 13 3187type 13
3150dam -8 3188dam -8
3151value 6 3189value 6
3152magic 1 3190magic 1
3153end 3191end
3154# 3192#
3155Allowed all 3193allowed all
3156chance 100 3194chance 100
3157Object Lightning 3195object Lightning
3158attacktype 8 3196attacktype 8
3159type 13 3197type 13
3160dam -8 3198dam -8
3161value 6 3199value 6
3162end 3200end
3163# 3201#
3164Allowed all 3202allowed all
3165chance 50 3203chance 50
3166difficulty 6 3204difficulty 6
3167Object Paralysis 3205object Paralysis
3168attacktype 4097 3206attacktype 4097
3169type 13 3207type 13
3170value 8 3208value 8
3171wc 2 3209wc 2
3172food 80 3210food 80
3176These missiles also broken much more easily 3214These missiles also broken much more easily
3177than normal ones. 3215than normal ones.
3178endmsg 3216endmsg
3179end 3217end
3180# 3218#
3181Allowed all 3219allowed all
3182chance 20 3220chance 20
3183Object Assassinating Trolls 3221object Assassinating Trolls
3184slaying troll 3222slaying troll
3185attacktype 131072 3223attacktype 131072
3186msg 3224msg
3187 These missiles are inscribed with 3225These missiles are inscribed with
3188 powerful runes for the bane of 3226powerful runes for the bane of
3189 trolls. A scratch from one of 3227trolls. A scratch from one of
3190 these arrows could smite one dead. 3228these arrows could smite one dead.
3191endmsg 3229endmsg
3192type 13 3230type 13
3193value 500 3231value 500
3194wc 7 3232wc 7
3195dam -20 3233dam -20
3196food 100 3234food 100
3197nrof 10 3235nrof 10
3198level 40 3236level 40
3199end 3237end
3200# 3238#
3201Allowed all 3239allowed all
3202chance 20 3240chance 20
3203difficulty 5 3241difficulty 5
3204Object Assassinating Dragons 3242object Assassinating Dragons
3205slaying dragon 3243slaying dragon
3206attacktype 131072 3244attacktype 131072
3207msg 3245msg
3208 These missiles are inscribed with 3246These missiles are inscribed with
3209 powerful runes for the bane of 3247powerful runes for the bane of
3210 dragons. A scratch from one of 3248dragons. A scratch from one of
3211 these arrows could smite one dead. 3249these arrows could smite one dead.
3212endmsg 3250endmsg
3213type 13 3251type 13
3214value 1000 3252value 1000
3215wc 7 3253wc 7
3216dam -20 3254dam -20
3219resist_fire 100 3257resist_fire 100
3220 3258
3221level 50 3259level 50
3222end 3260end
3223# 3261#
3224Allowed all 3262allowed all
3225chance 20 3263chance 20
3226difficulty 5 3264difficulty 5
3227Object Blessedness 3265object Blessedness
3228slaying undead,demon 3266slaying undead,demon
3229msg 3267msg
3230 These missiles are invested 3268These missiles are invested
3231 with a great holiness so that 3269with a great holiness so that
3232 even a scratch might banish 3270even a scratch might banish
3233 an undead creature or a demon 3271an undead creature or a demon
3234 back to the hell from which it 3272back to the hell from which it
3235 came. 3273came.
3236endmsg 3274endmsg
3237attacktype 131072 3275attacktype 131072
3238type 13 3276type 13
3239value 500 3277value 500
3240wc 7 3278wc 7
3242food 70 3280food 70
3243nrof 10 3281nrof 10
3244level 50 3282level 50
3245end 3283end
3246# 3284#
3247Allowed arrow 3285allowed arrow
3248chance 100 3286chance 100
3249difficulty 5 3287difficulty 5
3250Object Slay Dragon 3288object Slay Dragon
3251type 13 3289type 13
3252value 5 3290value 5
3253slaying dragon 3291slaying dragon
3254dam -12 3292dam -12
3255food 10 3293food 10
3256end 3294end
3257# 3295#
3258Allowed arrow 3296allowed arrow
3259chance 50 3297chance 50
3260difficulty 8 3298difficulty 8
3261Object Magic 3299object Magic
3262type 13 3300type 13
3263value 10 3301value 10
3264attacktype 2 3302attacktype 2
3265dam -20 3303dam -20
3266wc 6 3304wc 6
3268These magical arrows are very powerful weapon. 3306These magical arrows are very powerful weapon.
3269endmsg 3307endmsg
3270food 90 3308food 90
3271end 3309end
3272# 3310#
3273Allowed bolt 3311allowed bolt
3274chance 1 3312chance 1
3275difficulty 5 3313difficulty 5
3276Object Demon Slaying 3314object Demon Slaying
3277type 13 3315type 13
3278value 5 3316value 5
3279slaying demon 3317slaying demon
3280magic 4 3318magic 4
3281dam 12 3319dam 12
3282food 10 3320food 10
3283msg 3321msg
3284 This powerful bolt can rip 3322This powerful bolt can rip
3285 right through any demon it 3323right through any demon it
3286 is shot at, but it tends to 3324is shot at, but it tends to
3287 break very easily. 3325break very easily.
3288endmsg 3326endmsg
3289end 3327end
3290# 3328#
3291Allowed bolt 3329allowed bolt
3292chance 100 3330chance 100
3293difficulty 5 3331difficulty 5
3294Object silver head 3332object silver head
3295material 8194 3333material 8194
3296materialname silver 3334materialname silver
3297type 13 3335type 13
3298value 5 3336value 5
3299slaying vampire 3337slaying vampire
3300attacktype 2 3338attacktype 2
3301end 3339end
3302# 3340#
3303Allowed bolt 3341allowed bolt
3304chance 50 3342chance 50
3305difficulty 8 3343difficulty 8
3306Object Piercing 3344object Piercing
3307type 13 3345type 13
3308value 7 3346value 7
3309dam -25 3347dam -25
3310wc 6 3348wc 6
3311weight 150 3349weight 150
3312food 10 3350food 10
3313end 3351end
3314# 3352#
3315Allowed bolt 3353allowed bolt
3316chance 10 3354chance 10
3317Object Adamantite 3355object Adamantite
3318type 13 3356type 13
3319value 10 3357value 10
3320weight 90 3358weight 90
3321material 8448 3359material 8448
3322materialname adamantium 3360materialname adamantium
3323food 10 3361food 10
3324end 3362end
3325# 3363#
3326# Bows 3364# Bows
3327# 3365#
3328Allowed all 3366allowed all
3329chance 10 3367chance 10
3330Object Accuracy 3368object Accuracy
3331type 14 3369type 14
3332value 5 3370value 5
3333weight 80 3371weight 80
3334wc 4 3372wc 4
3335item_power 2 3373item_power 2
3336end 3374end
3337# 3375#
3338Allowed all 3376allowed all
3339chance 10 3377chance 10
3340Object Valriel 3378object Valriel
3341type 14 3379type 14
3342magic 1 3380magic 1
3343value 15 3381value 15
3344weight 110 3382weight 110
3345dam 20 3383dam 20
3346end 3384end
3347# 3385#
3348Allowed all 3386allowed all
3349chance 15 3387chance 15
3350Object Gorokh 3388object Gorokh
3351type 14 3389type 14
3352magic 2 3390magic 2
3353value 15 3391value 15
3354attacktype 65 3392attacktype 65
3355dam 16 3393dam 16
3356item_power 1 3394item_power 1
3357end 3395end
3358# 3396#
3359Allowed !crossbow 3397allowed !crossbow
3360chance 10 3398chance 10
3361Object Lythander 3399object Lythander
3362type 14 3400type 14
3363magic 1 3401magic 1
3364value 22 3402value 22
3365weight 75 3403weight 75
3366sp 150 3404sp 150
3367wc 1 3405wc 1
3368item_power 1 3406item_power 1
3369end 3407end
3370# 3408#
3371Allowed crossbow 3409allowed crossbow
3372chance 10 3410chance 10
3373Object Ruggilli 3411object Ruggilli
3374type 14 3412type 14
3375magic 2 3413magic 2
3376value 18 3414value 18
3377weight 85 3415weight 85
3378sp 110 3416sp 110
3379wc 1 3417wc 1
3380attacktype 4 3418attacktype 4
3381item_power 2 3419item_power 2
3382end 3420end
3383# 3421#
3384Allowed all 3422allowed all
3385chance 12 3423chance 12
3386Object Sorig 3424object Sorig
3387type 14 3425type 14
3388magic 2 3426magic 2
3389value 20 3427value 20
3390weight 95 3428weight 95
3391sp 125 3429sp 125
3392wc 1 3430wc 1
3393attacktype 8 3431attacktype 8
3394item_power 2 3432item_power 2
3395end 3433end
3396# 3434#
3397Allowed crossbow 3435allowed crossbow
3398chance 5 3436chance 5
3399Object Mostrai 3437object Mostrai
3400type 14 3438type 14
3401magic 3 3439magic 3
3402dam 14 3440dam 14
3403sp 75 3441sp 75
3404value 50 3442value 50
3405attacktype 256 3443attacktype 256
3406item_power 1 3444item_power 1
3407end 3445end
3408# 3446#
3409Allowed all 3447allowed all
3410chance 10 3448chance 10
3411difficulty 5 3449difficulty 5
3412Object Thunder 3450object Thunder
3413type 14 3451type 14
3414value 10 3452value 10
3415magic 2 3453magic 2
3416weight 90 3454weight 90
3417dam 15 3455dam 15
3418wc 2 3456wc 2
3419attacktype 6145 3457attacktype 6145
3420item_power 3 3458item_power 3
3421end 3459end
3422# 3460#
3423Allowed all 3461allowed all
3424chance 40 3462chance 40
3425Object inaccuracy 3463object inaccuracy
3426type 14 3464type 14
3427value 5 3465value 5
3428wc -4 3466wc -4
3429cursed 1 3467cursed 1
3430end 3468end
3431# 3469#
3432Allowed bow 3470allowed bow
3433chance 1 3471chance 1
3434difficulty 5 3472difficulty 5
3435Object Auriga 3473object Auriga
3436type 14 3474type 14
3437weight 80 3475weight 80
3438msg 3476msg
3439 This magical bow shoots with 3477This magical bow shoots with
3440 such force that the arrows 3478such force that the arrows
3441 sometimes fly right through 3479sometimes fly right through
3442 the target. 3480the target.
3443endmsg 3481endmsg
3444value 100 3482value 100
3445wc 5 3483wc 5
3446dam -25 3484dam -25
3447item_power 4 3485item_power 4
3448end 3486end
3449# 3487#
3450Allowed bow 3488allowed bow
3451chance 5 3489chance 5
3452Object wizard 3490object wizard
3453type 14 3491type 14
3454value 5 3492value 5
3455dam -7 3493dam -7
3456msg 3494msg
3457This bow is magically enchanted 3495This bow is magically enchanted
3462end 3500end
3463# 3501#
3464# 3502#
3465# SKILLS 3503# SKILLS
3466# 3504#
3467Allowed lockpicks 3505allowed lockpicks
3468chance 100 3506chance 100
3469Object quality 3507object quality
3470type 74 3508type 74
3471value 5 3509value 5
3472Dex 1 3510Dex 1
3473end 3511end
3474# 3512#
3475Allowed lockpicks 3513allowed lockpicks
3476chance 30 3514chance 30
3477Object high quality 3515object high quality
3478type 74 3516type 74
3479value 10 3517value 10
3480Dex 3 3518Dex 3
3481end 3519end
3482# 3520#
3483# talismans - 3521# talismans -
3484# 3522#
3485Allowed talisman 3523allowed talisman
3486chance 50 3524chance 50
3487Object Fire 3525object Fire
3488type 74 3526type 74
3489material 256 3527material 256
3490value 3 3528value 3
3491path_attuned 2 3529path_attuned 2
3492path_repelled 4 3530path_repelled 4
3493end 3531end
3494# 3532#
3495Allowed talisman 3533allowed talisman
3496chance 50 3534chance 50
3497Object Frost 3535object Frost
3498type 74 3536type 74
3499material 256 3537material 256
3500value 3 3538value 3
3501path_attuned 4 3539path_attuned 4
3502path_repelled 2 3540path_repelled 2
3503end 3541end
3504# 3542#
3505Allowed talisman 3543allowed talisman
3506chance 80 3544chance 80
3507Object Missiles 3545object Missiles
3508type 74 3546type 74
3509material 256 3547material 256
3510value 5 3548value 5
3511path_attuned 16 3549path_attuned 16
3512end 3550end
3513# 3551#
3514Allowed talisman 3552allowed talisman
3515chance 40 3553chance 40
3516Object Unified Mind 3554object Unified Mind
3517type 74 3555type 74
3518material 256 3556material 256
3519value 7 3557value 7
3520path_attuned 1056 3558path_attuned 1056
3521Int 3 3559Int 3
3522item_power 4 3560item_power 4
3523end 3561end
3524# 3562#
3525Allowed talisman 3563allowed talisman
3526chance 20 3564chance 20
3527difficulty 10 3565difficulty 10
3528Object Evocation 3566object Evocation
3529type 74 3567type 74
3530material 256 3568material 256
3531value 9 3569value 9
3532path_attuned 6208 3570path_attuned 6208
3533item_power 2 3571item_power 2
3534end 3572end
3535# 3573#
3536Allowed talisman 3574allowed talisman
3537chance 20 3575chance 20
3538difficulty 10 3576difficulty 10
3539Object Elements 3577object Elements
3540type 74 3578type 74
3541material 256 3579material 256
3542value 9 3580value 9
3543path_attuned 14 3581path_attuned 14
3544item_power 4 3582item_power 4
3545end 3583end
3546# 3584#
3547Allowed talisman 3585allowed talisman
3548chance 3 3586chance 3
3549difficulty 13 3587difficulty 13
3550Object Wizardry 3588object Wizardry
3551type 74 3589type 74
3552material 256 3590material 256
3553value 25 3591value 25
3554path_attuned 28286 3592path_attuned 28286
3555Pow 1 3593Pow 1
3556item_power 5 3594item_power 5
3557end 3595end
3558# 3596#
3559# holy symbols 3597# holy symbols
3560# 3598#
3561Allowed holy_symbol 3599allowed holy_symbol
3562chance 80 3600chance 80
3563difficulty 5 3601difficulty 5
3564Object Probity 3602object Probity
3565type 74 3603type 74
3566material 256 3604material 256
3567value 5 3605value 5
3568path_attuned 257 3606path_attuned 257
3569path_repelled 128 3607path_repelled 128
3570path_denied 0 3608path_denied 0
3571item_power 1 3609item_power 1
3572end 3610end
3573# 3611#
3574Allowed holy_symbol 3612allowed holy_symbol
3575chance 10 3613chance 10
3576difficulty 5 3614difficulty 5
3577Object Great Virtue 3615object Great Virtue
3578type 74 3616type 74
3579material 256 3617material 256
3580value 25 3618value 25
3581path_attuned 8640 3619path_attuned 8640
3582Wis 2 3620Wis 2
3583item_power 4 3621item_power 4
3584end 3622end
3585# 3623#
3586Allowed holy_symbol 3624allowed holy_symbol
3587chance 10 3625chance 10
3588difficulty 5 3626difficulty 5
3589Object The Dark Path 3627object The Dark Path
3590type 74 3628type 74
3591material 256 3629material 256
3592value 25 3630value 25
3593path_attuned 393216 3631path_attuned 393216
3594path_denied 256 3632path_denied 256
3595item_power 2 3633item_power 2
3596end 3634end
3597# 3635#
3598Allowed holy_symbol 3636allowed holy_symbol
3599chance 10 3637chance 10
3600difficulty 5 3638difficulty 5
3601Object Turning 3639object Turning
3602type 74 3640type 74
3603material 256 3641material 256
3604value 25 3642value 25
3605path_attuned 65536 3643path_attuned 65536
3606item_power 1 3644item_power 1
3607end 3645end
3608# 3646#
3609Allowed holy_symbol 3647allowed holy_symbol
3610chance 50 3648chance 50
3611difficulty 5 3649difficulty 5
3612Object Calling 3650object Calling
3613type 74 3651type 74
3614material 256 3652material 256
3615value 5 3653value 5
3616path_attuned 64 3654path_attuned 64
3617path_repelled 256 3655path_repelled 256
3618end 3656end
3619# 3657#
3620# DRINK. 3658# DRINK.
3621# 3659#
3622Allowed water 3660allowed water
3623chance 90 3661chance 90
3624Object the wise 3662object the wise
3625type 54 3663type 54
3626food 1 3664food 1
3627value 10 3665value 10
3628end 3666end
3629# 3667#
3630Allowed water 3668allowed water
3631chance 17 3669chance 17
3632difficulty 2 3670difficulty 2
3633Object pearl 3671object pearl
3634type 54 3672type 54
3635food 1 3673food 1
3636value 50 3674value 50
3637end 3675end
3638# 3676#
3639Allowed water 3677allowed water
3640chance 15 3678chance 15
3641difficulty 3 3679difficulty 3
3642Object emerald 3680object emerald
3643type 54 3681type 54
3644food 1 3682food 1
3645value 58 3683value 58
3646end 3684end
3647# 3685#
3648Allowed water 3686allowed water
3649chance 13 3687chance 13
3650difficulty 5 3688difficulty 5
3651Object sapphire 3689object sapphire
3652type 54 3690type 54
3653food 1 3691food 1
3654value 67 3692value 67
3655end 3693end
3656# 3694#
3657Allowed water 3695allowed water
3658chance 8 3696chance 8
3659difficulty 5 3697difficulty 5
3660Object ruby 3698object ruby
3661type 54 3699type 54
3662food 1 3700food 1
3663value 76 3701value 76
3664end 3702end
3665# 3703#
3666Allowed water 3704allowed water
3667chance 3 3705chance 3
3668difficulty 8 3706difficulty 8
3669Object diamond 3707object diamond
3670type 54 3708type 54
3671food 1 3709food 1
3672value 191 3710value 191
3673end 3711end
3674# 3712#
3675# FOOD. Types of food which can effect player status 3713# FOOD. Types of food which can effect player status
3676# 3714#
3677# Note: an item is cursed, the effect is generally reversed! 3715# Note: an item is cursed, the effect is generally reversed!
3678# 3716#
3679Allowed !waybread 3717allowed !waybread
3680chance 200 3718chance 200
3681Object Poison 3719object Poison
3682type 6 3720type 6
3683food 10 3721food 10
3684hp -5 3722hp -5
3685cursed 1 3723cursed 1
3686end 3724end
3687# 3725#
3688Allowed !waybread 3726allowed !waybread
3689chance 20 3727chance 20
3690Object Hideous Poison 3728object Hideous Poison
3691type 6 3729type 6
3692food 10 3730food 10
3693hp -25 3731hp -25
3694Str -1 3732Str -1
3695Con -1 3733Con -1
3696Dex -1 3734Dex -1
3697Cha -1 3735Cha -1
3698cursed 1 3736cursed 1
3699end 3737end
3700# 3738#
3701Allowed mushroom_1, mushroom_2, mushroom_3 3739allowed mushroom_1, mushroom_2, mushroom_3
3702chance 150 3740chance 150
3703Object Gourmet 3741object Gourmet
3704type 6 3742type 6
3705value 200
3706food 250
3707end
3708#
3709Allowed mushroom_1, mushroom_2, mushroom_3
3710chance 5
3711Object Magic
3712type 6
3713value 80 3743value 10
3714sp 100 3744food 200
3715end 3745end
3716# 3746#
3717# note the cursed status here!, this mushroom drains mana 3747# note the cursed status here!, this mushroom drains mana
3718# 3748#
3719Allowed mushroom_1, mushroom_2, mushroom_3 3749allowed mushroom_1, mushroom_2, mushroom_3
3720chance 15 3750chance 15
3721Object Magic 3751object Magic
3722type 6 3752type 6
3723value 80 3753value 80
3724cursed 1 3754cursed 1
3725sp 100 3755sp 100
3726end 3756end
3727# 3757#
3758# note this comes second so woodsman will create it rather than the bad kind
3759#
3728Allowed mushroom_1, mushroom_2, mushroom_3 3760allowed mushroom_1, mushroom_2, mushroom_3
3761chance 5
3762object Magic
3763type 6
3764value 80
3765sp 100
3766end
3767#
3768allowed mushroom_1, mushroom_2, mushroom_3
3729chance 20 3769chance 20
3730Object Healing 3770object Healing
3731type 6 3771type 6
3732value 40 3772value 40
3733hp 50 3773hp 50
3734end 3774end
3735# 3775#
3736Allowed food, mushroom_1, mushroom_2 3776allowed food, mushroom_1, mushroom_2, mushroom_3
3737chance 15 3777chance 15
3738Object Stamina 3778object Stamina
3739type 6 3779type 6
3740value 30 3780value 20
3741Con 1 3781Con 1
3742end 3782end
3743# 3783#
3744Allowed waybread 3784allowed waybread
3745chance 100 3785chance 100
3746Object Aelingas 3786object Aelingas
3747type 6 3787type 6
3748value 10 3788value 40
3749Str 1 3789Str 1
3750Con 1 3790Con 1
3751end 3791end
3752# 3792#
3753Allowed mushroom_2, mushroom_3 3793allowed mushroom_1,mushroom_2,mushroom_3
3754chance 15 3794chance 15
3755Object Strength 3795object Strength
3756type 6 3796type 6
3757value 30 3797value 20
3758Str 1 3798Str 1
3759end 3799end
3760# 3800#
3761Allowed mushroom_1, mushroom_3 3801allowed mushroom_1,mushroom_2,mushroom_3
3762chance 15 3802chance 15
3763Object Quickness 3803object Quickness
3764type 6 3804type 6
3765value 30 3805value 20
3766Dex 1 3806Dex 1
3767end 3807end
3768# 3808#
3769Allowed mushroom_1 3809allowed mushroom_1,mushroom_2,mushroom_3
3770chance 100 3810chance 100
3771Object Heat Resistance 3811object Heat Resistance
3772type 6 3812type 6
3773value 30 3813value 30
3774resist_fire 30 3814resist_fire 30
3775end 3815end
3776# 3816#
3777Allowed mushroom_2 3817allowed mushroom_1,mushroom_2,mushroom_3
3778chance 100 3818chance 100
3779Object Frost Resistance 3819object Frost Resistance
3780type 6 3820type 6
3781value 30 3821value 30
3782resist_cold 30 3822resist_cold 30
3783end 3823end
3784# 3824#
3785Allowed mushroom_1, mushroom_2, mushroom_3 3825allowed mushroom_1,mushroom_2,mushroom_3
3826chance 100
3827object Shock Resistance
3828type 6
3829value 30
3830resist_electricity 30
3831end
3832#
3833allowed mushroom_1,mushroom_2,mushroom_3
3786chance 10 3834chance 10
3787Object Bravery 3835object Bravery
3788type 6 3836type 6
3789value 100 3837value 30
3790resist_fear 30 3838resist_fear 30
3791end 3839end
3792# 3840#
3793Allowed mushroom_3 3841allowed mushroom_1,mushroom_2,mushroom_3
3842chance 100
3843object Antitoxin
3844type 6
3845value 20
3846resist_poison 30
3847end
3848#
3849allowed mushroom_1,mushroom_2,mushroom_3
3794chance 90 3850chance 90
3795Object Magic Resistance 3851object Magic Resistance
3796type 6 3852type 6
3797value 40 3853value 40
3798resist_magic 30 3854resist_magic 30
3799end 3855end
3800# 3856#
3801Allowed mushroom_2, mushroom_3 3857allowed mushroom_1,mushroom_2,mushroom_3
3802chance 5 3858chance 5
3803Object Life 3859object Life
3804type 6 3860type 6
3805value 500 3861value 80
3806Con 1 3862Con 1
3807resist_drain 30 3863resist_drain 30
3808resist_deplete 30 3864resist_deplete 30
3809end 3865end
3810# 3866#
3811# Potions (incl. dusts, balms and figurine sub-types) 3867# Potions (incl. dusts, balms and figurine sub-types)
3812# 3868#
3813# 3869#
3814# - attack potions 3870# - attack potions
3815# 3871#
3816Allowed potion_generic 3872allowed potion_generic
3817chance 1 3873chance 1
3818Object firestorm 3874object firestorm
3819face potion_fire2.111 3875face potion_fire2.x11
3820stand_still 1 3876stand_still 1
3821type 5 3877type 5
3822value 1 3878value 1
3823other_arch spell_small_fireball 3879other_arch spell_small_fireball
3824end 3880end
3825# 3881#
3826Allowed potion_generic 3882allowed potion_generic
3827chance 1 3883chance 1
3828Object great firestorm 3884object great firestorm
3829face potion_fire2.111 3885face potion_fire2.x11
3830stand_still 1 3886stand_still 1
3831type 5 3887type 5
3832other_arch spell_medium_fireball 3888other_arch spell_medium_fireball
3833value 5 3889value 5
3834end 3890end
3835# 3891#
3836Allowed potion_generic 3892allowed potion_generic
3837chance 1 3893chance 1
3838Object black fire 3894object black fire
3839face potion_fire2.111 3895face potion_fire2.x11
3840stand_still 1 3896stand_still 1
3841type 5 3897type 5
3842other_arch spell_comet 3898other_arch spell_comet
3843value 8 3899value 8
3844level -30 3900level -30
3845end 3901end
3846# 3902#
3847Allowed potion_generic 3903allowed potion_generic
3848chance 1 3904chance 1
3849Object fiery destruction 3905object fiery destruction
3850type 5 3906type 5
3851face potion_fire2.111 3907face potion_fire2.x11
3852stand_still 1 3908stand_still 1
3853other_arch spell_meteor_swarm 3909other_arch spell_meteor_swarm
3854value 15 3910value 15
3855level -60 3911level -60
3856end 3912end
3857# 3913#
3858Allowed potion_generic 3914allowed potion_generic
3859chance 1 3915chance 1
3860Object sunfire 3916object sunfire
3861face potion_fire2.111 3917face potion_fire2.x11
3862stand_still 1 3918stand_still 1
3863type 5 3919type 5
3864other_arch spell_sunspear 3920other_arch spell_sunspear
3865value 5 3921value 5
3866end 3922end
3867# 3923#
3868Allowed potion_generic 3924allowed potion_generic
3869chance 1 3925chance 1
3870Object freezing 3926object freezing
3871face potion_freeze.111 3927face potion_freeze.x11
3872stand_still 1 3928stand_still 1
3873type 5 3929type 5
3874other_arch spell_frostbolt 3930other_arch spell_frostbolt
3875value 1 3931value 1
3876end 3932end
3877# 3933#
3878Allowed potion_generic 3934allowed potion_generic
3879chance 1 3935chance 1
3880Object fire 3936object fire
3881face potion_fire2.111 3937face potion_fire2.x11
3882stand_still 1 3938stand_still 1
3883type 5 3939type 5
3884other_arch spell_firebolt 3940other_arch spell_firebolt
3885value 1 3941value 1
3886end 3942end
3887# 3943#
3888Allowed potion_generic 3944allowed potion_generic
3889chance 1 3945chance 1
3890Object electric shock 3946object electric shock
3891face potion_shock.111 3947face potion_shock.x11
3892stand_still 1 3948stand_still 1
3893type 5 3949type 5
3894other_arch spell_sm_lightning 3950other_arch spell_sm_lightning
3895value 1 3951value 1
3896end 3952end
3897# 3953#
3898# -- poison cloud 3954# -- poison cloud
3899Allowed potion_generic 3955allowed potion_generic
3900chance 1 3956chance 1
3901Object noxious fumes 3957object noxious fumes
3902stand_still 1 3958stand_still 1
3903type 5 3959type 5
3904other_arch spell_poison_cloud 3960other_arch spell_poison_cloud
3905value 1 3961value 1
3906end 3962end
3907# 3963#
3908# -- ball lightning 3964# -- ball lightning
3909Allowed potion_generic 3965allowed potion_generic
3910chance 1 3966chance 1
3911Object lasting shock 3967object lasting shock
3912stand_still 1 3968stand_still 1
3913type 5 3969type 5
3914other_arch spell_ball_lightning 3970other_arch spell_ball_lightning
3915value 15 3971value 15
3916end 3972end
3917# 3973#
3918# -- color spray 3974# -- color spray
3919Allowed potion_generic 3975allowed potion_generic
3920chance 1 3976chance 1
3921Object Rainbow Wave 3977object Rainbow Wave
3922stand_still 1 3978stand_still 1
3923type 5 3979type 5
3924other_arch spell_color_spray 3980other_arch spell_color_spray
3925value 20 3981value 20
3926end 3982end
3927# 3983#
3928# - curative potions 3984# - curative potions
3929# 3985#
3930Allowed balm_generic 3986allowed balm_generic
3931chance 1 3987chance 1
3932Object first aid 3988object first aid
3933type 5 3989type 5
3934value 1 3990value 1
3935other_arch spell_minor_healing 3991other_arch spell_minor_healing
3936end 3992end
3937# 3993#
3938Allowed potion_generic 3994allowed potion_generic
3939chance 1 3995chance 1
3940Object cure vision 3996object cure vision
3941face potion_heal2.111 3997face potion_heal2.x11
3942type 5 3998type 5
3943other_arch spell_cure_blindness 3999other_arch spell_cure_blindness
3944value 2 4000value 2
3945end 4001end
3946# 4002#
3947Allowed potion_generic 4003allowed potion_generic
3948chance 1 4004chance 1
3949Object cure poison 4005object cure poison
3950face potion_heal2.111 4006face potion_heal2.x11
3951stand_still 1 4007stand_still 1
3952type 5 4008type 5
3953other_arch spell_cure_poison 4009other_arch spell_cure_poison
3954value 1 4010value 1
3955end 4011end
3956# 4012#
3957Allowed potion_generic 4013allowed potion_generic
3958chance 1 4014chance 1
3959Object cure madness 4015object cure madness
3960face potion_heal2.111 4016face potion_heal2.x11
3961stand_still 1 4017stand_still 1
3962type 5 4018type 5
3963other_arch spell_cure_confusion 4019other_arch spell_cure_confusion
3964value 2 4020value 2
3965end 4021end
3966# 4022#
3967Allowed potion_generic 4023allowed potion_generic
3968chance 1 4024chance 1
3969Object cure disease 4025object cure disease
3970stand_still 1 4026stand_still 1
3971type 5 4027type 5
3972other_arch spell_cure_disease 4028other_arch spell_cure_disease
3973value 3 4029value 3
3974end 4030end
3975# 4031#
3976# - protective potions 4032# - protective potions
3977# 4033#
3978Allowed balm_generic 4034allowed balm_generic
3979chance 1 4035chance 1
3980Object aethereality 4036object aethereality
3981type 5 4037type 5
3982resist_physical 50 4038resist_physical 50
3983value 3 4039value 3
3984end 4040end
3985# 4041#
3986Allowed balm_generic 4042allowed balm_generic
3987chance 1 4043chance 1
3988Object asbestos 4044object asbestos
3989type 5 4045type 5
3990resist_fire 50 4046resist_fire 50
3991value 1 4047value 1
3992end 4048end
3993# 4049#
3994Allowed balm_generic 4050allowed balm_generic
3995chance 1 4051chance 1
3996Object insulation 4052object insulation
3997type 5 4053type 5
3998resist_electricity 50 4054resist_electricity 50
3999value 1 4055value 1
4000end 4056end
4001# 4057#
4002Allowed balm_generic 4058allowed balm_generic
4003chance 1 4059chance 1
4004Object warmth 4060object warmth
4005type 5 4061type 5
4006resist_cold 50 4062resist_cold 50
4007value 1 4063value 1
4008end 4064end
4009# 4065#
4010Allowed potion_generic 4066allowed potion_generic
4011chance 1 4067chance 1
4012Object resist confusion 4068object resist confusion
4013stand_still 1 4069stand_still 1
4014face potion_resist.111 4070face potion_resist.x11
4015type 5 4071type 5
4016value 1 4072value 1
4017resist_confusion 50 4073resist_confusion 50
4018end 4074end
4019# 4075#
4020Allowed potion_generic 4076allowed potion_generic
4021chance 1 4077chance 1
4022Object resist magic 4078object resist magic
4023face potion_resist.111 4079face potion_resist.x11
4024stand_still 1 4080stand_still 1
4025type 5 4081type 5
4026resist_magic 50 4082resist_magic 50
4027value 3 4083value 3
4028end 4084end
4029# 4085#
4030Allowed potion_generic 4086allowed potion_generic
4031chance 1 4087chance 1
4032Object resist draining 4088object resist draining
4033face potion_resist.111 4089face potion_resist.x11
4034stand_still 1 4090stand_still 1
4035type 5 4091type 5
4036value 1 4092value 1
4037resist_drain 50 4093resist_drain 50
4038end 4094end
4039# 4095#
4040Allowed potion_generic 4096allowed potion_generic
4041chance 1 4097chance 1
4042Object resist paralysis 4098object resist paralysis
4043face potion_resist.111 4099face potion_resist.x11
4044stand_still 1 4100stand_still 1
4045type 5 4101type 5
4046resist_paralyze 50 4102resist_paralyze 50
4047value 1 4103value 1
4048end 4104end
4049# 4105#
4050Allowed potion_generic 4106allowed potion_generic
4051chance 1 4107chance 1
4052Object resist poison 4108object resist poison
4053face potion_resist.111 4109face potion_resist.x11
4054stand_still 1 4110stand_still 1
4055type 5 4111type 5
4056resist_poison 50 4112resist_poison 50
4057value 1 4113value 1
4058end 4114end
4059# 4115#
4060Allowed potion_generic 4116allowed potion_generic
4061chance 1 4117chance 1
4062Object resist slow 4118object resist slow
4063face potion_resist.111 4119face potion_resist.x11
4064stand_still 1 4120stand_still 1
4065type 5 4121type 5
4066resist_slow 50 4122resist_slow 50
4067value 1 4123value 1
4068end 4124end
4069# 4125#
4070Allowed potion_generic 4126allowed potion_generic
4071chance 1 4127chance 1
4072Object shock resistance 4128object shock resistance
4073type 5 4129type 5
4074face potion_ishock.111 4130face potion_ishock.x11
4075stand_still 1 4131stand_still 1
4076resist_electricity 90 4132resist_electricity 90
4077value 100 4133value 100
4078end 4134end
4079# 4135#
4080Allowed potion_generic 4136allowed potion_generic
4081chance 1 4137chance 1
4082Object magic resistance 4138object magic resistance
4083face potion_mimm.111 4139face potion_mimm.x11
4084stand_still 1 4140stand_still 1
4085type 5 4141type 5
4086resist_magic 90 4142resist_magic 90
4087value 150 4143value 150
4088end 4144end
4089# 4145#
4090# - stat potions 4146# - stat potions
4091# 4147#
4092Allowed potion_generic 4148allowed potion_generic
4093chance 1 4149chance 1
4094Object strength 4150object strength
4095face potion_util.111 4151face potion_util.x11
4096stand_still 1 4152stand_still 1
4097type 5 4153type 5
4098other_arch spell_strength 4154other_arch spell_strength
4099value 1 4155value 1
4100end 4156end
4101# 4157#
4102Allowed potion_generic 4158allowed potion_generic
4103chance 1 4159chance 1
4104Object agility 4160object agility
4105type 5 4161type 5
4106face potion_util.111 4162face potion_util.x11
4107stand_still 1 4163stand_still 1
4108other_arch spell_dexterity 4164other_arch spell_dexterity
4109value 1 4165value 1
4110end 4166end
4111# 4167#
4112Allowed potion_generic 4168allowed potion_generic
4113chance 1 4169chance 1
4114Object fortitude 4170object fortitude
4115type 5 4171type 5
4116face potion_util.111 4172face potion_util.x11
4117stand_still 1 4173stand_still 1
4118other_arch spell_constitution 4174other_arch spell_constitution
4119value 1 4175value 1
4120end 4176end
4121# 4177#
4122Allowed balm_generic 4178allowed balm_generic
4123chance 1 4179chance 1
4124Object beauty 4180object beauty
4125type 5 4181type 5
4126other_arch spell_charisma 4182other_arch spell_charisma
4127value 4 4183value 4
4128end 4184end
4129# 4185#
4130# - misc. potions and balms 4186# - misc. potions and balms
4131# 4187#
4132Allowed balm_generic 4188allowed balm_generic
4133chance 1 4189chance 1
4134Object flying 4190object flying
4135type 5 4191type 5
4136value 1 4192value 1
4137other_arch spell_levitate 4193other_arch spell_levitate
4138end 4194end
4139# 4195#
4140Allowed balm_generic 4196allowed balm_generic
4141chance 1 4197chance 1
4142Object the serpent 4198object the serpent
4143type 5 4199type 5
4144value 1 4200value 1
4145other_arch spell_staff_to_snake 4201other_arch spell_staff_to_snake
4146end 4202end
4147# 4203#
4148Allowed balm_generic 4204allowed balm_generic
4149chance 1 4205chance 1
4150Object invisible to undead 4206object invisible to undead
4151type 5 4207type 5
4152other_arch spell_invisible_to_undead 4208other_arch spell_invisible_to_undead
4153value 1 4209value 1
4154end 4210end
4155# 4211#
4156Allowed balm_generic 4212allowed balm_generic
4157chance 1 4213chance 1
4158Object transparency 4214object transparency
4159type 5 4215type 5
4160other_arch spell_improved_invisibility 4216other_arch spell_improved_invisibility
4161value 1 4217value 1
4162end 4218end
4163# 4219#
4164Allowed balm_generic 4220allowed balm_generic
4165chance 1 4221chance 1
4166Object return home 4222object return home
4167type 5 4223type 5
4168value 1 4224value 1
4169other_arch spell_word_of_recall 4225other_arch spell_word_of_recall
4170end 4226end
4171# 4227#
4172Allowed potion_generic 4228allowed potion_generic
4173chance 1 4229chance 1
4174Object self knowledge 4230object self knowledge
4175face potion_util.111 4231face potion_util.x11
4176type 5 4232type 5
4177value 1 4233value 1
4178other_arch spell_perceive_self 4234other_arch spell_perceive_self
4179end 4235end
4180# 4236#
4181Allowed potion_generic 4237allowed potion_generic
4182chance 1 4238chance 1
4183Object mystic power 4239object mystic power
4184face potion_util.111 4240face potion_util.x11
4185type 5 4241type 5
4186other_arch spell_transference 4242other_arch spell_transference
4187value 8 4243value 8
4188end 4244end
4189# 4245#
4190Allowed potion_generic 4246allowed potion_generic
4191chance 1 4247chance 1
4192Object speed 4248object speed
4193face potion_util.111 4249face potion_util.x11
4194stand_still 1 4250stand_still 1
4195type 5 4251type 5
4196level -80 4252level -80
4197other_arch spell_haste 4253other_arch spell_haste
4198value 15 4254value 15
4199end 4255end
4200# 4256#
4201Allowed potion_generic 4257allowed potion_generic
4202chance 1 4258chance 1
4203Object recuperation 4259object recuperation
4204face potion_util.111 4260face potion_util.x11
4205stand_still 1 4261stand_still 1
4206type 5 4262type 5
4207other_arch spell_regeneration 4263other_arch spell_regeneration
4208value 2 4264value 2
4209end 4265end
4210# 4266#
4211# - figurines- these summon stuff 4267# - figurines- these summon stuff
4212# 4268#
4213Allowed figurine_generic 4269allowed figurine_generic
4214chance 1 4270chance 1
4215Object clay 4271object clay
4216type 5 4272type 5
4217other_arch spell_summon_golem 4273other_arch spell_summon_golem
4218value 1 4274value 1
4219level -20 4275level -20
4220end 4276end
4221# 4277#
4222Allowed figurine_generic 4278allowed figurine_generic
4223chance 1 4279chance 1
4224Object stone 4280object stone
4225type 5 4281type 5
4226other_arch spell_summon_earth_elemental 4282other_arch spell_summon_earth_elemental
4227level -20 4283level -20
4228value 1 4284value 1
4229end 4285end
4230# 4286#
4231Allowed figurine_generic 4287allowed figurine_generic
4232chance 1 4288chance 1
4233Object whirlwind 4289object whirlwind
4234type 5 4290type 5
4235other_arch spell_summon_air_elemental 4291other_arch spell_summon_air_elemental
4236level -20 4292level -20
4237value 1 4293value 1
4238end 4294end
4239# 4295#
4240Allowed figurine_generic 4296allowed figurine_generic
4241chance 1 4297chance 1
4242Object a great wave 4298object a great wave
4243type 5 4299type 5
4244other_arch spell_summon_water_elemental 4300other_arch spell_summon_water_elemental
4245level -20 4301level -20
4246value 1 4302value 1
4247end 4303end
4248# 4304#
4249Allowed figurine_generic 4305allowed figurine_generic
4250chance 1 4306chance 1
4251Object a flame 4307object a flame
4252type 5 4308type 5
4253other_arch spell_summon_fire_elemental 4309other_arch spell_summon_fire_elemental
4254value 1 4310value 1
4255level -20 4311level -20
4256end 4312end
4257# 4313#
4258Allowed figurine_generic 4314allowed figurine_generic
4259chance 1 4315chance 1
4260Object a clenched hand 4316object a clenched hand
4261type 5 4317type 5
4262other_arch spell_mystic_fist 4318other_arch spell_mystic_fist
4263level -20 4319level -20
4264value 1 4320value 1
4265end 4321end
4266# 4322#
4267# Dusts. 4323# Dusts.
4268# 4324#
4269# - 360 deg effect 4325# - 360 deg effect
4270# 4326#
4271Allowed dust_generic 4327allowed dust_generic
4272chance 1 4328chance 1
4273Object stasis 4329object stasis
4274type 5 4330type 5
4275value 1 4331value 1
4276other_arch spell_paralyze 4332other_arch spell_paralyze
4277end 4333end
4278# 4334#
4279Allowed dust_generic 4335allowed dust_generic
4280chance 1 4336chance 1
4281Object frost 4337object frost
4282type 5 4338type 5
4283other_arch spell_icestorm 4339other_arch spell_icestorm
4284value 1 4340value 1
4285end 4341end
4286# 4342#
4287Allowed dust_generic 4343allowed dust_generic
4288chance 1 4344chance 1
4289Object fright 4345object fright
4290type 5 4346type 5
4291value 1 4347value 1
4292other_arch spell_fear 4348other_arch spell_fear
4293end 4349end
4294# 4350#
4295Allowed dust_generic 4351allowed dust_generic
4296chance 1 4352chance 1
4297Object concussion 4353object concussion
4298type 5 4354type 5
4299other_arch spell_shockwave 4355other_arch spell_shockwave
4300value 6 4356value 6
4301end 4357end
4302# 4358#
4307#other_arch spell_face_of_death 4363#other_arch spell_face_of_death
4308#level -20 4364#level -20
4309#value 20 4365#value 20
4310#end 4366#end
4311# 4367#
4312Allowed dust_generic 4368allowed dust_generic
4313chance 1 4369chance 1
4314Object repelling undead 4370object repelling undead
4315type 5 4371type 5
4316other_arch spell_turn_undead 4372other_arch spell_turn_undead
4317level -30 4373level -30
4318value 1 4374value 1
4319end 4375end
4320# 4376#
4321Allowed dust_generic 4377allowed dust_generic
4322chance 1 4378chance 1
4323Object madness 4379object madness
4324type 5 4380type 5
4325other_arch spell_mass_confusion 4381other_arch spell_mass_confusion
4326value 2 4382value 2
4327end 4383end
4328# 4384#
4329Allowed dust_generic 4385allowed dust_generic
4330chance 1 4386chance 1
4331Object ignition 4387object ignition
4332type 5 4388type 5
4333other_arch spell_burning_hands 4389other_arch spell_burning_hands
4334value 2 4390value 2
4335end 4391end
4336# 4392#
4337Allowed dust_generic 4393allowed dust_generic
4338chance 1 4394chance 1
4339Object conflagration 4395object conflagration
4340type 5 4396type 5
4341other_arch spell_hellfire 4397other_arch spell_hellfire
4342value 4 4398value 4
4343end 4399end
4344# 4400#
4345Allowed dust_generic 4401allowed dust_generic
4346chance 1 4402chance 1
4347Object countermagic 4403object countermagic
4348type 5 4404type 5
4349other_arch spell_counterspell 4405other_arch spell_counterspell
4350level -30 4406level -30
4351value 1 4407value 1
4352end 4408end
4353# 4409#
4354Allowed dust_generic 4410allowed dust_generic
4355chance 1 4411chance 1
4356Object the Dead 4412object the Dead
4357type 5 4413type 5
4358other_arch spell_command_undead 4414other_arch spell_command_undead
4359level -30 4415level -30
4360value 1 4416value 1
4361end 4417end
4362# 4418#
4363# -- mana blast 4419# -- mana blast
4364Allowed dust_generic 4420allowed dust_generic
4365chance 1 4421chance 1
4366Object consuming wrath 4422object consuming wrath
4367type 5 4423type 5
4368other_arch spell_mana_blast 4424other_arch spell_mana_blast
4369value 3 4425value 3
4370end 4426end
4371# 4427#
4372# -- medium mana ball 4428# -- medium mana ball
4373Allowed dust_generic 4429allowed dust_generic
4374chance 1 4430chance 1
4375Object encompassing rage 4431object encompassing rage
4376type 5 4432type 5
4377other_arch spell_medium_manaball 4433other_arch spell_medium_manaball
4378value 6 4434value 6
4379end 4435end
4380# 4436#
4381# -- medium snowstorm 4437# -- medium snowstorm
4382Allowed dust_generic 4438allowed dust_generic
4383chance 1 4439chance 1
4384Object blizzards 4440object blizzards
4385type 5 4441type 5
4386other_arch spell_medium_snowstorm 4442other_arch spell_medium_snowstorm
4387value 4 4443value 4
4388end 4444end
4389# 4445#
4390# dusts w/ provide detection 4446# dusts w/ provide detection
4391# 4447#
4392Allowed dust_generic 4448allowed dust_generic
4393chance 1 4449chance 1
4394Object clairvoyance 4450object clairvoyance
4395type 5 4451type 5
4396other_arch spell_magic_mapping 4452other_arch spell_magic_mapping
4397value 2 4453value 2
4398end 4454end
4399# 4455#
4400Allowed dust_generic 4456allowed dust_generic
4401chance 1 4457chance 1
4402Object revealing 4458object revealing
4403type 5 4459type 5
4404other_arch spell_show_invisible 4460other_arch spell_show_invisible
4405level -20 4461level -20
4406value 8 4462value 8
4407end 4463end
4408# 4464#
4409Allowed dust_generic 4465allowed dust_generic
4410chance 1 4466chance 1
4411Object show enchantment 4467object show enchantment
4412type 5 4468type 5
4413other_arch spell_detect_magic 4469other_arch spell_detect_magic
4414value 1 4470value 1
4415end 4471end
4416# 4472#
4417Allowed dust_generic 4473allowed dust_generic
4418chance 1 4474chance 1
4419Object night vision 4475object night vision
4420type 5 4476type 5
4421value 1 4477value 1
4422other_arch spell_dark_vision 4478other_arch spell_dark_vision
4423end 4479end
4424# 4480#
4425Allowed dust_generic 4481allowed dust_generic
4426chance 1 4482chance 1
4427Object piercing vision 4483object piercing vision
4428type 5 4484type 5
4429other_arch spell_xray 4485other_arch spell_xray
4430value 6 4486value 6
4431end 4487end
4432# 4488#
4433Allowed dust_generic 4489allowed dust_generic
4434chance 1 4490chance 1
4435Object clinging glow 4491object clinging glow
4436type 5 4492type 5
4437other_arch spell_faery_fire 4493other_arch spell_faery_fire
4438value 1 4494value 1
4439end 4495end
4440# 4496#
4441Allowed dust_generic 4497allowed dust_generic
4442chance 1 4498chance 1
4443Object Biren's mist 4499object Biren's mist
4444type 5 4500type 5
4445other_arch spell_summon_fog 4501other_arch spell_summon_fog
4446value 1 4502value 1
4447end 4503end
4448# 4504#
4449# misc. dusts 4505# misc. dusts
4450# 4506#
4451# -- light 4507# -- light
4452Allowed dust_generic 4508allowed dust_generic
4453chance 1 4509chance 1
4454Object brightness 4510object brightness
4455type 5 4511type 5
4456other_arch spell_light 4512other_arch spell_light
4457level -20 4513level -20
4458value 1 4514value 1
4459end 4515end
4460# 4516#
4461# -- darkness 4517# -- darkness
4462Allowed dust_generic 4518allowed dust_generic
4463chance 1 4519chance 1
4464Object impenatrability 4520object impenatrability
4465type 5 4521type 5
4466other_arch spell_darkness 4522other_arch spell_darkness
4467level -20 4523level -20
4468value 1 4524value 1
4469end 4525end

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines