-
Notifications
You must be signed in to change notification settings - Fork 0
/
uniques.dat
105 lines (97 loc) · 2.55 KB
/
uniques.dat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
#
# MWRandItem Uniques Data File - May 2003
# Dave Humphrey, [email protected]
#
# The file contains all the unique definitions used for the creation
# of random items. The format is as follows.
#
# Comments - Anything after the '#' character on a line is ignored.
# Strings - Values on the right side of the '=' can be surrounded with double
# quote characters ("") if desired.#
# 'Unique' - Start an unique record.
# 'Name' - The unique item name/suffix/prefix, depending on the name type.
# 'NameType' - The type of name generation.
# Suffix = Name is added to the base item name as a suffix.
# Prefix = Name is added to the base item name as a prefix.
# Exact = Name is copied exactly, base item name is not used (default).
# 'ItemLevel' - The item level of the unique (1 to 100). Higher level uniques will be
# rarer and only encountered by high level players.
# 'ItemMask' - Indicates which item types the effect is valid for. Can be a combination
# of the following characters:
# W = Weapon
# A = Armor
# C = Clothing
# * = All
# ex: WA = Weapons and armor
# WCA = Weapons, armor, and clothing
# 'Effect' - Each unique item can have up to 6 different effects. These effects are
# the name of an existing prefix or suffix effect as defined in the effects
# data file. Only the first 8 enchantments from the effects are added to
# the item (if it has that many).
# 'End' - End an unique record.
#
Unique
Name = "Instrument of Decay"
NameType = Exact
ItemLevel = 25
ItemMask = W
Effect = Fire
Effect = Vicious
End
Unique
Name = "Bringer of Death"
NameType = Exact
ItemLevel = 40
ItemMask = W
Effect = Warmth
Effect = Chills
Effect = Bolting
Effect = Bane
End
Unique
Name = "Healing Aura"
NameType = Exact
ItemLevel = 60
ItemMask = AC
Effect = Health
Effect = Stoutness
End
Unique
Name = "Curse of Health"
NameType = Exact
ItemLevel = 50
ItemMask = A
Effect = Fragility
Effect = Hefty
Effect = Health
Effect = Health
Effect = Stoutness
Effect = Stoutness
End
Unique
Name = "Hideous Vigor"
NameType = Exact
ItemLevel = 50
ItemMask = A
Effect = the Whale
Effect = Repulsion
Effect = Repulsion
End
Unique
Name = "of Vigor"
NameType = Suffix
ItemLevel = 1
ItemMask = AWC
Effect = the Whale
Effect = Repulsion
Effect = Repulsion
End
Unique
Name = "Vigorous"
NameType = Prefix
ItemLevel = 1
ItemMask = AWC
Effect = the Whale
Effect = Repulsion
Effect = Repulsion
End