# Artifact file for Daimonin
#
# The Artifacts file looks very similiar to CF
# list file but its used in an advanced way.
# Instead of creating dummy items and compare the values
# of this item to the base objects we parse the 
# values in the copy of the base arch at runtime.
# This allows to use EVERY feature a normal arch command
# has excluding the anim/mina command - this is handled
# in the editor and in the server we use <animation xxx>.
#
# The string after the <Object> keyword is not used anymore
# - to define a title string we had to add "title yyyy" in
# the command list. When a name command is given, the name
# will overrule the base item name.
#
# The Artifacts file has 2 uses in Daimonin:
# 
# A.) Using the <name> of a artifact definition, the single
# artifacts are used as a kind generic arches. They
# are listed in the arch list and can be called and
# used as normal arches. To do this, the server/Editor
# are loading the <def_arch> given in every artifacts
# definition, overwrite the old commands with the new
# commands and store it under <name> in the arch list. 
# 
# B.) The artifacts are used as masks from random item
# generator or the treasure list. After these functions 
# generate a (normal) item, the look in the artifacts 
# list and using the <type>, <allowed>, <difficulty> 
# and <chance> to alter the old arch. In this case,
# the items are still from old arch type.
# The artifact list is sorted by types - from types info 
# are build the lists for every arch type.
#
# By using <Allowed none> setting the item is excluded from
# masking by random items or treasure list but can still
# be forced by hand. This is useful for unique items like
# Stormbringer. 
#
# For every fake arch, the def_arch is stored in the arch list
# entry. Functions like disenchant can access it. This will allow
# to 'disenchant' these items. For normal masked items, the def_item
# entry is null in the arch list - we simple reset them to default.
# For fake arch, we use def_arch and have so also a 'unmagical' base
# items. This would be not possible when we define Stormbringer as 
# a normal arch.
#
# In Daimonin, only the def arch is pre parsed - for a "normal" artifactr
# we parse the used object with the commands on the fly at creation time.
# With the map flag MAP_ARTIFACT in the loader.c module, we use some
# values special. In some cases a positive value will overwrite the old
# and a negative value is used a ABS() floating point value and used
# as multiplier.
#
# SKILLS: If skills ever defined here, get_skill_archetype() in arch.c 
# must be extended to search this arches too.
#
# The t_style setting
# --------------------
#
# A t_style is a kind of sub class identifier for the artifacts. 
# It is used to part the single artifact masks (is has no real use for
# unique artifacts) of a Allowed xxx group in sub groups.
#
# There is a t_style variable also in the treasure file for each treasure or
# treasure list which calls this artifacts file after generation a base item.
# Both t_style are compared:
#
# t_style is "unset" = don't compare
# t_style == 0  : generate only artifacts with t_style unset or 0
# t_style <= -1 : Only style ABS(t_style) or unset or 0
# t_style >= 1  : Only items matching that style
#
# Use: 
# A fire giant should be drop fire releated items and artifacts. For example
# only red gems, fire releated potions and magic items or fire based weapons
# or armour. So, all fire releated artifacts are signed as t_style = 1 
# (thats the artifacts file default setting for fire releated items).
# Now the treasures of the fire giant are signed to "t_style 1" too.
# If he drops a artifact then it will be a fire releated.
#
# t_style defaults (use this default settings for your treasures and artifacts)
#
# t_style = 1	-> fire
# t_style = 2   -> cold
# t_style = 3   -> electricity
# t_style = 4   -> poison
# t_style = 5   -> acid
#
# end t_style
#
# The 'editor <num>: <path>' entry defines the use of the artifact entry
#
# editor 0: = this item is internal - ignore complete in the editor
# editor 1: = this item is a "fake arch" - don't use it for artifact masking
# editor 2: = this is a mask entry
# editor 3: = this is used as fake arch and also as mask entry
# fake arch = the server will add the entry to the arch list as it would be a file in /arch
# the path behind the ':' is used as a directory inside /arch - the editor will use it to sort them 
#
# edit 6/5/07 by Thomas Hetz
# edit update 17/07/07 by Daniel Liptrot
# Items with stat such as Str, Dex, etc are listed with these values:
# Minor stat = stat +1, Lesser stat = stat +2, Small stat = stat +3, Medium stat = stat +4
# Major Stat = stat +5, Great stat = stat +6, Greater stat = stat +7, Supreme stat = stat +8?
# like Feathered Hat of Medium Strength would be Str +4, or Helm of Greater Constitution would be Con +7
#
# In the same manner, items with attack or resist types other than physical 
# (example of ** cold/of ** cold protection):
# Minor type = +5%, Lesser type = +10%, Small type = +15%, Medium type = +20%
# Major Type = +25%, Great type = +30%, Greater type = +35%
# like Shield of Minor Fire Resistance would be resist fire 5%, of Major Acid Resistance would be resist acid 25%
# end edit
#
# Special uses:
#
# Lights
#
Allowed crystal_light
artifact crystal_light4
def_arch crystal_light
chance 40
difficulty 50
editor 1:items/light
Object
title of light
is_magical 1
type 74
value 254500
speed 0.15
last_sp 5
end
#
#Artifact pearls
#
#
Allowed all
chance 70
difficulty 1
artifact pearl_poor
def_arch pearl_generic
editor 3:items/jewel/pearls
Object
title of poor quality
material_real 0
type 135
value 15
end
#
#
Allowed all
chance 60
difficulty 5
artifact pearl_medium
def_arch pearl_generic
editor 3:items/jewel/pearls
Object
title of medium quality
material_real 0
type 135
value 70
end
#
#
Allowed all
chance 50
difficulty 10
artifact pearl_great
def_arch pearl_generic
editor 3:items/jewel/pearls
Object
title of great quality
material_real 0
type 135
value 250
end
#
#
Allowed all
chance 40
difficulty 20
artifact pearl_very_great
def_arch pearl_generic
editor 3:items/jewel/pearls
Object
title of very great quality
material_real 0
type 135
value 450
end
#
#
Allowed all
chance 35
difficulty 30
artifact pearl_beauty
def_arch pearl_generic
editor 3:items/jewel/pearls
Object
title of exceptional beauty
material_real 0
type 135
value 1150
end
#
#
Allowed all
chance 30
difficulty 45
artifact pearl_flawless
def_arch pearl_generic
editor 3:items/jewel/pearls
Object
title of flawless beauty
material_real 0
type 135
value 2250
end
#
#
Allowed all
chance 45
difficulty 10
artifact pearl_poor_black
def_arch pearl_generic
editor 3:items/jewel/pearls
Object
name black pearl
title of poor quality
face pearl_blk.101
material_real 0
type 135
value 30
end
#
#
Allowed all
chance 40
difficulty 15
artifact pearl_medium_black
def_arch pearl_generic
editor 3:items/jewel/pearls
Object
name black pearl
title of medium quality
face pearl_blk.101
material_real 0
type 135
value 140
end
#
#
Allowed all
chance 35
difficulty 20
artifact pearl_great_black
def_arch pearl_generic
editor 3:items/jewel/pearls
Object
name black pearl
title of great quality
face pearl_blk.101
material_real 0
type 135
value 500
end
#
#
Allowed all
chance 30
difficulty 25
artifact pearl_very_great_black
def_arch pearl_generic
editor 3:items/jewel/pearls
Object
name black pearl
title of very great quality
face pearl_blk.101
material_real 0
type 135
value 900
end
#
#
Allowed all
chance 25
difficulty 40
artifact pearl_beauty_black
def_arch pearl_generic
editor 3:items/jewel/pearls
Object
name black pearl
title of exceptional beauty
material_real 0
face pearl_blk.101
type 135
value 2350
end
#
#
Allowed all
chance 20
difficulty 50
artifact pearl_flawless_black
def_arch pearl_generic
editor 3:items/jewel/pearls
Object
name black pearl
title of flawless beauty
face pearl_blk.101
material_real 0
type 135
value 4500
end
#
#
Allowed all
chance 35
difficulty 15
artifact pearl_poor_gold
def_arch pearl_generic
editor 3:items/jewel/pearls
Object
name gold pearl
title of poor quality
face pearl_gold.101
material_real 0
type 135
value 60
end
#
#
Allowed all
chance 30
difficulty 20
artifact pearl_medium_gold
def_arch pearl_generic
editor 3:items/jewel/pearls
Object
name gold pearl
title of medium quality
face pearl_gold.101
material_real 0
type 135
value 140
end
#
#
Allowed all
chance 25
difficulty 25
artifact pearl_great_gold
def_arch pearl_generic
editor 3:items/jewel/pearls
Object
name gold pearl
title of great quality
face pearl_gold.101
material_real 0
type 135
value 850
end
#
#
Allowed all
chance 20
difficulty 35
artifact pearl_very_great_gold
def_arch pearl_generic
editor 3:items/jewel/pearls
Object
name gold pearl
title of very great quality
face pearl_gold.101
material_real 0
type 135
value 1800
end
#
#
Allowed all
chance 15
difficulty 50
artifact pearl_beauty_gold
def_arch pearl_generic
editor 3:items/jewel/pearls
Object
name gold pearl
title of exceptional beauty
material_real 0
face pearl_gold.101
type 135
value 4600
end
#
#
Allowed all
chance 10
difficulty 60
artifact pearl_flawless_gold
def_arch pearl_generic
editor 3:items/jewel/pearls
Object
name gold pearl
title of flawless beauty
face pearl_gold.101
material_real 0
type 135
value 9500
end
#
#
#Artifact nuggets!
#
#
Allowed all
chance 60
artifact nug_tin_small
def_arch nugget_generic
editor 3:items/jewel/nuggets
Object
title of small size
face nugget_silver_s.101
item_quality 100
item_condition 100
type 117
end
#
Allowed all
chance 55
artifact nug_tin_med
def_arch nugget_generic
editor 3:items/jewel/nuggets
Object
title of medium size
face nugget_silver_l.101
item_quality 100
item_condition 100
weight 350
value 150
type 117
end
#
#
Allowed all
chance 50
difficulty 5
artifact nug_tin_big
def_arch nugget_generic
editor 3:items/jewel/nuggets
Object
title of big size
face nugget_silver_h.101
item_quality 100
item_condition 100
value 250
weight 750
type 117
end
#
#
Allowed all
chance 60
artifact nug_copper_small
def_arch nugget_generic
editor 3:items/jewel/nuggets
Object
title of small size
face nugget_copper_s.101
item_quality 100
item_condition 100
value 75
type 117
material_real 643
end
#
#
Allowed all
chance 50
difficulty 7
artifact nug_copper_med
def_arch nugget_generic
editor 3:items/jewel/nuggets
Object
title of medium size
face nugget_copper_l.101
item_quality 100
item_condition 100
weight 320
value 250
type 117
material_real 643
end
#
#
Allowed all
chance 40
difficulty 12
artifact nug_copper_big
def_arch nugget_generic
editor 3:items/jewel/nuggets
Object
title of big size
face nugget_copper_h.101
item_quality 100
item_condition 100
value 650
weight 700
type 117
material_real 643
end
#
#
Allowed all
chance 60
difficulty 5
artifact nug_bronze_small
def_arch nugget_generic
editor 3:items/jewel/nuggets
Object
title of small size
face nugget_gold_s.101
item_quality 100
item_condition 100
value 150
type 117
material_real 644
end
#
#
Allowed all
chance 50
difficulty 12
artifact nug_bronze_med
def_arch nugget_generic
editor 3:items/jewel/nuggets
Object
title of medium size
face nugget_gold_l.101
item_quality 100
item_condition 100
weight 350
value 400
type 117
material_real 644
end
#
#
Allowed all
chance 40
difficulty 18
artifact nug_bronze_big
def_arch nugget_generic
editor 3:items/jewel/nuggets
Object
title of big size
face nugget_gold_h.101
item_quality 100
item_condition 100
value 900
weight 750
type 117
material_real 644
end
#
#
Allowed all
chance 50
difficulty 10
artifact nug_silver_small
def_arch nugget_generic
editor 3:items/jewel/nuggets
Object
title of small size
face nugget_silver_s.101
item_quality 100
item_condition 100
value 225
weight 200
type 117
material_real 645
end
#
#
Allowed all
chance 40
difficulty 20
artifact nug_silver_med
def_arch nugget_generic
editor 3:items/jewel/nuggets
Object
title of medium size
face nugget_silver_l.101
item_quality 100
item_condition 100
weight 450
value 750
type 117
material_real 645
end
#
#
Allowed all
chance 30
difficulty 30
artifact nug_silver_big
def_arch nugget_generic
editor 3:items/jewel/nuggets
Object
title of big size
face nugget_silver_h.101
item_quality 100
item_condition 100
value 1950
weight 900
type 117
material_real 645
end
#
Allowed all
chance 40
difficulty 25
artifact nug_gold_small
def_arch nugget_generic
editor 3:items/jewel/nuggets
Object
title of small size
face nugget_gold_s.101
item_quality 100
item_condition 100
weight 200
value 500
type 117
material_real 646
end
#
#
Allowed all
chance 30
difficulty 30
artifact nug_gold_med
def_arch nugget_generic
editor 3:items/jewel/nuggets
Object
title of medium size
face nugget_gold_l.101
item_quality 100
item_condition 100
weight 700
value 950
type 117
material_real 646
end
#
#
Allowed all
chance 20
difficulty 50
artifact nug_gold_big
def_arch nugget_generic
editor 3:items/jewel/nuggets
Object
title of big size
face nugget_gold_h.101
item_quality 100
item_condition 100
value 2400
weight 1200
type 117
material_real 646
end
#
Allowed all
chance 30
difficulty 35
artifact nug_platin_small
def_arch nugget_generic
editor 3:items/jewel/nuggets
Object
title of small size
face nugget_silver_s.101
item_quality 100
item_condition 100
weight 50
value 600
type 117
material_real 647
end
#
#
Allowed all
chance 20
difficulty 50
artifact nug_platin_med
def_arch nugget_generic
editor 3:items/jewel/nuggets
Object
title of medium size
face nugget_silver_l.101
item_quality 100
item_condition 100
weight 100
value 1150
type 117
material_real 647
end
#
#
Allowed all
chance 15
difficulty 60
artifact nug_platin_big
def_arch nugget_generic
editor 3:items/jewel/nuggets
Object
title of big size
face nugget_silver_h.101
item_quality 100
item_condition 100
value 2750
weight 150
type 117
material_real 647
end
#
#
Allowed all
chance 20
difficulty 85
artifact nug_mit_small
def_arch nugget_generic
editor 3:items/jewel/nuggets
Object
title of small size
face nugget_mit_s.101
item_quality 100
item_condition 100
weight 10
value 1350
type 117
material_real 514
material 1280
end
#
#
Allowed all
chance 10
difficulty 90
artifact nug_mit_med
def_arch nugget_generic
editor 3:items/jewel/nuggets
Object
title of medium size
face nugget_mit_l.101
item_quality 100
item_condition 100
weight 20
value 2650
type 117
material_real 514
material 1280
end
#
#
Allowed all
chance 5
difficulty 95
artifact nug_mit_big
def_arch nugget_generic
editor 3:items/jewel/nuggets
Object
title of big size
face nugget_mit_h.101
item_quality 100
item_condition 100
value 4250
weight 30
type 117
material_real 514
material 1280
end
#
#
#Artifact gems!
#
Allowed all
chance 40
difficulty 1
artifact zircon_small
def_arch gem_generic
editor 3:items/jewel/gems
Object
title of small size
item_quality 100
item_condition 100
value 110
type 60
material_real 130
end
#
Allowed all
chance 20
difficulty 3
artifact zircon_medium
def_arch gem_generic
editor 3:items/jewel/gems
Object
title of medium size
face gem_big_clear.101
item_quality 100
item_condition 100
value 1100
type 60
material_real 130
end
#
Allowed all
chance 40
difficulty 1
artifact jasper_small
def_arch gem_generic
editor 3:items/jewel/gems
Object
title of small size
item_quality 100
item_condition 100
face gem_red.101
value 100
type 60
material_real 136
end
#
Allowed all
chance 20
difficulty 3
artifact jasper_medium
def_arch gem_generic
editor 3:items/jewel/gems
Object
title of medium size
item_quality 100
item_condition 100
face gem_big_red.101
value 1000
type 60
material_real 136
end
#
Allowed all
chance 40
difficulty 1
artifact jade_small
def_arch gem_generic
editor 3:items/jewel/gems
Object
title of small size
item_quality 100
item_condition 100
face gem_green.101
value 95
type 60
material_real 137
end
#
Allowed all
chance 20
difficulty 3
artifact jade_medium
def_arch gem_generic
editor 3:items/jewel/gems
Object
title of medium size
item_quality 100
item_condition 100
face gem_big_green.101
value 950
type 60
material_real 137
end
#
Allowed all
chance 40
difficulty 1
artifact aquamarine_small
def_arch gem_generic
editor 3:items/jewel/gems
Object
title of small size
item_quality 100
item_condition 100
face gem_blue.101
value 150
type 60
material_real 138
end
#
Allowed all
chance 20
difficulty 3
artifact aquamarine_medium
def_arch gem_generic
editor 3:items/jewel/gems
Object
title of medium size
item_quality 100
item_condition 100
face gem_big_blue.101
value 1500
type 60
material_real 138
end
#
#
Allowed all
chance 40
difficulty 1
artifact amethyst_small
def_arch gem_generic
editor 3:items/jewel/gems
Object
title of small size
item_quality 100
item_condition 100
face gem_purple.101
value 220
type 60
material_real 140
end
#
Allowed all
chance 20
difficulty 3
artifact amethyst_medium
def_arch gem_generic
editor 3:items/jewel/gems
Object
title of medium size
item_quality 100
item_condition 100
face gem_big_purple.101
value 1750
type 60
material_real 140
end
#
#Artifact jewels!
#
Allowed all
chance 100
difficulty 4
t_style 2
artifact diamond_poor
def_arch jewel_generic
editor 3:items/jewel/jewels
Object
title of very poor quality
item_quality 100
item_condition 100
face jewel_clear.101
material_real 135
value 800
type 116
end
#
Allowed all
chance 40
difficulty 9
t_style 2
artifact diamond_small
def_arch jewel_generic
editor 3:items/jewel/jewels
Object
title of very small size
face jewel_clear.101
item_quality 100
item_condition 100
material_real 135
value 8000
type 116
end
#
Allowed all
chance 30
difficulty 20
t_style 2
artifact diamond_great
def_arch jewel_generic
editor 3:items/jewel/jewels
Object
title of great value
face jewel_clear.101
material_real 135
item_quality 100
item_condition 100
value 150000
type 116
end
#
Allowed all
chance 20
difficulty 30
t_style 2
artifact diamond_except
def_arch jewel_generic
editor 3:items/jewel/jewels
Object
title of exceptional beauty
face jewel_clear.101
item_quality 100
item_condition 100
material_real 135
value 250000
type 116
end
#
Allowed all
chance 5
difficulty 50
t_style 2
artifact diamond_flawless
def_arch jewel_generic
editor 3:items/jewel/jewels
Object
title of flawless beauty
face jewel_clear.101
material_real 135
item_quality 100
item_condition 100
value 400000
type 116
end
#
Allowed all
chance 100
difficulty 4
t_style 1
artifact ruby_poor
def_arch jewel_generic
editor 3:items/jewel/jewels
Object
title of very poor quality
item_quality 100
item_condition 100
face jewel_red.101
material_real 134
value 600
type 116
end
#
Allowed all
chance 40
difficulty 9
t_style 1
artifact ruby_small
def_arch jewel_generic
editor 3:items/jewel/jewels
Object
title of very small size
item_quality 100
item_condition 100
face jewel_red.101
material_real 134
value 6000
type 116
end
#
Allowed all
chance 30
difficulty 20
t_style 1
artifact ruby_great
def_arch jewel_generic
editor 3:items/jewel/jewels
Object
title of great value
face jewel_red.101
item_quality 100
item_condition 100
material_real 134
value 120000
type 116
end
#
Allowed all
chance 20
difficulty 30
t_style 1
artifact ruby_except
def_arch jewel_generic
editor 3:items/jewel/jewels
Object
title of exceptional beauty
item_quality 100
item_condition 100
face jewel_red.101
material_real 134
value 220000
type 116
end
#
Allowed all
chance 5
difficulty 50
t_style 1
artifact ruby_flawless
def_arch jewel_generic
editor 3:items/jewel/jewels
Object
title of flawless beauty
item_quality 100
item_condition 100
face jewel_red.101
material_real 134
value 380000
type 116
end
#
Allowed all
chance 100
difficulty 4
artifact sapphire_poor
def_arch jewel_generic
editor 3:items/jewel/jewels
Object
title of very poor quality
item_quality 100
item_condition 100
face jewel_blue.101
material_real 133
value 500
type 116
end
#
Allowed all
chance 40
difficulty 9
artifact sapphire_small
def_arch jewel_generic
editor 3:items/jewel/jewels
Object
title of very small size
face jewel_blue.101
item_quality 100
item_condition 100
material_real 133
value 5000
type 116
end
# 
Allowed all
chance 30
difficulty 20
artifact sapphire_great
def_arch jewel_generic
editor 3:items/jewel/jewels
Object
title of great value
face jewel_blue.101
item_quality 100
item_condition 100
material_real 133
value 90000
type 116
end
#
Allowed all
chance 20
difficulty 30
artifact sapphire_except
def_arch jewel_generic
editor 3:items/jewel/jewels
Object
title of exceptional beauty
item_quality 100
item_condition 100
face jewel_blue.101
value 190000
material_real 133
type 116
end
#
Allowed all
chance 5
difficulty 50
artifact sapphire_flawless
def_arch jewel_generic
editor 3:items/jewel/jewels
Object
title of flawless beauty
face jewel_blue.101
item_quality 100
item_condition 100
material_real 133
value 350000
type 116
end
#
Allowed all
chance 100
difficulty 4
artifact emerald_poor
def_arch jewel_generic
editor 3:items/jewel/jewels
Object
title of very poor quality
item_quality 100
item_condition 100
face jewel_green.101
material_real 132
value 300
type 116
end
#
Allowed all
chance 40
difficulty 9
artifact emerald_small
def_arch jewel_generic
editor 3:items/jewel/jewels
Object
title of very small size
item_quality 100
item_condition 100
face jewel_green.101
material_real 132
value 3000
type 116
end
# 
Allowed all
chance 30
difficulty 20
artifact emerald_great
def_arch jewel_generic
editor 3:items/jewel/jewels
Object
item_quality 100
item_condition 100
title of great value
face jewel_green.101
material_real 132
value 75000
type 116
end
# 
Allowed all
chance 20
difficulty 30
artifact emerald_except
def_arch jewel_generic
editor 3:items/jewel/jewels
Object
title of exceptional beauty
face jewel_green.101
item_quality 100
item_condition 100
material_real 132
value 150000
type 116
end
#
Allowed all
chance 5
difficulty 50
artifact emerald_flawless
def_arch jewel_generic
editor 3:items/jewel/jewels
Object
item_quality 100
item_condition 100
title of flawless beauty
face jewel_green.101
material_real 132
value 310000
type 116
end
#
#
Allowed all
chance 100
difficulty 4
artifact opal_poor
def_arch jewel_generic
editor 3:items/jewel/jewels
Object
title of very poor quality
item_quality 100
item_condition 100
face jewel_purple.101
material_real 139
value 400
type 116
end
#
Allowed all
chance 40
difficulty 9
artifact opal_small
def_arch jewel_generic
editor 3:items/jewel/jewels
Object
title of very small size
item_quality 100
item_condition 100
face jewel_purple.101
material_real 139
value 4000
type 116
end
# 
Allowed all
chance 30
difficulty 20
artifact opal_great
def_arch jewel_generic
editor 3:items/jewel/jewels
Object
item_quality 100
item_condition 100
title of great value
face jewel_purple.101
material_real 139
value 82500
type 116
end
# 
Allowed all
chance 20
difficulty 30
artifact opal_except
def_arch jewel_generic
editor 3:items/jewel/jewels
Object
title of exceptional beauty
face jewel_purple.101
item_quality 100
item_condition 100
material_real 139
value 175000
type 116
end
#
Allowed all
chance 5
difficulty 50
artifact opal_flawless
def_arch jewel_generic
editor 3:items/jewel/jewels
Object
item_quality 100
item_condition 100
title of flawless beauty
face jewel_purple.101
material_real 139
value 330000
type 116
end
#
#
# Containers
#
# The editor 3: is a trick, because we had given out some of these containers
# i the past as fake arch items - if they would vanish to singularities, they
# would destroy all items inside too! This can be changed to 2: for 1.0 and player wipe
#
#
Allowed quiver,quiver_s,quiver_b,bag,sack,r_sack,pouch
chance 50
artifact holding_min
def_arch bag
editor 3:items/container
Object
is_magical 1
title of minor holding
type 122
value 550
weapon_speed 0.85
end
#
Allowed quiver,quiver_s,quiver_b,bag,sack,r_sack,pouch
chance 45
difficulty 5
artifact holding_small
def_arch bag
editor 3:items/container
Object
is_magical 1
title of small holding
type 122
value 1250
weapon_speed 0.75
end
#
Allowed quiver,quiver_s,quiver_b,bag,sack,r_sack,pouch
chance 35
difficulty 15
artifact holding_med
def_arch bag
editor 3:items/container
Object
is_magical 1
title of medium holding
type 122
value 2600
weapon_speed 0.65
end
#
Allowed quiver,quiver_s,quiver_b,bag,sack,key_ring,r_sack,pouch
chance 25
difficulty 25
artifact holding
def_arch bag
editor 3:items/container
Object
is_magical 1
title of holding
type 122
value 10500
weapon_speed 0.55
end
#
Allowed quiver,quiver_s,quiver_b,bag,sack,r_sack,pouch
chance 15
difficulty 35
artifact holding_fine
def_arch bag
editor 3:items/container
Object
is_magical 1
title of fine holding
type 122
value 20200
weapon_speed 0.45
end
#
Allowed quiver,quiver_s,quiver_b,bag,sack,r_sack,pouch
chance 10
difficulty 50
artifact holding_great
def_arch bag
editor 3:items/container
Object
is_magical 1
title of great holding
type 122
value 40400
weapon_speed 0.40
end
#
Allowed quiver,quiver_s,quiver_b,bag,sack,r_sack,pouch
chance 5
difficulty 65
artifact holding_greater
def_arch bag
editor 3:items/container
Object
is_magical 1
title of greater holding
type 122
value 60450
weapon_speed 0.35
end
#
Allowed quiver,quiver_s,quiver_b,bag,sack,r_sack,pouch
chance 3
difficulty 85
artifact holding_weight
def_arch bag
editor 3:items/container
Object
is_magical 1
title of weightless holding
type 122
value 80420
weapon_speed 0.30
end
#
# Cloaks
#
Allowed cloak
chance 50
artifact cloak_woe1
def_arch cloak
editor 2:items/armour/cloak
Object
title of Woe
type 87
cursed_perm 1
cursed 1
is_magical 1
str -1
con -1
dex -1
wis -1
int -1
pow -1
cha -1
value 50
end
#
Allowed cloak
chance 40
difficulty 2
t_style 1
artifact cloak_min_fire
def_arch cloak
editor 2:items/armour/cloak
Object
title of minor fire protection
item_level_art 2
type 87
resist_fire 4
is_magical 1
value 2100
end
#
Allowed cloak
chance 40
t_style 2
difficulty 2
artifact cloak_min_cold
def_arch cloak
editor 2:items/armour/cloak
Object
title of minor cold protection
item_level_art 2
type 87
resist_cold 4
is_magical 1
value 2100
end
#
Allowed cloak
chance 40
t_style 3
difficulty 2
artifact cloak_min_elec
def_arch cloak
editor 2:items/armour/cloak
Object
title of minor electricity protection
item_level_art 2
type 87
resist_electricity 4
is_magical 1
value 2100
end
#
Allowed cloak
chance 40
t_style 4
difficulty 2
artifact cloak_min_poison
def_arch cloak
editor 2:items/armour/cloak
Object
title of minor poison protection
item_level_art 2
type 87
resist_poison 4
is_magical 1
value 2100
end
#
Allowed cloak
chance 40
t_style 5
difficulty 2
artifact cloak_min_acid
def_arch cloak
editor 2:items/armour/cloak
Object
title of minor acid protection
item_level_art 2
type 87
resist_acid 4
is_magical 1
value 2100
end
#
Allowed cloak
chance 20
t_style 1
difficulty 7
artifact cloak_less_fire
def_arch cloak
editor 2:items/armour/cloak
Object
title of lesser fire protection
item_level_art 7
type 87
resist_fire 8
is_magical 1
value 2310
end
#
Allowed cloak
chance 20
t_style 2
difficulty 7
artifact cloak_less_cold
def_arch cloak
editor 2:items/armour/cloak
Object
title of lesser cold protection
item_level_art 7
type 87
resist_cold 8
is_magical 1
value 2310
end
#
Allowed cloak
chance 20
t_style 3
difficulty 7
artifact cloak_less_elec
def_arch cloak
editor 2:items/armour/cloak
Object
title of lesser electricity protection
item_level_art 7
type 87
resist_electricity 8
is_magical 1
value 2310
end
#
Allowed cloak
chance 20
t_style 4
difficulty 7
artifact cloak_less_poison
def_arch cloak
editor 2:items/armour/cloak
Object
title of lesser poison protection
item_level_art 7
type 87
resist_poison 8
is_magical 1
value 2310
end
#
Allowed cloak
chance 20
t_style 5
difficulty 7
artifact cloak_less_acid
def_arch cloak
editor 2:items/armour/cloak
Object
title of lesser acid protection
item_level_art 7
type 87
resist_acid 8
is_magical 1
value 2310
end
#
Allowed cloak
chance 10
t_style 1
difficulty 15
artifact cloak_sm_fire
def_arch cloak
editor 2:items/armour/cloak
Object
title of small fire protection
item_level_art 15
type 87
resist_fire 12
is_magical 1
value 2540
end
#
Allowed cloak
chance 10
t_style 2
difficulty 15
artifact cloak_sm_cold
def_arch cloak
editor 2:items/armour/cloak
Object
title of small cold protection
item_level_art 15
type 87
resist_cold 12
is_magical 1
value 2540
end
#
Allowed cloak
chance 10
t_style 3
difficulty 15
artifact cloak_sm_elec
def_arch cloak
editor 2:items/armour/cloak
Object
title of small electricity protection
item_level_art 15
type 87
resist_electricity 12
is_magical 1
value 2540
end
#
Allowed cloak
chance 10
t_style 4
difficulty 15
artifact cloak_sm_poison
def_arch cloak
editor 2:items/armour/cloak
Object
title of small poison protection
item_level_art 15
type 87
resist_poison 12
is_magical 1
value 2540
end
#
Allowed cloak
chance 10
t_style 5
difficulty 15
artifact cloak_sm_acid
def_arch cloak
editor 2:items/armour/cloak
Object
title of small acid protection
item_level_art 15
type 87
resist_acid 12
is_magical 1
value 2540
end
#
Allowed cloak
chance 5
t_style 1
difficulty 25
artifact cloak_med_fire
def_arch cloak
editor 2:items/armour/cloak
Object
title of medium fire protection
item_level_art 25
type 87
resist_fire 15
is_magical 1
value 2540
end
#
Allowed cloak
chance 5
t_style 2
difficulty 25
artifact cloak_med_cold
def_arch cloak
editor 2:items/armour/cloak
Object
title of medium cold protection
item_level_art 25
type 87
resist_cold 15
is_magical 1
value 2794
end
#
Allowed cloak
chance 5
t_style 3
difficulty 25
artifact cloak_med_elec
def_arch cloak
editor 2:items/armour/cloak
Object
title of medium electricity protection
item_level_art 25
type 87
resist_electricity 15
is_magical 1
value 2794
end
#
Allowed cloak
chance 5
t_style 4
difficulty 25
artifact cloak_med_poison
def_arch cloak
editor 2:items/armour/cloak
Object
title of medium poison protection
item_level_art 25
type 87
resist_poison 15
is_magical 1
value 2794
end
#
Allowed cloak
chance 5
t_style 5
difficulty 25
artifact cloak_med_acid
def_arch cloak
editor 2:items/armour/cloak
Object
title of medium acid protection
item_level_art 25
type 87
resist_acid 15
is_magical 1
value 2794
end
#
Allowed robe
chance 50
artifact robe_woe
def_arch robe
editor 2:items/armour/cloak/robe
Object
title of Woe
type 87
is_magical 1
cursed_perm 1
cursed 1
str -1
con -1
dex -1
wis -1
int -1
pow -1
cha -1
value 50
end
#
Allowed robe
chance 40
difficulty 2
artifact robe_min_str
def_arch robe
editor 2:items/armour/cloak/robe
Object
title of minor strength
item_level_art 2
type 87
str 1
face robe_red.101
is_magical 1
value 2500
end
#
Allowed robe
chance 40
difficulty 2
artifact robe_min_dex
def_arch robe
editor 2:items/armour/cloak/robe
Object
title of minor dexterity
item_level_art 2
type 87
dex 1
face robe_black.101
is_magical 1
value 2500
end
#
Allowed robe
chance 40
difficulty 2
artifact robe_min_con
def_arch robe
editor 2:items/armour/cloak/robe
Object
title of minor constitution
item_level_art 2
type 87
is_magical 1
face robe_purple.101
con 1
value 2500
end
#
Allowed robe
chance 40
difficulty 2
artifact robe_min_int
def_arch robe
editor 2:items/armour/cloak/robe
Object
title of minor intelligence
item_level_art 2
type 87
int 1
face robe_white.101
is_magical 1
value 2500
end
#
Allowed robe
chance 40
difficulty 2
artifact robe_min_pow
def_arch robe
editor 2:items/armour/cloak/robe
Object
title of minor power
item_level_art 2
type 87
pow 1
is_magical 1
value 2500
end
#
Allowed robe
chance 40
difficulty 2
artifact robe_min_wis
def_arch robe
editor 2:items/armour/cloak/robe
Object
title of minor wisdom
item_level_art 2
type 87
wis 1
is_magical 1
value 2500
end
#
Allowed robe
chance 40
difficulty 2
artifact robe_min_cha
def_arch robe
editor 2:items/armour/cloak/robe
Object
title of minor charisma
item_level_art 2
type 87
cha 1
face robe_lblue.101
is_magical 1
value 2500
end
#
Allowed robe
chance 20
difficulty 7
artifact robe_less_str
def_arch robe
editor 2:items/armour/cloak/robe
Object
title of lesser strength
item_level_art 7
type 87
str 2
face robe_red.101
is_magical 1
value 2750
end
#
Allowed robe
chance 20
difficulty 7
artifact robe_less_dex
def_arch robe
editor 2:items/armour/cloak/robe
Object
title of lesser dexterity
item_level_art 7
type 87
dex 2
face robe_black.101
is_magical 1
value 2750
end
#
Allowed robe
chance 20
difficulty 7
artifact robe_less_con
def_arch robe
editor 2:items/armour/cloak/robe
Object
title of lesser constitution
item_level_art 7
type 87
is_magical 1
face robe_purple.101
con 2
value 2750
end
#
Allowed robe
chance 20
difficulty 7
artifact robe_less_int
def_arch robe
editor 2:items/armour/cloak/robe
Object
title of lesser intelligence
item_level_art 7
type 87
int 2
face robe_white.101
is_magical 1
value 2750
end
#
Allowed robe
chance 20
difficulty 7
artifact robe_less_pow
def_arch robe
editor 2:items/armour/cloak/robe
Object
title of lesser power
item_level_art 7
type 87
pow 2
is_magical 1
value 2750
end
#
Allowed robe
chance 20
difficulty 7
artifact robe_less_wis
def_arch robe
editor 2:items/armour/cloak/robe
Object
title of lesser wisdom
item_level_art 7
type 87
wis 2
is_magical 1
value 2750
end
#
Allowed robe
chance 20
difficulty 7
artifact robe_less_cha
def_arch robe
editor 2:items/armour/cloak/robe
Object
title of lesser charisma
item_level_art 7
type 87
cha 2
face robe_lblue.101
is_magical 1
value 2750
end
#
Allowed robe
chance 10
difficulty 15
artifact robe_sm_str
def_arch robe
editor 2:items/armour/cloak/robe
Object
title of small strength
item_level_art 15
type 87
str 3
face robe_red.101
is_magical 1
value 3025
end
#
Allowed robe
chance 10
difficulty 15
artifact robe_sm_dex
def_arch robe
editor 2:items/armour/cloak/robe
Object
title of small dexterity
item_level_art 15
type 87
dex 3
face robe_black.101
is_magical 1
value 3025
end
#
Allowed robe
chance 10
difficulty 15
artifact robe_sm_con
def_arch robe
editor 2:items/armour/cloak/robe
Object
title of small constitution
item_level_art 15
type 87
is_magical 1
face robe_purple.101
con 3
value 3025
end
#
Allowed robe
chance 10
difficulty 15
artifact robe_sm_int
def_arch robe
editor 2:items/armour/cloak/robe
Object
title of small intelligence
item_level_art 15
type 87
int 3
face robe_white.101
is_magical 1
value 3025
end
#
Allowed robe
chance 10
difficulty 15
artifact robe_sm_pow
def_arch robe
editor 2:items/armour/cloak/robe
Object
title of small power
item_level_art 15
type 87
pow 3
is_magical 1
value 3025
end
#
Allowed robe
chance 10
difficulty 15
artifact robe_sm_wis
def_arch robe
editor 2:items/armour/cloak/robe
Object
title of small wisdom
item_level_art 15
type 87
wis 3
is_magical 1
value 3025
end
#
Allowed robe
chance 10
difficulty 15
artifact robe_sm_cha
def_arch robe
editor 2:items/armour/cloak/robe
Object
title of small charisma
item_level_art 15
type 87
cha 3
face robe_lblue.101
is_magical 1
value 3025
end
#
Allowed robe
chance 5
difficulty 25
artifact robe_med_str
def_arch robe
editor 2:items/armour/cloak/robe
Object
title of medium strength
item_level_art 25
type 87
str 4
face robe_red.101
is_magical 1
value 3327
end
#
Allowed robe
chance 5
difficulty 25
artifact robe_med_dex
def_arch robe
editor 2:items/armour/cloak/robe
Object
title of medium dexterity
item_level_art 25
type 87
dex 4
face robe_black.101
is_magical 1
value 3327
end
#
Allowed robe
chance 5
difficulty 25
artifact robe_med_con
def_arch robe
editor 2:items/armour/cloak/robe
Object
title of medium constitution
item_level_art 25
type 87
is_magical 1
face robe_purple.101
con 4
value 3327
end
#
Allowed robe
chance 5
difficulty 25
artifact robe_med_int
def_arch robe
editor 2:items/armour/cloak/robe
Object
title of medium intelligence
item_level_art 25
type 87
int 4
face robe_white.101
is_magical 1
value 3327
end
#
Allowed robe
chance 5
difficulty 25
artifact robe_med_pow
def_arch robe
editor 2:items/armour/cloak/robe
Object
title of medium power
item_level_art 25
type 87
pow 4
is_magical 1
value 3327
end
#
Allowed robe
chance 5
difficulty 25
artifact robe_med_wis
def_arch robe
editor 2:items/armour/cloak/robe
Object
title of medium wisdom
item_level_art 25
type 87
wis 4
is_magical 1
value 3327
end
#
Allowed robe
chance 5
difficulty 25
artifact robe_med_cha
def_arch robe
editor 2:items/armour/cloak/robe
Object
title of medium charisma
item_level_art 25
type 87
cha 4
face robe_lblue.101
is_magical 1
value 3327
end
#
Allowed cape
chance 50
artifact cape_woe
def_arch cape
editor 2:items/armour/cloak/cape
Object
title of Woe
type 87
is_magical 1
cursed_perm 1
cursed 1
str -1
con -1
dex -1
wis -1
int -1
pow -1
cha -1
value 50
end
#
Allowed cape
chance 20
difficulty 25
artifact cape_med_fire
def_arch cape
editor 2:items/armour/cloak/robe
Object
title of medium fire protection
type 87
is_magical 1
face cape_red.101
item_level_art 25
resist_fire 25
resist_impact -15
resist_pierce -15
value 6000
end
#
Allowed cape
chance 20
difficulty 25
artifact cape_med_cold
def_arch cape
editor 2:items/armour/cloak/robe
Object
title of medium cold protection
type 87
item_level_art 25
is_magical 1
resist_cold 25
resist_slash -15
resist_cleave -15
value 6000
end
#
# body armours (mails)
#
Allowed !crystal_mail,!mithril_armour,!mithril_ring,!mithril_coat
chance 80
artifact armour_mass
def_arch chain_mail
editor 2:items/armour/mail
Object
title of mass
type 16
is_magical 1
value 5
cursed_perm 1
cursed 1
weight 65000
end
#
Allowed !crystal_mail,!mithril_armour,!mithril_ring,!mithril_coat
chance 60
difficulty 15
artifact armour_vuln
def_arch chain_mail
editor 2:items/armour/mail
Object
title of vulnerability
type 16
is_magical 1
resist_impact -50
resist_slash -50
resist_cleave -50
resist_pierce -50
value 500
cursed_perm 1
cursed 1
end
#
Allowed all
chance 40
artifact armour_minor_hp
def_arch chain_mail
editor 2:items/armour/mail
Object
title of minor health
item_level_art 3
type 16
maxhp 12
is_magical 1
value 9500
end
#
Allowed all
chance 30
difficulty 20
artifact armour_medium_hp
def_arch chain_mail
editor 2:items/armour/mail
Object
title of medium health
item_level_art 7
type 16
maxhp 25
is_magical 1
value 15500
end
#
#
Allowed all
chance 20
difficulty 30
artifact armour_hp
def_arch chain_mail
editor 2:items/armour/mail
Object
title of health
type 16
item_level_art 12
maxhp 40
is_magical 1
value 35500
end
#
#
Allowed all
chance 15
difficulty 50
artifact armour_major_hp
def_arch chain_mail
editor 2:items/armour/mail
Object
title of major health
type 16
item_level_art 20
maxhp 65
is_magical 1
value 65500
end
#
#
Allowed all
chance 10
difficulty 75
artifact armour_great_hp
def_arch chain_mail
editor 2:items/armour/mail
Object
title of great health
type 16
item_level_art 30
maxhp 100
is_magical 1
value 105500
end
#
#
Allowed all
chance 40
t_style 1
difficulty 2
artifact armour_min_fire
def_arch chain_mail
editor 2:items/armour/mail
Object
title of minor fire protection
item_level_art 2
type 16
resist_fire 8
is_magical 1
value 9500
end
#
Allowed all
chance 40
t_style 2
difficulty 2
artifact armour_min_cold
def_arch chain_mail
editor 2:items/armour/mail
Object
title of minor cold protection
item_level_art 2
type 16
resist_cold 8
is_magical 1
value 9500
end
#
Allowed all
chance 40
t_style 3
difficulty 2
artifact armour_min_elec
def_arch chain_mail
editor 2:items/armour/mail
Object
title of minor electricity protection
item_level_art 2
type 16
resist_electricity 8
is_magical 1
value 9500
end
#
Allowed all
chance 40
t_style 4
difficulty 2
artifact armour_min_poison
def_arch chain_mail
editor 2:items/armour/mail
Object
title of minor poison protection
item_level_art 2
type 16
resist_poison 8
is_magical 1
value 9500
end
#
Allowed all
chance 40
t_style 5
difficulty 2
artifact armour_min_acid
def_arch chain_mail
editor 2:items/armour/mail
Object
title of minor acid protection
item_level_art 2
type 16
resist_acid 8
is_magical 1
value 9500
end
#
Allowed all
chance 20
t_style 1
difficulty 7
artifact armour_less_fire
def_arch chain_mail
editor 2:items/armour/mail
Object
title of lesser fire protection
item_level_art 7
type 16
resist_fire 15
is_magical 1
value 10450
end
#
Allowed all
chance 20
t_style 2
difficulty 7
artifact armour_less_cold
def_arch chain_mail
editor 2:items/armour/mail
Object
title of lesser cold protection
item_level_art 7
type 16
resist_cold 15
is_magical 1
value 10450
end
#
Allowed all
chance 20
t_style 3
difficulty 7
artifact armour_less_elec
def_arch chain_mail
editor 2:items/armour/mail
Object
title of lesser electricity protection
item_level_art 7
type 16
resist_electricity 15
is_magical 1
value 10450
end
#
Allowed all
chance 20
t_style 4
difficulty 7
artifact armour_less_poison
def_arch chain_mail
editor 2:items/armour/mail
Object
title of lesser poison protection
item_level_art 7
type 16
resist_poison 15
is_magical 1
value 10450
end
#
Allowed all
chance 20
t_style 5
difficulty 7
artifact armour_less_acid
def_arch chain_mail
editor 2:items/armour/mail
Object
title of lesser acid protection
item_level_art 7
type 16
resist_acid 15
is_magical 1
value 10450
end
#
Allowed all
chance 10
t_style 1
difficulty 15
artifact armour_sm_fire
def_arch chain_mail
editor 2:items/armour/mail
Object
title of small fire protection
item_level_art 15
type 16
resist_fire 22
is_magical 1
value 11455
end
#
Allowed all
chance 10
t_style 2
difficulty 15
artifact armour_sm_cold
def_arch chain_mail
editor 2:items/armour/mail
Object
title of small cold protection
item_level_art 15
type 16
resist_cold 22
is_magical 1
value 11455
end
#
Allowed all
chance 10
t_style 3
difficulty 15
artifact armour_sm_elec
def_arch chain_mail
editor 2:items/armour/mail
Object
title of small electricity protection
item_level_art 15
type 16
resist_electricity 22
is_magical 1
value 11455
end
#
Allowed all
chance 10
t_style 4
difficulty 15
artifact armour_sm_poison
def_arch chain_mail
editor 2:items/armour/mail
Object
title of small poison protection
item_level_art 15
type 16
resist_poison 22
is_magical 1
value 11455
end
#
Allowed all
chance 10
t_style 5
difficulty 15
artifact armour_sm_acid
def_arch chain_mail
editor 2:items/armour/mail
Object
title of small acid protection
item_level_art 15
type 16
resist_acid 22
is_magical 1
value 11455
end
#
Allowed all
chance 5
t_style 1
difficulty 25
artifact armour_med_fire
def_arch chain_mail
editor 2:items/armour/mail
Object
title of medium fire protection
item_level_art 25
type 16
resist_fire 30
is_magical 1
value 12600
end
#
Allowed all
chance 5
t_style 2
difficulty 25
artifact armour_med_cold
def_arch chain_mail
editor 2:items/armour/mail
Object
title of medium cold protection
item_level_art 25
type 16
resist_cold 30
is_magical 1
value 12600
end
#
Allowed all
chance 5
t_style 3
difficulty 25
artifact armour_med_elec
def_arch chain_mail
editor 2:items/armour/mail
Object
title of medium electricity protection
item_level_art 25
type 16
resist_electricity 30
is_magical 1
value 12600
end
#
Allowed all
chance 5
t_style 4
difficulty 25
artifact armour_med_poison
def_arch chain_mail
editor 2:items/armour/mail
Object
title of medium poison protection
item_level_art 25
type 16
resist_poison 30
is_magical 1
value 12600
end
#
Allowed all
chance 5
t_style 5
difficulty 25
artifact armour_med_acid
def_arch chain_mail
editor 2:items/armour/mail
Object
title of medium acid protection
item_level_art 25
type 16
resist_acid 30
is_magical 1
value 12600
end
#
#
# Shoulders
#
Allowed all
chance 40
t_style 1
difficulty 2
artifact shoulder_min_fire
def_arch shoulder_leather
editor 2:items/armour/shoulders
Object
title of minor fire protection
item_level_art 2
type 142
resist_fire 4
is_magical 1
value 3500
end
#
Allowed all
chance 40
t_style 2
difficulty 2
artifact shoulder_min_cold
def_arch shoulder_leather
editor 2:items/armour/shoulders
Object
title of minor cold protection
item_level_art 2
type 142
resist_cold 4
is_magical 1
value 3500
end
#
Allowed all
chance 40
t_style 3
difficulty 2
artifact shoulder_min_elec
def_arch shoulder_leather
editor 2:items/armour/shoulders
Object
title of minor electricity protection
item_level_art 2
type 142
resist_electricity 4
is_magical 1
value 3500
end
#
Allowed all
chance 40
t_style 4
difficulty 2
artifact shoulder_min_poison
def_arch shoulder_leather
editor 2:items/armour/shoulders
Object
title of minor poison protection
item_level_art 2
type 142
resist_poison 4
is_magical 1
value 3500
end
#
Allowed all
chance 40
t_style 5
difficulty 2
artifact shoulder_min_acid
def_arch shoulder_leather
editor 2:items/armour/shoulders
Object
title of minor acid protection
item_level_art 2
type 142
resist_acid 4
is_magical 1
value 3500
end
#
Allowed all
chance 20
t_style 1
difficulty 7
artifact shoulder_less_fire
def_arch shoulder_leather
editor 2:items/armour/shoulders
Object
title of lesser fire protection
item_level_art 7
type 142
resist_fire 8
is_magical 1
value 3850
end
#
Allowed all
chance 20
t_style 2
difficulty 7
artifact shoulder_less_cold
def_arch shoulder_leather
editor 2:items/armour/shoulders
Object
title of lesser cold protection
item_level_art 7
type 142
resist_cold 8
is_magical 1
value 3850
end
#
Allowed all
chance 20
t_style 3
difficulty 7
artifact shoulder_less_elec
def_arch shoulder_leather
editor 2:items/armour/shoulders
Object
title of lesser electricity protection
item_level_art 7
type 142
resist_electricity 8
is_magical 1
value 3850
end
#
Allowed all
chance 20
t_style 4
difficulty 7
artifact shoulder_less_poison
def_arch shoulder_leather
editor 2:items/armour/shoulders
Object
title of lesser poison protection
item_level_art 7
type 142
resist_poison 8
is_magical 1
value 3850
end
#
Allowed all
chance 20
t_style 5
difficulty 7
artifact shoulder_less_acid
def_arch shoulder_leather
editor 2:items/armour/shoulders
Object
title of lesser acid protection
item_level_art 7
type 142
resist_acid 8
is_magical 1
value 3850
end
#
#
Allowed all
chance 10
t_style 1
difficulty 15
artifact shoulder_sm_fire
def_arch shoulder_leather
editor 2:items/armour/shoulders
Object
title of small fire protection
item_level_art 15
type 142
resist_fire 12
is_magical 1
value 4230
end
#
Allowed all
chance 10
t_style 2
difficulty 15
artifact shoulder_sm_cold
def_arch shoulder_leather
editor 2:items/armour/shoulders
Object
title of small cold protection
item_level_art 15
type 142
resist_cold 12
is_magical 1
value 4230
end
#
Allowed all
chance 10
t_style 3
difficulty 15
artifact shoulder_sm_elec
def_arch shoulder_leather
editor 2:items/armour/shoulders
Object
title of small electricity protection
item_level_art 15
type 142
resist_electricity 12
is_magical 1
value 4230
end
#
Allowed all
chance 10
t_style 4
difficulty 15
artifact shoulder_sm_poison
def_arch shoulder_leather
editor 2:items/armour/shoulders
Object
title of small poison protection
item_level_art 15
type 142
resist_poison 12
is_magical 1
value 4230
end
#
Allowed all
chance 10
t_style 5
difficulty 15
artifact shoulder_sm_acid
def_arch shoulder_leather
editor 2:items/armour/shoulders
Object
title of small acid protection
item_level_art 15
type 142
resist_acid 12
is_magical 1
value 4230
end
#
#
Allowed all
chance 5
t_style 1
difficulty 25
artifact shoulder_med_fire
def_arch shoulder_leather
editor 2:items/armour/shoulders
Object
title of medium fire protection
item_level_art 25
type 142
resist_fire 15
is_magical 1
value 4653
end
#
Allowed all
chance 5
t_style 2
difficulty 25
artifact shoulder_med_cold
def_arch shoulder_leather
editor 2:items/armour/shoulders
Object
title of medium cold protection
item_level_art 25
type 142
resist_cold 15
is_magical 1
value 4653
end
#
Allowed all
chance 5
t_style 3
difficulty 25
artifact shoulder_med_elec
def_arch shoulder_leather
editor 2:items/armour/shoulders
Object
title of medium electricity protection
item_level_art 25
type 142
resist_electricity 15
is_magical 1
value 4653
end
#
Allowed all
chance 5
t_style 4
difficulty 25
artifact shoulder_med_poison
def_arch shoulder_leather
editor 2:items/armour/shoulders
Object
title of medium poison protection
item_level_art 25
type 142
resist_poison 15
is_magical 1
value 4653
end
#
Allowed all
chance 5
t_style 5
difficulty 25
artifact shoulder_med_acid
def_arch shoulder_leather
editor 2:items/armour/shoulders
Object
title of medium acid protection
item_level_art 25
type 142
resist_acid 15
is_magical 1
value 4653
end
#
#
#LEGS
#
#
Allowed legs_chain
chance 40
t_style 1
difficulty 2
artifact legs_chain_min_fire
def_arch legs_chain
editor 2:items/armour/legs
Object
title of minor fire protection
face legs_chain_fire.101
item_level_art 2
is_animated 1
anim_speed 2
speed 1
animation legs_chain_fire
resist_fire 5
is_magical 1
value 3500
end
#
Allowed legs_chain
chance 40
t_style 2
difficulty 2
artifact legs_chain_min_cold
def_arch legs_chain
editor 2:items/armour/legs
Object
title of minor cold protection
face legs_chain_ice.101
item_level_art 2
is_animated 1
anim_speed 2
speed 1
animation legs_chain_ice
resist_cold 5
is_magical 1
value 3500
end
#
Allowed legs_chain
chance 40
t_style 3
difficulty 2
artifact legs_chain_min_elec
def_arch legs_chain
editor 2:items/armour/legs
Object
title of minor electricity protection
face legs_chain_elec.101
item_level_art 2
is_animated 1
anim_speed 2
speed 1
animation legs_chain_elec
resist_electricity 5
is_magical 1
value 3500
end
#
Allowed legs_chain
chance 40
t_style 4
difficulty 2
artifact legs_chain_min_poison
def_arch legs_chain
editor 2:items/armour/legs
Object
title of minor poison protection
face legs_chain_poison.101
item_level_art 2
is_animated 1
anim_speed 2
speed 1
animation legs_chain_poison
resist_poison 5
is_magical 1
value 3500
end
#
Allowed legs_chain
chance 40
t_style 5
difficulty 2
artifact legs_chain_min_acid
def_arch legs_chain
editor 2:items/armour/legs
Object
title of minor acid protection
face legs_chain_acid.101
item_level_art 2
is_animated 1
anim_speed 2
speed 1
animation legs_chain_acid
resist_acid 5
is_magical 1
value 3500
end
#
Allowed legs_chain
chance 20
t_style 1
difficulty 7
artifact legs_chain_less_fire
def_arch legs_chain
editor 2:items/armour/legs
Object
title of lesser fire protection
face legs_chain_fire.101
item_level_art 7
is_animated 1
anim_speed 2
speed 1
animation legs_chain_fire
resist_fire 10
is_magical 1
value 3750
end
#
Allowed legs_chain
chance 20
t_style 2
difficulty 7
artifact legs_chain_less_cold
def_arch legs_chain
editor 2:items/armour/legs
Object
title of lesser cold protection
face legs_chain_ice.101
item_level_art 7
is_animated 1
anim_speed 2
speed 1
animation legs_chain_ice
resist_cold 10
is_magical 1
value 3850
end
#
Allowed legs_chain
chance 20
t_style 3
difficulty 7
artifact legs_chain_less_elec
def_arch legs_chain
editor 2:items/armour/legs
Object
title of lesser electricity protection
face legs_chain_elec.101
item_level_art 7
is_animated 1
anim_speed 2
speed 1
animation legs_chain_elec
resist_electricity 10
is_magical 1
value 3850
end
#
Allowed legs_chain
chance 20
t_style 4
difficulty 7
artifact legs_chain_less_poison
def_arch legs_chain
editor 2:items/armour/legs
Object
title of lesser poison protection
face legs_chain_poison.101
item_level_art 7
is_animated 1
anim_speed 2
speed 1
animation legs_chain_poison
resist_poison 10
is_magical 1
value 3850
end
#
Allowed legs_chain
chance 20
t_style 5
difficulty 7
artifact legs_chain_less_acid
def_arch legs_chain
editor 2:items/armour/legs
Object
title of lesser acid protection
face legs_chain_acid.101
item_level_art 7
is_animated 1
anim_speed 2
speed 1
animation legs_chain_acid
resist_acid 10
is_magical 1
value 3850
end
#
Allowed legs_chain
chance 10
t_style 1
difficulty 15
artifact legs_chain_sm_fire
def_arch legs_chain
editor 2:items/armour/legs
Object
title of small fire protection
face legs_chain_fire.101
item_level_art 15
is_animated 1
anim_speed 2
speed 1
animation legs_chain_fire
resist_fire 15
is_magical 1
value 4230
end
#
Allowed legs_chain
chance 10
t_style 2
difficulty 15
artifact legs_chain_sm_cold
def_arch legs_chain
editor 2:items/armour/legs
Object
title of small cold protection
face legs_chain_ice.101
item_level_art 15
is_animated 1
anim_speed 2
speed 1
animation legs_chain_ice
resist_cold 15
is_magical 1
value 4230
end
#
Allowed legs_chain
chance 10
t_style 3
difficulty 15
artifact legs_chain_sm_elec
def_arch legs_chain
editor 2:items/armour/legs
Object
title of small electricity protection
face legs_chain_elec.101
item_level_art 15
is_animated 1
anim_speed 2
speed 1
animation legs_chain_elec
resist_electricity 15
is_magical 1
value 4230
end
#
Allowed legs_chain
chance 10
t_style 4
difficulty 15
artifact legs_chain_sm_poison
def_arch legs_chain
editor 2:items/armour/legs
Object
title of small poison protection
face legs_chain_poison.101
item_level_art 15
is_animated 1
anim_speed 2
speed 1
animation legs_chain_poison
resist_poison 15
is_magical 1
value 4230
end
#
Allowed legs_chain
chance 10
t_style 5
difficulty 15
artifact legs_chain_sm_acid
def_arch legs_chain
editor 2:items/armour/legs
Object
title of small acid protection
face legs_chain_acid.101
item_level_art 15
is_animated 1
anim_speed 2
speed 1
animation legs_chain_acid
resist_acid 15
is_magical 1
value 4230
end
#
Allowed legs_chain
chance 5
t_style 1
difficulty 25
artifact legs_chain_med_fire
def_arch legs_chain
editor 2:items/armour/legs
Object
title of medium fire protection
face legs_chain_fire.101
item_level_art 25
is_animated 1
anim_speed 2
speed 1
animation legs_chain_fire
resist_fire 20
is_magical 1
value 4653
end
#
Allowed legs_chain
chance 5
t_style 2
difficulty 25
artifact legs_chain_med_cold
def_arch legs_chain
editor 2:items/armour/legs
Object
title of medium cold protection
face legs_chain_ice.101
item_level_art 25
is_animated 1
anim_speed 2
speed 1
animation legs_chain_ice
resist_cold 20
is_magical 1
value 4653
end
#
Allowed legs_chain
chance 5
t_style 3
difficulty 25
artifact legs_chain_med_elec
def_arch legs_chain
editor 2:items/armour/legs
Object
title of medium electricity protection
face legs_chain_elec.101
item_level_art 25
is_animated 1
anim_speed 2
speed 1
animation legs_chain_elec
resist_electricity 20
is_magical 1
value 4653
end
#
Allowed legs_chain
chance 5
t_style 4
difficulty 25
artifact legs_chain_med_poison
def_arch legs_chain
editor 2:items/armour/legs
Object
title of medium poison protection
face legs_chain_poison.101
item_level_art 25
is_animated 1
anim_speed 2
speed 1
animation legs_chain_poison
resist_poison 20
is_magical 1
value 4653
end
#
Allowed legs_chain
chance 5
t_style 5
difficulty 25
artifact legs_chain_med_acid
def_arch legs_chain
editor 2:items/armour/legs
Object
title of medium acid protection
face legs_chain_acid.101
item_level_art 25
is_animated 1
anim_speed 2
speed 1
animation legs_chain_acid
resist_acid 20
is_magical 1
value 4653
end
#
Allowed legs_plate
chance 40
t_style 1
difficulty 2
artifact legs_plate_min_fire
def_arch legs_plate
editor 2:items/armour/legs
Object
title of minor fire protection
face legs_plate_fire.101
item_level_art 2
is_animated 1
anim_speed 2
speed 1
animation legs_plate_fire
resist_fire 5
is_magical 1
value 3500
end
#
Allowed legs_plate
chance 40
t_style 2
difficulty 2
artifact legs_plate_min_cold
def_arch legs_plate
editor 2:items/armour/legs
Object
title of minor cold protection
face legs_plate_ice.101
item_level_art 2
is_animated 1
anim_speed 2
speed 1
animation legs_plate_ice
resist_cold 5
is_magical 1
value 3500
end
#
Allowed legs_plate
chance 40
t_style 3
difficulty 2
artifact legs_plate_min_elec
def_arch legs_plate
editor 2:items/armour/legs
Object
title of minor electricity protection
face legs_plate_elec.101
item_level_art 2
is_animated 1
anim_speed 2
speed 1
animation legs_plate_elec
resist_electricity 5
is_magical 1
value 3500
end
#
Allowed legs_plate
chance 40
t_style 4
difficulty 2
artifact legs_plate_min_poison
def_arch legs_plate
editor 2:items/armour/legs
Object
title of minor poison protection
face legs_plate_poison.101
item_level_art 2
is_animated 1
anim_speed 2
speed 1
animation legs_plate_poison
resist_poison 5
is_magical 1
value 3500
end
#
Allowed legs_plate
chance 40
t_style 5
difficulty 2
artifact legs_plate_min_acid
def_arch legs_plate
editor 2:items/armour/legs
Object
title of minor acid protection
face legs_plate_acid.101
item_level_art 2
is_animated 1
anim_speed 2
speed 1
animation legs_plate_acid
resist_acid 5
is_magical 1
value 3500
end
#
Allowed legs_plate
chance 20
t_style 1
difficulty 7
artifact legs_plate_less_fire
def_arch legs_plate
editor 2:items/armour/legs
Object
title of lesser fire protection
face legs_plate_fire.101
item_level_art 7
is_animated 1
anim_speed 2
speed 1
animation legs_plate_fire
resist_fire 10
is_magical 1
value 3750
end
#
Allowed legs_plate
chance 20
t_style 2
difficulty 7
artifact legs_plate_less_cold
def_arch legs_plate
editor 2:items/armour/legs
Object
title of lesser cold protection
face legs_plate_ice.101
item_level_art 7
is_animated 1
anim_speed 2
speed 1
animation legs_plate_ice
resist_cold 10
is_magical 1
value 3850
end
#
Allowed legs_plate
chance 20
t_style 3
difficulty 7
artifact legs_plate_less_elec
def_arch legs_plate
editor 2:items/armour/legs
Object
title of lesser electricity protection
face legs_plate_elec.101
item_level_art 7
is_animated 1
anim_speed 2
speed 1
animation legs_plate_elec
resist_electricity 10
is_magical 1
value 3850
end
#
Allowed legs_plate
chance 20
t_style 4
difficulty 7
artifact legs_plate_less_poison
def_arch legs_plate
editor 2:items/armour/legs
Object
title of lesser poison protection
face legs_plate_poison.101
item_level_art 7
is_animated 1
anim_speed 2
speed 1
animation legs_plate_poison
resist_poison 10
is_magical 1
value 3850
end
#
Allowed legs_plate
chance 20
t_style 5
difficulty 7
artifact legs_plate_less_acid
def_arch legs_plate
editor 2:items/armour/legs
Object
title of lesser acid protection
face legs_plate_acid.101
item_level_art 7
is_animated 1
anim_speed 2
speed 1
animation legs_plate_acid
resist_acid 10
is_magical 1
value 3850
end
#
Allowed legs_plate
chance 10
t_style 1
difficulty 15
artifact legs_plate_sm_fire
def_arch legs_plate
editor 2:items/armour/legs
Object
title of small fire protection
face legs_plate_fire.101
item_level_art 15
is_animated 1
anim_speed 2
speed 1
animation legs_plate_fire
resist_fire 15
is_magical 1
value 4230
end
#
Allowed legs_plate
chance 10
t_style 2
difficulty 15
artifact legs_plate_sm_cold
def_arch legs_plate
editor 2:items/armour/legs
Object
title of small cold protection
face legs_plate_ice.101
item_level_art 15
is_animated 1
anim_speed 2
speed 1
animation legs_plate_ice
resist_cold 15
is_magical 1
value 4230
end
#
Allowed legs_plate
chance 10
t_style 3
difficulty 15
artifact legs_plate_sm_elec
def_arch legs_plate
editor 2:items/armour/legs
Object
title of small electricity protection
face legs_plate_elec.101
item_level_art 15
is_animated 1
anim_speed 2
speed 1
animation legs_plate_elec
resist_electricity 15
is_magical 1
value 4230
end
#
Allowed legs_plate
chance 10
t_style 4
difficulty 15
artifact legs_plate_sm_poison
def_arch legs_plate
editor 2:items/armour/legs
Object
title of small poison protection
face legs_plate_poison.101
item_level_art 15
is_animated 1
anim_speed 2
speed 1
animation legs_plate_poison
resist_poison 15
is_magical 1
value 4230
end
#
Allowed legs_plate
chance 10
t_style 5
difficulty 15
artifact legs_plate_sm_acid
def_arch legs_plate
editor 2:items/armour/legs
Object
title of small acid protection
face legs_plate_acid.101
item_level_art 15
is_animated 1
anim_speed 2
speed 1
animation legs_plate_acid
resist_acid 15
is_magical 1
value 4230
end
#
Allowed legs_plate
chance 5
t_style 1
difficulty 25
artifact legs_plate_med_fire
def_arch legs_plate
editor 2:items/armour/legs
Object
title of medium fire protection
face legs_plate_fire.101
item_level_art 25
is_animated 1
anim_speed 2
speed 1
animation legs_plate_fire
resist_fire 20
is_magical 1
value 4653
end
#
Allowed legs_plate
chance 5
t_style 2
difficulty 25
artifact legs_plate_med_cold
def_arch legs_plate
editor 2:items/armour/legs
Object
title of medium cold protection
face legs_plate_ice.101
item_level_art 25
is_animated 1
anim_speed 2
speed 1
animation legs_plate_ice
resist_cold 20
is_magical 1
value 4653
end
#
Allowed legs_plate
chance 5
t_style 3
difficulty 25
artifact legs_plate_med_elec
def_arch legs_plate
editor 2:items/armour/legs
Object
title of medium electricity protection
face legs_plate_elec.101
item_level_art 25
is_animated 1
anim_speed 2
speed 1
animation legs_plate_elec
resist_electricity 20
is_magical 1
value 4653
end
#
Allowed legs_plate
chance 5
t_style 4
difficulty 25
artifact legs_plate_med_poison
def_arch legs_plate
editor 2:items/armour/legs
Object
title of medium poison protection
face legs_plate_poison.101
item_level_art 25
is_animated 1
anim_speed 2
speed 1
animation legs_plate_poison
resist_poison 20
is_magical 1
value 4653
end
#
Allowed legs_plate
chance 5
t_style 5
difficulty 25
artifact legs_plate_med_acid
def_arch legs_plate
editor 2:items/armour/legs
Object
title of medium acid protection
face legs_plate_acid.101
item_level_art 25
is_animated 1
anim_speed 2
speed 1
animation legs_plate_acid
resist_acid 20
is_magical 1
value 4653
end
#
Allowed pants
chance 40
t_style 1
difficulty 2
artifact legs_pants_min_fire
def_arch pants
editor 2:items/armour/legs
Object
title of minor fire protection
face pants_fire.101
item_level_art 2
is_animated 1
anim_speed 2
speed 1
animation pants_fire
resist_fire 5
is_magical 1
value 3500
end
#
Allowed pants
chance 40
t_style 2
difficulty 2
artifact legs_pants_min_cold
def_arch pants
editor 2:items/armour/legs
Object
title of minor cold protection
face pants_ice.101
item_level_art 2
is_animated 1
anim_speed 2
speed 1
animation pants_ice
resist_cold 5
is_magical 1
value 3500
end
#
Allowed pants
chance 40
t_style 3
difficulty 2
artifact legs_pants_min_elec
def_arch pants
editor 2:items/armour/legs
Object
title of minor electricity protection
face pants_elec.101
item_level_art 2
is_animated 1
anim_speed 2
speed 1
animation pants_elec
resist_electricity 5
is_magical 1
value 3500
end
#
Allowed pants
chance 40
t_style 4
difficulty 2
artifact legs_pants_min_poison
def_arch pants
editor 2:items/armour/legs
Object
title of minor poison protection
face pants_poison.101
item_level_art 2
is_animated 1
anim_speed 2
speed 1
animation pants_poison
resist_poison 5
is_magical 1
value 3500
end
#
Allowed pants
chance 40
t_style 5
difficulty 2
artifact legs_pants_min_acid
def_arch pants
editor 2:items/armour/legs
Object
title of minor acid protection
face pants_acid.101
item_level_art 2
is_animated 1
anim_speed 2
speed 1
animation pants_acid
resist_acid 5
is_magical 1
value 3500
end
#
Allowed pants
chance 20
t_style 1
difficulty 7
artifact legs_pants_less_fire
def_arch pants
editor 2:items/armour/legs
Object
title of lesser fire protection
face pants_fire.101
item_level_art 7
is_animated 1
anim_speed 2
speed 1
animation pants_fire
resist_fire 10
is_magical 1
value 3750
end
#
Allowed pants
chance 20
t_style 2
difficulty 7
artifact legs_pants_less_cold
def_arch pants
editor 2:items/armour/legs
Object
title of lesser cold protection
face pants_ice.101
item_level_art 7
is_animated 1
anim_speed 2
speed 1
animation pants_ice
resist_cold 10
is_magical 1
value 3850
end
#
Allowed pants
chance 20
t_style 3
difficulty 7
artifact legs_pants_less_elec
def_arch pants
editor 2:items/armour/legs
Object
title of lesser electricity protection
face pants_elec.101
item_level_art 7
is_animated 1
anim_speed 2
speed 1
animation pants_elec
resist_electricity 10
is_magical 1
value 3850
end
#
Allowed pants
chance 20
t_style 4
difficulty 7
artifact legs_pants_less_poison
def_arch pants
editor 2:items/armour/legs
Object
title of lesser poison protection
face pants_poison.101
item_level_art 7
is_animated 1
anim_speed 2
speed 1
animation pants_poison
resist_poison 10
is_magical 1
value 3850
end
#
Allowed pants
chance 20
t_style 5
difficulty 7
artifact legs_pants_less_acid
def_arch pants
editor 2:items/armour/legs
Object
title of lesser acid protection
face pants_acid.101
item_level_art 7
is_animated 1
anim_speed 2
speed 1
animation pants_acid
resist_acid 10
is_magical 1
value 3850
end
#
Allowed pants
chance 10
t_style 1
difficulty 15
artifact legs_pants_sm_fire
def_arch pants
editor 2:items/armour/legs
Object
title of small fire protection
face pants_fire.101
item_level_art 15
is_animated 1
anim_speed 2
speed 1
animation pants_fire
resist_fire 15
is_magical 1
value 4230
end
#
Allowed pants
chance 10
t_style 2
difficulty 15
artifact legs_pants_sm_cold
def_arch pants
editor 2:items/armour/legs
Object
title of small cold protection
face pants_ice.101
item_level_art 15
is_animated 1
anim_speed 2
speed 1
animation pants_ice
resist_cold 15
is_magical 1
value 4230
end
#
Allowed pants
chance 10
t_style 3
difficulty 15
artifact legs_pants_sm_elec
def_arch pants
editor 2:items/armour/legs
Object
title of small electricity protection
face pants_elec.101
item_level_art 15
is_animated 1
anim_speed 2
speed 1
animation pants_elec
resist_electricity 15
is_magical 1
value 4230
end
#
Allowed pants
chance 10
t_style 4
difficulty 15
artifact legs_pants_sm_poison
def_arch pants
editor 2:items/armour/legs
Object
title of small poison protection
face pants_poison.101
item_level_art 15
is_animated 1
anim_speed 2
speed 1
animation pants_poison
resist_poison 15
is_magical 1
value 4230
end
#
Allowed pants
chance 10
t_style 5
difficulty 15
artifact legs_pants_sm_acid
def_arch pants
editor 2:items/armour/legs
Object
title of small acid protection
face pants_acid.101
item_level_art 15
is_animated 1
anim_speed 2
speed 1
animation pants_acid
resist_acid 15
is_magical 1
value 4230
end
#
Allowed pants
chance 5
t_style 1
difficulty 25
artifact legs_pants_med_fire
def_arch pants
editor 2:items/armour/legs
Object
title of medium fire protection
face pants_fire.101
item_level_art 25
is_animated 1
anim_speed 2
speed 1
animation pants_fire
resist_fire 20
is_magical 1
value 4653
end
#
Allowed pants
chance 5
t_style 2
difficulty 25
artifact legs_pants_med_cold
def_arch pants
editor 2:items/armour/legs
Object
title of medium cold protection
face pants_ice.101
item_level_art 25
is_animated 1
anim_speed 2
speed 1
animation pants_ice
resist_cold 20
is_magical 1
value 4653
end
#
Allowed pants
chance 5
t_style 3
difficulty 25
artifact legs_pants_med_elec
def_arch pants
editor 2:items/armour/legs
Object
title of medium electricity protection
face pants_elec.101
item_level_art 25
is_animated 1
anim_speed 2
speed 1
animation pants_elec
resist_electricity 20
is_magical 1
value 4653
end
#
Allowed pants
chance 5
t_style 4
difficulty 25
artifact legs_pants_med_poison
def_arch pants
editor 2:items/armour/legs
Object
title of medium poison protection
face pants_poison.101
item_level_art 25
is_animated 1
anim_speed 2
speed 1
animation pants_poison
resist_poison 20
is_magical 1
value 4653
end
#
Allowed pants
chance 5
t_style 5
difficulty 25
artifact legs_pants_med_acid
def_arch pants
editor 2:items/armour/legs
Object
title of medium acid protection
face pants_acid.101
item_level_art 25
is_animated 1
anim_speed 2
speed 1
animation pants_acid
resist_acid 20
is_magical 1
value 4653
end
#
Allowed legs_leather
chance 40
t_style 1
difficulty 2
artifact legs_leather_min_fire
def_arch legs_leather
editor 2:items/armour/legs
Object
title of minor fire protection
face legs_leather_fire.101
item_level_art 2
is_animated 1
anim_speed 2
speed 1
animation legs_leather_fire
resist_fire 5
is_magical 1
value 3500
end
#
Allowed legs_leather
chance 40
t_style 2
difficulty 2
artifact legs_leather_min_cold
def_arch legs_leather
editor 2:items/armour/legs
Object
title of minor cold protection
face legs_leather_ice.101
item_level_art 2
is_animated 1
anim_speed 2
speed 1
animation legs_leather_ice
resist_cold 5
is_magical 1
value 3500
end
#
Allowed legs_leather
chance 40
t_style 3
difficulty 2
artifact legs_leather_min_elec
def_arch legs_leather
editor 2:items/armour/legs
Object
title of minor electricity protection
face legs_leather_elec.101
item_level_art 2
is_animated 1
anim_speed 2
speed 1
animation legs_leather_elec
resist_electricity 5
is_magical 1
value 3500
end
#
Allowed legs_leather
chance 40
t_style 4
difficulty 2
artifact legs_leather_min_poison
def_arch legs_leather
editor 2:items/armour/legs
Object
title of minor poison protection
face legs_leather_poison.101
item_level_art 2
is_animated 1
anim_speed 2
speed 1
animation legs_leather_poison
resist_poison 5
is_magical 1
value 3500
end
#
Allowed legs_leather
chance 40
t_style 5
difficulty 2
artifact legs_leather_min_acid
def_arch legs_leather
editor 2:items/armour/legs
Object
title of minor acid protection
face legs_leather_acid.101
item_level_art 2
is_animated 1
anim_speed 2
speed 1
animation legs_leather_acid
resist_acid 5
is_magical 1
value 3500
end
#
Allowed legs_leather
chance 20
t_style 1
difficulty 7
artifact legs_leather_less_fire
def_arch legs_leather
editor 2:items/armour/legs
Object
title of lesser fire protection
face legs_leather_fire.101
item_level_art 7
is_animated 1
anim_speed 2
speed 1
animation legs_leather_fire
resist_fire 10
is_magical 1
value 3750
end
#
Allowed legs_leather
chance 20
t_style 2
difficulty 7
artifact legs_leather_less_cold
def_arch legs_leather
editor 2:items/armour/legs
Object
title of lesser cold protection
face legs_leather_ice.101
item_level_art 7
is_animated 1
anim_speed 2
speed 1
animation legs_leather_ice
resist_cold 10
is_magical 1
value 3850
end
#
Allowed legs_leather
chance 20
t_style 3
difficulty 7
artifact legs_leather_less_elec
def_arch legs_leather
editor 2:items/armour/legs
Object
title of lesser electricity protection
face legs_leather_elec.101
item_level_art 7
is_animated 1
anim_speed 2
speed 1
animation legs_leather_elec
resist_electricity 10
is_magical 1
value 3850
end
#
Allowed legs_leather
chance 20
t_style 4
difficulty 7
artifact legs_leather_less_poison
def_arch legs_leather
editor 2:items/armour/legs
Object
title of lesser poison protection
face legs_leather_poison.101
item_level_art 7
is_animated 1
anim_speed 2
speed 1
animation legs_leather_poison
resist_poison 10
is_magical 1
value 3850
end
#
Allowed legs_leather
chance 20
t_style 5
difficulty 7
artifact legs_leather_less_acid
def_arch legs_leather
editor 2:items/armour/legs
Object
title of lesser acid protection
face legs_leather_acid.101
item_level_art 7
is_animated 1
anim_speed 2
speed 1
animation legs_leather_acid
resist_acid 10
is_magical 1
value 3850
end
#
Allowed legs_leather
chance 10
t_style 1
difficulty 15
artifact legs_leather_sm_fire
def_arch legs_leather
editor 2:items/armour/legs
Object
title of small fire protection
face legs_leather_fire.101
item_level_art 15
is_animated 1
anim_speed 2
speed 1
animation legs_leather_fire
resist_fire 15
is_magical 1
value 4230
end
#
Allowed legs_leather
chance 10
t_style 2
difficulty 15
artifact legs_leather_sm_cold
def_arch legs_leather
editor 2:items/armour/legs
Object
title of small cold protection
face legs_leather_ice.101
item_level_art 15
is_animated 1
anim_speed 2
speed 1
animation legs_leather_ice
resist_cold 15
is_magical 1
value 4230
end
#
Allowed legs_leather
chance 10
t_style 3
difficulty 15
artifact legs_leather_sm_elec
def_arch legs_leather
editor 2:items/armour/legs
Object
title of small electricity protection
face legs_leather_elec.101
item_level_art 15
is_animated 1
anim_speed 2
speed 1
animation legs_leather_elec
resist_electricity 15
is_magical 1
value 4230
end
#
Allowed legs_leather
chance 10
t_style 4
difficulty 15
artifact legs_leather_sm_poison
def_arch legs_leather
editor 2:items/armour/legs
Object
title of small poison protection
face legs_leather_poison.101
item_level_art 15
is_animated 1
anim_speed 2
speed 1
animation legs_leather_poison
resist_poison 15
is_magical 1
value 4230
end
#
Allowed legs_leather
chance 10
t_style 5
difficulty 15
artifact legs_leather_sm_acid
def_arch legs_leather
editor 2:items/armour/legs
Object
title of small acid protection
face legs_leather_acid.101
item_level_art 15
is_animated 1
anim_speed 2
speed 1
animation legs_leather_acid
resist_acid 15
is_magical 1
value 4230
end
#
Allowed legs_leather
chance 5
t_style 1
difficulty 25
artifact legs_leather_med_fire
def_arch legs_leather
editor 2:items/armour/legs
Object
title of medium fire protection
face legs_leather_fire.101
item_level_art 25
is_animated 1
anim_speed 2
speed 1
animation legs_leather_fire
resist_fire 20
is_magical 1
value 4653
end
#
Allowed legs_leather
chance 5
t_style 2
difficulty 25
artifact legs_leather_med_cold
def_arch legs_leather
editor 2:items/armour/legs
Object
title of medium cold protection
face legs_leather_ice.101
item_level_art 25
is_animated 1
anim_speed 2
speed 1
animation legs_leather_ice
resist_cold 20
is_magical 1
value 4653
end
#
Allowed legs_leather
chance 5
t_style 3
difficulty 25
artifact legs_leather_med_elec
def_arch legs_leather
editor 2:items/armour/legs
Object
title of medium electricity protection
face legs_leather_elec.101
item_level_art 25
is_animated 1
anim_speed 2
speed 1
animation legs_leather_elec
resist_electricity 20
is_magical 1
value 4653
end
#
Allowed legs_leather
chance 5
t_style 4
difficulty 25
artifact legs_leather_med_poison
def_arch legs_leather
editor 2:items/armour/legs
Object
title of medium poison protection
face legs_leather_poison.101
item_level_art 25
is_animated 1
anim_speed 2
speed 1
animation legs_leather_poison
resist_poison 20
is_magical 1
value 4653
end
#
Allowed legs_leather
chance 5
t_style 5
difficulty 25
artifact legs_leather_med_acid
def_arch legs_leather
editor 2:items/armour/legs
Object
title of medium acid protection
face legs_leather_acid.101
item_level_art 25
is_animated 1
anim_speed 2
speed 1
animation legs_leather_acid
resist_acid 20
is_magical 1
value 4653
end
#
#
# Shields
#
Allowed all
chance 80
artifact shield_mass
def_arch shield
editor 2:items/armour/shield
Object
title of mass
type 33
is_magical 1
value 5
cursed_perm 1
cursed 1
weight 25000
end
#
Allowed all
chance 40
t_style 1
difficulty 2
artifact shield_min_fire
def_arch shield
editor 2:items/armour/shield
Object
title of minor fire protection
item_level_art 2
type 33
is_magical 1
resist_fire 6
value 2400
end
#
Allowed all
chance 40
t_style 2
difficulty 2
artifact shield_min_cold
def_arch shield
editor 2:items/armour/shield
Object
title of minor cold protection
item_level_art 2
type 33
is_magical 1
resist_cold 6
value 2400
end
#
Allowed all
chance 40
t_style 3
difficulty 2
artifact shield_min_elec
def_arch shield
editor 2:items/armour/shield
Object
title of minor electricity protection
item_level_art 2
type 33
is_magical 1
resist_electricity 6
value 2400
end
#
Allowed all
chance 40
t_style 4
difficulty 2
artifact shield_min_poison
def_arch shield
editor 2:items/armour/shield
Object
title of minor poison protection
item_level_art 2
type 33
is_magical 1
resist_poison 6
value 2400
end
#
Allowed all
chance 40
t_style 5
difficulty 2
artifact shield_min_acid
def_arch shield
editor 2:items/armour/shield
Object
title of minor acid protection
item_level_art 2
type 33
is_magical 1
resist_acid 6
value 2400
end
#
Allowed all
chance 20
t_style 1
difficulty 7
artifact shield_less_fire
def_arch shield
editor 2:items/armour/shield
Object
title of lesser fire protection
item_level_art 7
type 33
is_magical 1
resist_fire 12
value 2640
end
#
Allowed all
chance 20
t_style 2
difficulty 7
artifact shield_less_cold
def_arch shield
editor 2:items/armour/shield
Object
title of lesser cold protection
item_level_art 7
type 33
is_magical 1
resist_cold 12
value 2640
end
#
Allowed all
chance 20
t_style 3
difficulty 7
artifact shield_less_elec
def_arch shield
editor 2:items/armour/shield
Object
title of lesser electricity protection
item_level_art 7
type 33
is_magical 1
resist_electricity 12
value 2640
end
#
Allowed all
chance 20
t_style 4
difficulty 7
artifact shield_less_poison
def_arch shield
editor 2:items/armour/shield
Object
title of lesser poison protection
item_level_art 7
type 33
is_magical 1
resist_poison 12
value 2640
end
#
Allowed all
chance 20
t_style 5
difficulty 7
artifact shield_less_acid
def_arch shield
editor 2:items/armour/shield
Object
title of lesser acid protection
item_level_art 7
type 33
is_magical 1
resist_acid 12
value 2640
end
#
Allowed all
chance 10
t_style 1
difficulty 15
artifact shield_sm_fire
def_arch shield
editor 2:items/armour/shield
Object
title of small fire protection
item_level_art 15
type 33
is_magical 1
resist_fire 18
value 2904
end
#
Allowed all
chance 10
t_style 2
difficulty 15
artifact shield_sm_cold
def_arch shield
editor 2:items/armour/shield
Object
title of small cold protection
item_level_art 15
type 33
is_magical 1
resist_cold 18
value 2904
end
#
Allowed all
chance 10
t_style 3
difficulty 15
artifact shield_sm_elec
def_arch shield
editor 2:items/armour/shield
Object
title of small electricity protection
item_level_art 15
type 33
is_magical 1
resist_electricity 18
value 2904
end
#
Allowed all
chance 10
t_style 4
difficulty 15
artifact shield_sm_poison
def_arch shield
editor 2:items/armour/shield
Object
title of small poison protection
item_level_art 15
type 33
is_magical 1
resist_poison 18
value 2904
end
#
Allowed all
chance 10
t_style 5
difficulty 15
artifact shield_sm_acid
def_arch shield
editor 2:items/armour/shield
Object
title of small acid protection
item_level_art 15
type 33
is_magical 1
resist_acid 18
value 2904
end
#
Allowed all
chance 5
t_style 1
difficulty 25
artifact shield_med_fire
def_arch shield
editor 2:items/armour/shield
Object
title of medium fire protection
item_level_art 25
type 33
is_magical 1
resist_fire 25
value 3194
end
#
Allowed all
chance 5
t_style 2
difficulty 25
artifact shield_med_cold
def_arch shield
editor 2:items/armour/shield
Object
title of medium cold protection
item_level_art 25
type 33
is_magical 1
resist_cold 25
value 3194
end
#
Allowed all
chance 5
t_style 3
difficulty 25
artifact shield_med_elec
def_arch shield
editor 2:items/armour/shield
Object
title of medium electricity protection
item_level_art 25
type 33
is_magical 1
resist_electricity 25
value 3194
end
#
Allowed all
chance 5
t_style 4
difficulty 25
artifact shield_med_poison
def_arch shield
editor 2:items/armour/shield
Object
title of medium poison protection
item_level_art 25
type 33
is_magical 1
resist_poison 25
value 3194
end
#
Allowed all
chance 5
t_style 5
difficulty 25
artifact shield_med_acid
def_arch shield
editor 2:items/armour/shield
Object
title of medium acid protection
item_level_art 25
type 33
is_magical 1
resist_acid 25
value 3194
end
#
#
# girdles
#
#
Allowed all
chance 40
artifact girdle_minor_hp
def_arch girdle
editor 2:items/armour/girdle
Object
title of minor health
type 113
item_level_art 3
maxhp 10
is_magical 1
value 8500
end
#
Allowed all
chance 30
difficulty 20
artifact girdle_medium_hp
def_arch girdle
editor 2:items/armour/girdle
Object
title of medium health
item_level_art 7
type 113
maxhp 20
is_magical 1
value 13500
end
#
#
Allowed all
chance 20
difficulty 30
artifact girdle_hp
def_arch girdle
editor 2:items/armour/girdle
Object
title of health
type 113
item_level_art 12
maxhp 30
is_magical 1
value 30500
end
#
#
Allowed all
chance 15
difficulty 50
artifact girdle_major_hp
def_arch girdle
editor 2:items/armour/girdle
Object
title of major health
type 113
item_level_art 20
maxhp 50
is_magical 1
value 55500
end
#
#
Allowed all
chance 10
difficulty 75
artifact girdle_great_hp
def_arch girdle
editor 2:items/armour/girdle
Object
title of great health
type 113
item_level_art 30
maxhp 75
is_magical 1
value 85500
end
#
Allowed !girdle_cloth
chance 40
difficulty 2
artifact girdle_min_str
def_arch girdle
editor 2:items/armour/girdle
Object
title of minor strength
str 1
item_level_art 2
face girdle3.101
type 113
is_magical 1
value 5000
end
#
Allowed !girdle_cloth
chance 40
difficulty 2
artifact girdle_min_dex
def_arch girdle
editor 2:items/armour/girdle
Object
title of minor dexterity
dex 1
face girdle3.101
item_level_art 2
type 113
is_magical 1
value 5000
end
#
Allowed !girdle_cloth
chance 40
difficulty 2
artifact girdle_min_con
def_arch girdle
editor 2:items/armour/girdle
Object
title of minor constitution
face girdle3.101
con 1
item_level_art 2
type 113
is_magical 1
value 5000
end
#
Allowed girdle_cloth
chance 40
difficulty 2
artifact girdle_min_int
def_arch girdle_cloth
editor 2:items/armour/girdle
Object
title of minor intelligence
int 1
item_level_art 2
face a_girdle2.101
type 113
is_magical 1
value 5000
end
#
Allowed girdle_cloth
chance 40
difficulty 2
artifact girdle_min_pow
def_arch girdle_cloth
editor 2:items/armour/girdle
Object
title of minor power
pow 1
item_level_art 2
face a_girdle2.101
type 113
is_magical 1
value 5000
end
#
Allowed all
chance 40
difficulty 2
artifact girdle_min_wis
def_arch girdle
editor 2:items/armour/girdle
Object
title of minor wisdom
wis 1
item_level_art 2
face a_girdle2.101
type 113
is_magical 1
value 5000
end
#
Allowed all
chance 40
difficulty 2
artifact girdle_min_cha
def_arch girdle
editor 2:items/armour/girdle
Object
title of minor charisma
cha 1
item_level_art 2
face a_girdle2.101
type 113
is_magical 1
value 5000
end
#
Allowed !girdle_cloth
chance 20
difficulty 7
artifact girdle_less_str
def_arch girdle
editor 2:items/armour/girdle
Object
title of lesser strength
str 2
item_level_art 7
face girdle3.101
type 113
is_magical 1
value 5500
end
#
Allowed !girdle_cloth
chance 20
difficulty 7
artifact girdle_less_dex
def_arch girdle
editor 2:items/armour/girdle
Object
title of lesser dexterity
dex 2
face girdle3.101
item_level_art 7
type 113
is_magical 1
value 5500
end
#
Allowed !girdle_cloth
chance 20
difficulty 7
artifact girdle_less_con
def_arch girdle
editor 2:items/armour/girdle
Object
title of lesser constitution
face girdle3.101
con 2
item_level_art 7
type 113
is_magical 1
value 5500
end
#
Allowed girdle_cloth
chance 20
difficulty 7
artifact girdle_less_int
def_arch girdle_cloth
editor 2:items/armour/girdle
Object
title of lesser intelligence
int 2
item_level_art 7
face a_girdle2.101
type 113
is_magical 1
value 5500
end
#
Allowed girdle_cloth
chance 20
difficulty 7
artifact girdle_less_pow
def_arch girdle_cloth
editor 2:items/armour/girdle
Object
title of lesser power
pow 2
item_level_art 7
face a_girdle2.101
type 113
is_magical 1
value 5500
end
#
Allowed all
chance 20
difficulty 7
artifact girdle_less_wis
def_arch girdle
editor 2:items/armour/girdle
Object
title of lesser wisdom
wis 2
item_level_art 7
face a_girdle2.101
type 113
is_magical 1
value 5500
end
#
Allowed all
chance 20
difficulty 7
artifact girdle_less_cha
def_arch girdle
editor 2:items/armour/girdle
Object
title of lesser charisma
cha 2
item_level_art 7
face a_girdle2.101
type 113
is_magical 1
value 5500
end
#
Allowed !girdle_cloth
chance 10
difficulty 15
artifact girdle_sm_strength
def_arch girdle
editor 2:items/armour/girdle
Object
title of small strength
str 3
item_level_art 15
face girdle3.101
type 113
is_magical 1
value 6050
end
#
Allowed !girdle_cloth
chance 10
difficulty 15
artifact girdle_sm_dexterity
def_arch girdle
editor 2:items/armour/girdle
Object
title of small dexterity
dex 3
face girdle3.101
item_level_art 15
type 113
is_magical 1
value 6050
end
#
Allowed !girdle_cloth
chance 10
difficulty 15
artifact girdle_sm_constitution
def_arch girdle
editor 2:items/armour/girdle
Object
title of small constitution
face girdle3.101
con 3
item_level_art 15
type 113
is_magical 1
value 6050
end
#
Allowed girdle_cloth
chance 10
difficulty 15
artifact girdle_sm_intelligence
def_arch girdle_cloth
editor 2:items/armour/girdle
Object
title of small intelligence
int 3
item_level_art 15
face a_girdle2.101
type 113
is_magical 1
value 6050
end
#
Allowed girdle_cloth
chance 10
difficulty 15
artifact girdle_sm_power
def_arch girdle_cloth
editor 2:items/armour/girdle
Object
title of small power
pow 3
item_level_art 15
face a_girdle2.101
type 113
is_magical 1
value 6050
end
#
Allowed all
chance 10
difficulty 15
artifact girdle_sm_wisdom
def_arch girdle
editor 2:items/armour/girdle
Object
title of small wisdom
wis 3
item_level_art 15
face a_girdle2.101
type 113
is_magical 1
value 6050
end
#
Allowed all
chance 10
difficulty 15
artifact girdle_sm_charisma
def_arch girdle
editor 2:items/armour/girdle
Object
title of small charisma
cha 3
item_level_art 15
face a_girdle2.101
type 113
is_magical 1
value 6050
end
#
Allowed !girdle_cloth
chance 5
difficulty 25
artifact girdle_med_str
def_arch girdle
editor 2:items/armour/girdle
Object
title of medium strength
str 4
item_level_art 25
face girdle3.101
type 113
is_magical 1
value 6655
end
#
Allowed !girdle_cloth
chance 5
difficulty 25
artifact girdle_med_dex
def_arch girdle
editor 2:items/armour/girdle
Object
title of medium dexterity
dex 4
face girdle3.101
item_level_art 25
type 113
is_magical 1
value 6655
end
#
Allowed !girdle_cloth
chance 5
difficulty 25
artifact girdle_med_con
def_arch girdle
editor 2:items/armour/girdle
Object
title of medium constitution
face girdle3.101
con 4
item_level_art 25
type 113
is_magical 1
value 6655
end
#
Allowed girdle_cloth
chance 5
difficulty 25
artifact girdle_med_int
def_arch girdle_cloth
editor 2:items/armour/girdle
Object
title of medium intelligence
int 4
item_level_art 25
face a_girdle2.101
type 113
is_magical 1
value 6655
end
#
Allowed girdle_cloth
chance 5
difficulty 25
artifact girdle_med_pow
def_arch girdle_cloth
editor 2:items/armour/girdle
Object
title of medium power
pow 4
item_level_art 25
face a_girdle2.101
type 113
is_magical 1
value 6655
end
#
Allowed all
chance 5
difficulty 25
artifact girdle_med_wis
def_arch girdle
editor 2:items/armour/girdle
Object
title of medium wisdom
wis 4
item_level_art 25
face a_girdle2.101
type 113
is_magical 1
value 6655
end
#
Allowed all
chance 5
difficulty 25
artifact girdle_med_cha
def_arch girdle
editor 2:items/armour/girdle
Object
title of medium charisma
cha 4
item_level_art 25
face a_girdle2.101
type 113
is_magical 1
value 6655
end
#
#
#
# gauntlets, gloves
#
#
Allowed !gloves, !gloves_cloth
chance 60
difficulty 2
artifact gauntlet_inaccuracy
def_arch gauntlets
editor 2:items/armour/gauntlets
Object
title of inaccuracy
type 100
is_magical 1
wc -5
cursed_perm 1
cursed 1
value 5
end
#
Allowed !gloves_cloth
chance 40
difficulty 2
artifact gauntlet_min_str
def_arch gauntlets
editor 2:items/armour/gauntlets
Object
title of minor strength
str 1
item_level_art 2
type 100
is_magical 1
value 5000
end
#
Allowed !gloves_cloth
chance 40
difficulty 2
artifact gauntlet_min_dex
def_arch gauntlets
editor 2:items/armour/gauntlets
Object
item_level_art 2
title of minor dexterity
dex 1
type 100
is_magical 1
value 5000
end
#
Allowed !gloves_cloth
chance 40
difficulty 2
artifact gauntlet_min_con
def_arch gauntlets
editor 2:items/armour/gauntlets
Object
title of minor constitution
con 1
item_level_art 2
type 100
is_magical 1
value 5000
end
#
Allowed gloves_cloth
chance 40
difficulty 2
artifact gauntlet_min_int
def_arch gloves_cloth
editor 2:items/armour/gauntlets
Object
title of minor intelligence
int 1
type 100
item_level_art 2
is_magical 1
value 5000
end
#
Allowed gloves_cloth
chance 40
difficulty 2
artifact gauntlet_min_pow
def_arch gloves_cloth
editor 2:items/armour/gauntlets
Object
title of minor power
pow 1
item_level_art 2
type 100
is_magical 1
value 5000
end
#
Allowed all
chance 40
difficulty 2
artifact gauntlet_min_wis
def_arch gauntlets
editor 2:items/armour/gauntlets
Object
title of minor wisdom
wis 1
item_level_art 2
type 100
is_magical 1
value 5000
end
#
Allowed all
chance 40
difficulty 2
artifact gauntlet_min_cha
def_arch gauntlets
editor 2:items/armour/gauntlets
Object
title of minor charisma
item_level_art 2
cha 1
type 100
is_magical 1
value 5000
end
#
Allowed !gloves, !gloves_cloth
chance 40
difficulty 5
artifact gauntlet_min_dam
def_arch gauntlets
editor 2:items/armour/gauntlets
Object
title of minor damage
dam 5
item_level_art 5
type 100
is_magical 1
value 6500
end
#
Allowed !gloves, !gloves_cloth
chance 40
difficulty 5
artifact gauntlet_min_prec
def_arch gauntlets
editor 2:items/armour/gauntlets
Object
title of minor precision
face gauntlets_gold.101
wc 1
item_level_art 5
type 100
is_magical 1
value 6500
end
#
Allowed !gloves, !gloves_cloth
chance 20
difficulty 11
artifact gauntlet_less_prec
def_arch gauntlets
editor 2:items/armour/gauntlets
Object
title of lesser precision
face gauntlets_gold.101
wc 2
item_level_art 11
type 100
is_magical 1
value 13000
end
#
Allowed !gloves_cloth
chance 20
difficulty 7
artifact gauntlet_less_str
def_arch gauntlets
editor 2:items/armour/gauntlets
Object
title of lesser strength
str 2
item_level_art 7
type 100
is_magical 1
value 5500
end
#
Allowed !gloves_cloth
chance 20
difficulty 7
artifact gauntlet_less_dex
def_arch gauntlets
editor 2:items/armour/gauntlets
Object
item_level_art 7
title of lesser dexterity
dex 2
type 100
is_magical 1
value 5500
end
#
Allowed !gloves_cloth
chance 20
difficulty 7
artifact gauntlet_less_con
def_arch gauntlets
editor 2:items/armour/gauntlets
Object
title of lesser constitution
con 2
item_level_art 7
type 100
is_magical 1
value 5500
end
#
Allowed gloves_cloth
chance 20
difficulty 7
artifact gauntlet_less_int
def_arch gloves_cloth
editor 2:items/armour/gauntlets
Object
title of lesser intelligence
int 2
type 100
item_level_art 7
is_magical 1
value 5500
end
#
Allowed gloves_cloth
chance 20
difficulty 7
artifact gauntlet_less_pow
def_arch gloves_cloth
editor 2:items/armour/gauntlets
Object
title of lesser power
pow 2
item_level_art 7
type 100
is_magical 1
value 5500
end
#
Allowed all
chance 20
difficulty 7
artifact gauntlet_less_wis
def_arch gauntlets
editor 2:items/armour/gauntlets
Object
title of lesser wisdom
wis 2
item_level_art 7
type 100
is_magical 1
value 5500
end
#
Allowed all
chance 20
difficulty 7
artifact gauntlet_less_cha
def_arch gauntlets
editor 2:items/armour/gauntlets
Object
title of lesser charisma
item_level_art 7
cha 2
type 100
is_magical 1
value 5500
end
#
Allowed !gloves, !gloves_cloth
chance 20
difficulty 11
artifact gauntlet_less_dam
def_arch gauntlets
editor 2:items/armour/gauntlets
Object
title of lesser damage
dam 10
item_level_art 11
type 100
is_magical 1
value 13000
end
#
Allowed !gloves, !gloves_cloth
chance 10
difficulty 20
artifact gauntlet_sm_prec
def_arch gauntlets
editor 2:items/armour/gauntlets
Object
title of small precision
wc 3
item_level_art 20
type 100
is_magical 1
value 39000
end
#
Allowed !gloves_cloth
chance 10
difficulty 15
artifact gauntlet_sm_str
def_arch gauntlets
editor 2:items/armour/gauntlets
Object
title of small strength
str 3
item_level_art 15
type 100
is_magical 1
value 6050
end
#
Allowed !gloves_cloth
chance 10
difficulty 15
artifact gauntlet_sm_dex
def_arch gauntlets
editor 2:items/armour/gauntlets
Object
item_level_art 15
title of small dexterity
dex 3
type 100
is_magical 1
value 6050
end
#
Allowed !gloves_cloth
chance 10
difficulty 15
artifact gauntlet_sm_con
def_arch gauntlets
editor 2:items/armour/gauntlets
Object
title of small constitution
con 3
item_level_art 15
type 100
is_magical 1
value 6050
end
#
Allowed gloves_cloth
chance 10
difficulty 15
artifact gauntlet_sm_int
def_arch gloves_cloth
editor 2:items/armour/gauntlets
Object
title of small intelligence
int 3
type 100
item_level_art 15
is_magical 1
value 6050
end
#
Allowed gloves_cloth
chance 10
difficulty 15
artifact gauntlet_sm_pow
def_arch gloves_cloth
editor 2:items/armour/gauntlets
Object
title of small power
pow 3
item_level_art 15
type 100
is_magical 1
value 6050
end
#
Allowed all
chance 10
difficulty 15
artifact gauntlet_sm_wis
def_arch gauntlets
editor 2:items/armour/gauntlets
Object
title of small wisdom
wis 3
item_level_art 15
type 100
is_magical 1
value 6050
end
#
Allowed all
chance 10
difficulty 15
artifact gauntlet_sm_cha
def_arch gauntlets
editor 2:items/armour/gauntlets
Object
title of small charisma
item_level_art 15
cha 3
type 100
is_magical 1
value 6050
end
#
Allowed !gloves, !gloves_cloth
chance 10
difficulty 20
artifact gauntlet_sm_dam
def_arch gauntlets
editor 2:items/armour/gauntlets
Object
title of small damage
dam 15
item_level_art 20
type 100
is_magical 1
value 26000
end
#
Allowed !gloves, !gloves_cloth
chance 5
difficulty 30
artifact gauntlet_med_prec
def_arch gauntlets
editor 2:items/armour/gauntlets
Object
title of medium precision
wc 4
item_level_art 30
type 100
is_magical 1
value 82500
end
#
Allowed !gloves_cloth
chance 5
difficulty 25
artifact gauntlet_med_str
def_arch gauntlets
editor 2:items/armour/gauntlets
Object
title of medium strength
str 4
item_level_art 25
type 100
is_magical 1
value 6655
end
#
Allowed !gloves_cloth
chance 5
difficulty 25
artifact gauntlet_med_dex
def_arch gauntlets
editor 2:items/armour/gauntlets
Object
item_level_art 25
title of medium dexterity
dex 4
type 100
is_magical 1
value 6655
end
#
Allowed !gloves_cloth
chance 5
difficulty 25
artifact gauntlet_med_con
def_arch gauntlets
editor 2:items/armour/gauntlets
Object
title of medium constitution
con 4
item_level_art 25
type 100
is_magical 1
value 6655
end
#
Allowed gloves_cloth
chance 5
difficulty 25
artifact gauntlet_med_int
def_arch gloves_cloth
editor 2:items/armour/gauntlets
Object
title of medium intelligence
int 4
type 100
item_level_art 25
is_magical 1
value 6655
end
#
Allowed gloves_cloth
chance 5
difficulty 25
artifact gauntlet_med_pow
def_arch gloves_cloth
editor 2:items/armour/gauntlets
Object
title of medium power
pow 4
item_level_art 25
type 100
is_magical 1
value 6655
end
#
Allowed all
chance 5
difficulty 25
artifact gauntlet_med_wis
def_arch gauntlets
editor 2:items/armour/gauntlets
Object
title of medium wisdom
wis 4
item_level_art 25
type 100
is_magical 1
value 6655
end
#
Allowed all
chance 5
difficulty 25
artifact gauntlet_med_cha
def_arch gauntlets
editor 2:items/armour/gauntlets
Object
title of medium charisma
item_level_art 25
cha 4
type 100
is_magical 1
value 6655
end
#
Allowed !gloves, !gloves_cloth
chance 5
difficulty 30
artifact gauntlet_med_dam
def_arch gauntlets
editor 2:items/armour/gauntlets
Object
title of medium damage
dam 20
item_level_art 30
type 100
is_magical 1
value 82500
end
#
#
# Helms
#
Allowed all
chance 20
difficulty 20
artifact helm_infravision
def_arch helm_iron
editor 2:items/armour/helmet
Object
title of infravision
type 34
item_level_art 10
is_magical 1
can_see_in_dark 1
value 113000
end
#
Allowed all
chance 20
difficulty 30
artifact helm_xray
def_arch helm_iron
editor 2:items/armour/helmet
Object
title of demon eyes
type 34
item_level_art 15
is_magical 1
xrays 1
value 213000
end
#
Allowed !hat_feather, !hat_blue, !hat_witch, !santahat
chance 40
difficulty 2
artifact helm_min_str
def_arch helm_iron
editor 2:items/armour/helmet
Object
title of minor strength
type 34
is_magical 1
str 1
item_level_art 2
value 3000
end
#
Allowed !hat_feather, !hat_blue, !hat_witch, !santahat
chance 40
difficulty 2
artifact helm_min_dex
def_arch helm_iron
editor 2:items/armour/helmet
Object
title of minor dexterity
type 34
is_magical 1
item_level_art 2
dex 1
value 3000
end
#
Allowed hat_feather, hat_blue, hat_witch, santahat
chance 40
difficulty 2
artifact helm_min_int
def_arch hat_feather
editor 2:items/armour/helmet
Object
title of minor intelligence
item_level_art 2
type 34
is_magical 1
int 1
value 3000
end
#
Allowed all
chance 40
difficulty 2
artifact helm_min_wis
def_arch helm_iron
editor 2:items/armour/helmet
Object
title of minor wisdom
item_level_art 2
type 34
is_magical 1
wis 1
value 3000
end
#
Allowed hat_feather, hat_blue, hat_witch, santahat
chance 40
difficulty 2
artifact helm_min_pow
def_arch hat_feather
editor 2:items/armour/helmet
Object
title of minor power
item_level_art 2
type 34
is_magical 1
pow 1
value 3000
end
#
Allowed all
chance 40
difficulty 2
artifact helm_min_cha
def_arch helm_iron
editor 2:items/armour/helmet
Object
title of minor charisma
item_level_art 2
type 34
is_magical 1
cha 1
value 3000
end
#
Allowed !hat_feather, !hat_blue, !hat_witch, !santahat
chance 40
difficulty 2
artifact helm_min_con
def_arch helm_iron
editor 2:items/armour/helmet
Object
title of minor constitution
item_level_art 2
type 34
is_magical 1
con 1
value 3000
end
#
Allowed all
chance 40
difficulty 2
t_style 1
artifact helm_min_fire
def_arch helm_iron
editor 2:items/armour/helmet
Object
title of minor fire protection
item_level_art 2
type 34
is_magical 1
resist_fire 5
value 2100
end
#
Allowed all
chance 40
difficulty 2
t_style 2
artifact helm_min_cold
def_arch helm_iron
editor 2:items/armour/helmet
Object
title of minor cold protection
item_level_art 2
type 34
is_magical 1
resist_cold 5
value 2100
end
#
Allowed all
chance 40
t_style 3
difficulty 2
artifact helm_min_elec
def_arch helm_iron
editor 2:items/armour/helmet
Object
title of minor electricity protection
item_level_art 2
type 34
is_magical 1
resist_electricity 5
value 2100
end
#
Allowed all
chance 40
t_style 4
difficulty 2
artifact helm_min_poison
def_arch helm_iron
editor 2:items/armour/helmet
Object
title of minor poison protection
item_level_art 2
type 34
is_magical 1
resist_poison 5
value 2100
end
#
Allowed all
chance 40
t_style 5
difficulty 2
artifact helm_min_acid
def_arch helm_iron
editor 2:items/armour/helmet
Object
title of minor acid protection
item_level_art 2
type 34
is_magical 1
resist_acid 5
value 2100
end
#
#
Allowed !hat_feather, !hat_blue, !hat_witch, !santahat
chance 20
difficulty 7
artifact helm_less_str
def_arch helm_iron
editor 2:items/armour/helmet
Object
title of lesser strength
type 34
is_magical 1
str 2
item_level_art 7
value 5500
end
#
Allowed !hat_feather, !hat_blue, !hat_witch, !santahat
chance 20
difficulty 7
artifact helm_less_dex
def_arch helm_iron
editor 2:items/armour/helmet
Object
title of lesser dexterity
type 34
is_magical 1
item_level_art 7
dex 2
value 5500
end
#
Allowed hat_feather, hat_blue, hat_witch, santahat
chance 20
difficulty 7
artifact helm_less_int
def_arch hat_feather
editor 2:items/armour/helmet
Object
title of lesser intelligence
item_level_art 7
type 34
is_magical 1
int 2
value 5500
end
#
Allowed all
chance 20
difficulty 7
artifact helm_less_wis
def_arch helm_iron
editor 2:items/armour/helmet
Object
title of lesser wisdom
item_level_art 7
type 34
is_magical 1
wis 2
value 5500
end
#
Allowed hat_feather, hat_blue, hat_witch, santahat
chance 20
difficulty 7
artifact helm_less_pow
def_arch hat_feather
editor 2:items/armour/helmet
Object
title of lesser power
item_level_art 7
type 34
is_magical 1
pow 2
value 5500
end
#
Allowed all
chance 20
difficulty 7
artifact helm_less_cha
def_arch helm_iron
editor 2:items/armour/helmet
Object
title of lesser charisma
item_level_art 7
type 34
is_magical 1
cha 2
value 5500
end
#
Allowed !hat_feather, !hat_blue, !hat_witch, !santahat
chance 20
difficulty 7
artifact helm_less_con
def_arch helm_iron
editor 2:items/armour/helmet
Object
title of lesser constitution
item_level_art 7
type 34
is_magical 1
con 2
value 5500
end
#
Allowed !hat_feather, !hat_blue, !hat_witch, !santahat
chance 10
difficulty 15
artifact helm_sm_str
def_arch helm_iron
editor 2:items/armour/helmet
Object
title of small strength
type 34
is_magical 1
str 3
item_level_art 15
value 3630
end
#
Allowed !hat_feather, !hat_blue, !hat_witch, !santahat
chance 10
difficulty 15
artifact helm_sm_dex
def_arch helm_iron
editor 2:items/armour/helmet
Object
title of small dexterity
type 34
is_magical 1
item_level_art 15
dex 3
value 3630
end
#
Allowed hat_feather, hat_blue, hat_witch, santahat
chance 10
difficulty 15
artifact helm_sm_int
def_arch hat_feather
editor 2:items/armour/helmet
Object
title of small intelligence
item_level_art 15
type 34
is_magical 1
int 3
value 3630
end
#
Allowed all
chance 10
difficulty 15
artifact helm_sm_wis
def_arch helm_iron
editor 2:items/armour/helmet
Object
title of small wisdom
item_level_art 15
type 34
is_magical 1
wis 3
value 3630
end
#
Allowed hat_feather, hat_blue, hat_witch, santahat
chance 10
difficulty 15
artifact helm_sm_pow
def_arch hat_feather
editor 2:items/armour/helmet
Object
title of small power
item_level_art 15
type 34
is_magical 1
pow 3
value 3630
end
#
Allowed all
chance 10
difficulty 15
artifact helm_sm_cha
def_arch helm_iron
editor 2:items/armour/helmet
Object
title of small charisma
item_level_art 15
type 34
is_magical 1
cha 3
value 3630
end
#
Allowed !hat_feather, !hat_blue, !hat_witch, !santahat
chance 10
difficulty 15
artifact helm_sm_con
def_arch helm_iron
editor 2:items/armour/helmet
Object
title of small constitution
item_level_art 15
type 34
is_magical 1
con 3
value 3630
end
#
Allowed all
chance 20
difficulty 7
t_style 1
artifact helm_less_fire
def_arch helm_iron
editor 2:items/armour/helmet
Object
title of lesser fire protection
item_level_art 7
type 34
is_magical 1
resist_fire 10
value 2310
end
#
Allowed all
chance 20
difficulty 7
t_style 2
artifact helm_less_cold
def_arch helm_iron
editor 2:items/armour/helmet
Object
title of lesser cold protection
item_level_art 7
type 34
is_magical 1
resist_cold 10
value 2310
end
#
Allowed all
chance 20
t_style 3
difficulty 7
artifact helm_less_elec
def_arch helm_iron
editor 2:items/armour/helmet
Object
title of lesser electricity protection
item_level_art 7
type 34
is_magical 1
resist_electricity 10
value 231
end
#
Allowed all
chance 20
t_style 4
difficulty 7
artifact helm_less_poison
def_arch helm_iron
editor 2:items/armour/helmet
Object
title of lesser poison protection
item_level_art 7
type 34
is_magical 1
resist_poison 10
value 2310
end
#
Allowed all
chance 20
t_style 5
difficulty 7
artifact helm_less_acid
def_arch helm_iron
editor 2:items/armour/helmet
Object
title of lesser acid protection
item_level_art 7
type 34
is_magical 1
resist_acid 10
value 2310
end
#
Allowed !hat_feather, !hat_blue, !hat_witch, !santahat
chance 5
difficulty 25
artifact helm_med_str
def_arch helm_iron
editor 2:items/armour/helmet
Object
title of medium strength
type 34
is_magical 1
str 4
item_level_art 25
value 4000
end
#
Allowed !hat_feather, !hat_blue, !hat_witch, !santahat
chance 5
difficulty 25
artifact helm_med_dex
def_arch helm_iron
editor 2:items/armour/helmet
Object
title of medium dexterity
type 34
is_magical 1
item_level_art 25
dex 4
value 4000
end
#
Allowed hat_feather, hat_blue, hat_witch, santahat
chance 5
difficulty 25
artifact helm_med_int
def_arch hat_feather
editor 2:items/armour/helmet
Object
title of medium intelligence
item_level_art 25
type 34
is_magical 1
int 4
value 4000
end
#
Allowed all
chance 5
difficulty 25
artifact helm_med_wis
def_arch helm_iron
editor 2:items/armour/helmet
Object
title of medium wisdom
item_level_art 25
type 34
is_magical 1
wis 4
value 4000
end
#
Allowed hat_feather, hat_blue, hat_witch, santahat
chance 5
difficulty 25
artifact helm_med_pow
def_arch hat_feather
editor 2:items/armour/helmet
Object
title of medium power
item_level_art 25
type 34
is_magical 1
pow 4
value 4000
end
#
Allowed all
chance 5
difficulty 25
artifact helm_med_cha
def_arch helm_iron
editor 2:items/armour/helmet
Object
title of medium charisma
item_level_art 25
type 34
is_magical 1
cha 4
value 4000
end
#
Allowed !hat_feather, !hat_blue, !hat_witch, !santahat
chance 5
difficulty 25
artifact helm_med_con
def_arch helm_iron
editor 2:items/armour/helmet
Object
title of medium constitution
item_level_art 25
type 34
is_magical 1
con 4
value 4000
end
#
Allowed all
chance 10
difficulty 15
t_style 1
artifact helm_sm_fire
def_arch helm_iron
editor 2:items/armour/helmet
Object
title of small fire protection
item_level_art 15
type 34
is_magical 1
resist_fire 15
value 2541
end
#
Allowed all
chance 10
difficulty 15
t_style 2
artifact helm_sm_cold
def_arch helm_iron
editor 2:items/armour/helmet
Object
title of small cold protection
item_level_art 15
type 34
is_magical 1
resist_cold 15
value 2541
end
#
Allowed all
chance 10
t_style 3
difficulty 15
artifact helm_sm_elec
def_arch helm_iron
editor 2:items/armour/helmet
Object
title of small electricity protection
item_level_art 15
type 34
is_magical 1
resist_electricity 15
value 2541
end
#
Allowed all
chance 10
t_style 4
difficulty 15
artifact helm_sm_poison
def_arch helm_iron
editor 2:items/armour/helmet
Object
title of small poison protection
item_level_art 15
type 34
is_magical 1
resist_poison 15
value 2541
end
#
Allowed all
chance 10
t_style 5
difficulty 15
artifact helm_sm_acid
def_arch helm_iron
editor 2:items/armour/helmet
Object
title of small acid protection
item_level_art 15
type 34
is_magical 1
resist_acid 15
value 2541
end
#
Allowed all
chance 5
difficulty 25
t_style 1
artifact helm_med_fire
def_arch helm_iron
editor 2:items/armour/helmet
Object
title of medium fire protection
item_level_art 25
type 34
is_magical 1
resist_fire 20
value 2800
end
#
Allowed all
chance 5
difficulty 25
t_style 2
artifact helm_med_cold
def_arch helm_iron
editor 2:items/armour/helmet
Object
title of medium cold protection
item_level_art 25
type 34
is_magical 1
resist_cold 20
value 2800
end
#
Allowed all
chance 5
t_style 3
difficulty 25
artifact helm_med_elec
def_arch helm_iron
editor 2:items/armour/helmet
Object
title of medium electricity protection
item_level_art 25
type 34
is_magical 1
resist_electricity 20
value 2800
end
#
Allowed all
chance 5
t_style 4
difficulty 25
artifact helm_med_poison
def_arch helm_iron
editor 2:items/armour/helmet
Object
title of medium poison protection
item_level_art 25
type 34
is_magical 1
resist_poison 20
value 2800
end
#
Allowed all
chance 5
t_style 5
difficulty 25
artifact helm_med_acid
def_arch helm_iron
editor 2:items/armour/helmet
Object
title of medium acid protection
item_level_art 25
type 34
is_magical 1
resist_acid 20
value 2800
end
#
#
# Bracers
#
Allowed !bracers_cloth
chance 40
difficulty 2
artifact bracers_min_dex
def_arch bracers_ac
editor 2:items/armour/bracers
Object
title of minor dexterity
face bracers2.101
item_level_art 2
type 104
dex 1
is_magical 1
value 5000
end
#
Allowed !bracers_cloth
chance 40
difficulty 2
artifact bracers_min_str
def_arch bracers_ac
editor 2:items/armour/bracers
Object
title of minor strength
face bracers3.101
item_level_art 2
str 1
type 104
is_magical 1
value 5000
end
#
Allowed !bracers_cloth
chance 40
difficulty 2
artifact bracers_min_con
def_arch bracers_ac
editor 2:items/armour/bracers
Object
title of minor constitution
face bracers4.101
item_level_art 2
con 1
type 104
is_magical 1
value 5000
end
#
Allowed bracers_cloth
chance 40
difficulty 2
artifact bracers_min_int
def_arch bracers_cloth
editor 2:items/armour/bracers
Object
title of minor intelligence
face bracers5.101
item_level_art 2
int 1
type 104
is_magical 1
value 5000
end
#
Allowed all
chance 40
difficulty 2
artifact bracers_min_cha
def_arch bracers_ac
editor 2:items/armour/bracers
Object
title of minor charisma
face bracers5.101
item_level_art 2
cha 1
type 104
is_magical 1
value 5000
end
#
Allowed bracers_cloth
chance 40
difficulty 2
artifact bracers_min_pow
def_arch bracers_cloth
editor 2:items/armour/bracers
Object
title of minor power
face bracers6.101
item_level_art 2
pow 1
type 104
is_magical 1
value 5000
end
#
Allowed all
chance 40
difficulty 2
artifact bracers_min_wis
def_arch bracers_ac
editor 2:items/armour/bracers
Object
title of minor wisdom
face bracers6.101
item_level_art 2
wis 1
type 104
is_magical 1
value 5000
end
#
#
Allowed !bracers_cloth
chance 20
difficulty 7
artifact bracers_less_dex
def_arch bracers_ac
editor 2:items/armour/bracers
Object
title of lesser dexterity
face bracers2.101
item_level_art 7
type 104
dex 2
is_magical 1
value 5500
end
#
Allowed !bracers_cloth
chance 20
difficulty 7
artifact bracers_less_str
def_arch bracers_ac
editor 2:items/armour/bracers
Object
title of lesser strength
face bracers3.101
item_level_art 7
str 2
type 104
is_magical 1
value 5500
end
#
Allowed !bracers_cloth
chance 20
difficulty 7
artifact bracers_less_con
def_arch bracers_ac
editor 2:items/armour/bracers
Object
title of lesser constitution
face bracers4.101
item_level_art 7
con 2
type 104
is_magical 1
value 5500
end
#
Allowed bracers_cloth
chance 20
difficulty 7
artifact bracers_less_int
def_arch bracers_cloth
editor 2:items/armour/bracers
Object
title of lesser intelligence
face bracers5.101
item_level_art 7
int 2
type 104
is_magical 1
value 5500
end
#
Allowed all
chance 20
difficulty 7
artifact bracers_less_cha
def_arch bracers_ac
editor 2:items/armour/bracers
Object
title of lesser charisma
face bracers5.101
item_level_art 7
cha 2
type 104
is_magical 1
value 5500
end
#
Allowed bracers_cloth
chance 20
difficulty 7
artifact bracers_less_pow
def_arch bracers_cloth
editor 2:items/armour/bracers
Object
title of lesser power
face bracers6.101
pow 2
item_level_art 7
type 104
is_magical 1
value 5500
end
#
Allowed all
chance 20
difficulty 7
artifact bracers_less_wis
def_arch bracers_ac
editor 2:items/armour/bracers
Object
title of lesser wisdom
face bracers6.101
item_level_art 7
wis 2
type 104
is_magical 1
value 5500
end
#
Allowed !bracers_cloth
chance 10
difficulty 15
artifact bracers_sm_dexterity
def_arch bracers_ac
editor 2:items/armour/bracers
Object
title of small dexterity
face bracers2.101
item_level_art 15
type 104
dex 3
is_magical 1
value 6050
end
#
Allowed !bracers_cloth
chance 10
difficulty 15
artifact bracers_sm_strength
def_arch bracers_ac
editor 2:items/armour/bracers
Object
title of small strength
face bracers3.101
item_level_art 15
str 3
type 104
is_magical 1
value 6050
end
#
Allowed !bracers_cloth
chance 10
difficulty 15
artifact bracers_sm_constitution
def_arch bracers_ac
editor 2:items/armour/bracers
Object
title of small constitution
face bracers4.101
item_level_art 15
con 3
type 104
is_magical 1
value 6050
end
#
Allowed bracers_cloth
chance 10
difficulty 15
artifact bracers_sm_intelligence
def_arch bracers_cloth
editor 2:items/armour/bracers
Object
title of small intelligence
face bracers5.101
item_level_art 15
int 3
type 104
is_magical 1
value 6050
end
#
Allowed all
chance 10
difficulty 15
artifact bracers_sm_charisma
def_arch bracers_ac
editor 2:items/armour/bracers
Object
title of small charisma
face bracers5.101
item_level_art 15
cha 3
type 104
is_magical 1
value 6050
end
#
Allowed bracers_cloth
chance 10
difficulty 15
artifact bracers_sm_power
def_arch bracers_cloth
editor 2:items/armour/bracers
Object
title of small power
face bracers6.101
item_level_art 15
pow 3
type 104
is_magical 1
value 6050
end
#
Allowed all
chance 10
difficulty 15
artifact bracers_sm_wisdom
def_arch bracers_ac
editor 2:items/armour/bracers
Object
title of small wisdom
face bracers6.101
item_level_art 15
wis 3
type 104
is_magical 1
value 6050
end
#
Allowed !bracers_cloth
chance 5
difficulty 25
artifact bracers_med_dex
def_arch bracers_ac
editor 2:items/armour/bracers
Object
title of medium dexterity
face bracers2.101
item_level_art 25
type 104
dex 4
is_magical 1
value 6655
end
#
Allowed !bracers_cloth
chance 5
difficulty 25
artifact bracers_med_str
def_arch bracers_ac
editor 2:items/armour/bracers
Object
title of medium strength
face bracers_med_str.101
item_level_art 25
str 4
type 104
is_magical 1
value 6655
end
#
Allowed !bracers_cloth
chance 5
difficulty 25
artifact bracers_med_con
def_arch bracers_ac
editor 2:items/armour/bracers
Object
title of medium constitution
face bracers4.101
item_level_art 25
con 4
type 104
is_magical 1
value 6655
end
#
Allowed bracers_cloth
chance 5
difficulty 25
artifact bracers_med_int
def_arch bracers_cloth
editor 2:items/armour/bracers
Object
title of medium intelligence
face bracers5.101
item_level_art 25
int 4
type 104
is_magical 1
value 6655
end
#
Allowed all
chance 5
difficulty 25
artifact bracers_med_cha
def_arch bracers_ac
editor 2:items/armour/bracers
Object
title of medium charisma
face bracers5.101
item_level_art 25
cha 4
type 104
is_magical 1
value 6655
end
#
Allowed bracers_cloth
chance 5
difficulty 25
artifact bracers_med_pow
def_arch bracers_cloth
editor 2:items/armour/bracers
Object
title of medium power
face bracers6.101
item_level_art 25
pow 4
type 104
is_magical 1
value 6655
end
#
Allowed all
chance 5
difficulty 25
artifact bracers_med_wis
def_arch bracers_ac
editor 2:items/armour/bracers
Object
title of medium wisdom
face bracers6.101
item_level_art 25
wis 4
type 104
is_magical 1
value 6655
end
#
#
#Artifact boots!
#
Allowed !sandals,!low_boots,!sandals_cloth
chance 30
artifact boots_granite
def_arch high_boots
difficulty 4
editor 2:items/armour/boots
Object
title of granite
type 99
item_level_art 4
is_magical 1
resist_impact 10
resist_slash 10
resist_pierce 10
resist_cleave 10
resist_fire 6
resist_cold 6
resist_acid 6
resist_electricity 6
resist_poison 6
value 13400
weight 35000
ac 3
last_sp 350
str -3
dex -3
msg
What strange boots, they look very 
protective, but amazingly heavy.
There also doesn't appear to be
any laces, you wonder how you're ever
going to take them off.
endmsg
cursed_perm 1
cursed 1
end
#
#
#
Allowed !sandals,!leggings_plate,!leggings_chain,!leggings_leather,!leggings_scale
artifact boots_min_fire
chance 40
t_style 1
difficulty 2
def_arch low_boots
editor 2:items/armour/boots
Object
title of minor fire protection
item_level_art 2
type 99
is_magical 1
resist_fire 4
value 2000
end
#
Allowed !sandals,!leggings_plate,!leggings_chain,!leggings_leather,!leggings_scale
artifact boots_min_cold
chance 40
t_style 2
difficulty 2
def_arch low_boots
editor 2:items/armour/boots
Object
title of minor cold protection
item_level_art 2
type 99
is_magical 1
resist_cold 4
value 2000
end
#
Allowed !sandals,!leggings_plate,!leggings_chain,!leggings_leather,!leggings_scale
artifact boots_min_elec
chance 40
t_style 3
difficulty 2
def_arch low_boots
editor 2:items/armour/boots
Object
title of minor electricity protection
item_level_art 2
type 99
is_magical 1
resist_electricity 4
value 2000
end
#
Allowed !sandals,!leggings_plate,!leggings_chain,!leggings_leather,!leggings_scale
artifact boots_min_poison
chance 40
t_style 4
difficulty 2
editor 2:items/armour/boots
def_arch low_boots
Object
title of minor poison protection
item_level_art 2
type 99
is_magical 1
resist_poison 4
value 2000
end
#
Allowed !sandals,!leggings_plate,!leggings_chain,!leggings_leather,!leggings_scale
artifact boots_min_acid
chance 40
t_style 5
difficulty 2
editor 2:items/armour/boots
def_arch low_boots
Object
title of minor acid protection
item_level_art 2
type 99
is_magical 1
resist_acid 4
value 2000
end
#
#
Allowed leggings_plate,leggings_chain,leggings_leather,leggings_scale
artifact leggings_min_fire
chance 40
difficulty 2
t_style 1
def_arch leggings_leather
editor 2:items/armour/boots
Object
title of minor fire protection
type 99
item_level_art 2
is_magical 1
resist_fire 5
value 3000
end
#
Allowed leggings_plate,leggings_chain,leggings_leather,leggings_scale
artifact leggings_min_cold
chance 40
difficulty 2
t_style 2
def_arch leggings_leather
editor 2:items/armour/boots
Object
title of minor cold protection
type 99
item_level_art 2
is_magical 1
resist_cold 5
value 3000
end
#
Allowed leggings_plate,leggings_chain,leggings_leather,leggings_scale
artifact leggings_min_electricity
chance 40
difficulty 2
t_style 3
def_arch leggings_leather
editor 2:items/armour/boots
Object
title of minor electricity protection
type 99
item_level_art 2
is_magical 1
resist_electricity 5
value 3000
end
#
Allowed leggings_plate,leggings_chain,leggings_leather,leggings_scale
artifact leggings_min_poison
chance 40
difficulty 2
t_style 4
def_arch leggings_leather
editor 2:items/armour/boots
Object
item_level_art 2
title of minor poison protection
type 99
is_magical 1
resist_poison 5
value 3000
end
#
Allowed leggings_plate,leggings_chain,leggings_leather,leggings_scale
artifact leggings_min_acid
chance 40
difficulty 2
t_style 5
def_arch leggings_leather
editor 2:items/armour/boots
Object
title of minor acid protection
type 99
item_level_art 2
is_magical 1
resist_acid 5
value 3000
end
#
Allowed !sandals,!leggings_plate,!leggings_chain,!leggings_leather,!leggings_scale
artifact boots_less_fire
chance 20
t_style 1
difficulty 7
def_arch low_boots
editor 2:items/armour/boots
Object
title of lesser fire protection
item_level_art 7
type 99
is_magical 1
resist_fire 8
value 2200
end
#
Allowed !sandals,!leggings_plate,!leggings_chain,!leggings_leather,!leggings_scale
artifact boots_less_cold
chance 20
t_style 2
difficulty 7
def_arch low_boots
editor 2:items/armour/boots
Object
title of lesser cold protection
item_level_art 7
type 99
is_magical 1
resist_cold 8
value 2200
end
#
Allowed !sandals,!leggings_plate,!leggings_chain,!leggings_leather,!leggings_scale
artifact boots_less_elec
chance 20
t_style 3
difficulty 7
def_arch low_boots
editor 2:items/armour/boots
Object
title of lesser electricity protection
item_level_art 7
type 99
is_magical 1
resist_electricity 8
value 2200
end
#
Allowed !sandals,!leggings_plate,!leggings_chain,!leggings_leather,!leggings_scale
artifact boots_less_poison
chance 20
t_style 4
difficulty 7
editor 2:items/armour/boots
def_arch low_boots
Object
title of lesser poison protection
item_level_art 7
type 99
is_magical 1
resist_poison 8
value 2200
end
#
Allowed !sandals,!leggings_plate,!leggings_chain,!leggings_leather,!leggings_scale
artifact boots_less_acid
chance 20
t_style 5
difficulty 7
editor 2:items/armour/boots
def_arch low_boots
Object
title of lesser acid protection
item_level_art 7
type 99
is_magical 1
resist_acid 8
value 2200
end
#
#
Allowed leggings_plate,leggings_chain,leggings_leather,leggings_scale
artifact leggings_less_fire
chance 20
difficulty 7
t_style 1
def_arch leggings_leather
editor 2:items/armour/boots
Object
title of lesser fire protection
type 99
item_level_art 7
is_magical 1
resist_fire 10
value 3300
end
#
Allowed leggings_plate,leggings_chain,leggings_leather,leggings_scale
artifact leggings_less_cold
chance 20
difficulty 7
t_style 2
def_arch leggings_leather
editor 2:items/armour/boots
Object
title of lesser cold protection
type 99
item_level_art 7
is_magical 1
resist_cold 10
value 3300
end
#
Allowed leggings_plate,leggings_chain,leggings_leather,leggings_scale
artifact leggings_less_electricity
chance 20
difficulty 7
t_style 3
def_arch leggings_leather
editor 2:items/armour/boots
Object
title of lesser electricity protection
type 99
item_level_art 7
is_magical 1
resist_electricity 10
value 3300
end
#
Allowed leggings_plate,leggings_chain,leggings_leather,leggings_scale
artifact leggings_less_poison
chance 20
difficulty 7
t_style 4
def_arch leggings_leather
editor 2:items/armour/boots
Object
item_level_art 7
title of lesser poison protection
type 99
is_magical 1
resist_poison 10
value 3300
end
#
Allowed leggings_plate,leggings_chain,leggings_leather,leggings_scale
artifact leggings_less_acid
chance 20
difficulty 7
t_style 5
def_arch leggings_leather
editor 2:items/armour/boots
Object
title of lesser acid protection
type 99
item_level_art 7
is_magical 1
resist_acid 10
value 3300
end
#
Allowed !sandals,!leggings_plate,!leggings_chain,!leggings_leather,leggings_scale
artifact boots_sm_fire
chance 10
t_style 1
difficulty 15
def_arch low_boots
editor 2:items/armour/boots
Object
title of small fire protection
item_level_art 15
type 99
is_magical 1
resist_fire 12
value 2420
end
#
Allowed !sandals,!leggings_plate,!leggings_chain,!leggings_leather,!leggings_scale
artifact boots_sm_cold
chance 10
t_style 2
difficulty 15
def_arch low_boots
editor 2:items/armour/boots
Object
title of small cold protection
item_level_art 15
type 99
is_magical 1
resist_cold 12
value 2420
end
#
Allowed !sandals,!leggings_plate,!leggings_chain,!leggings_leather,!leggings_scale
artifact boots_sm_elec
chance 10
t_style 3
difficulty 15
def_arch low_boots
editor 2:items/armour/boots
Object
title of small electricity protection
item_level_art 15
type 99
is_magical 1
resist_electricity 12
value 2420
end
#
Allowed !sandals,!leggings_plate,!leggings_chain,!leggings_leather,!leggings_scale
artifact boots_sm_poison
chance 10
t_style 4
difficulty 15
editor 2:items/armour/boots
def_arch low_boots
Object
title of small poison protection
item_level_art 15
type 99
is_magical 1
resist_poison 12
value 2420
end
#
Allowed !sandals,!leggings_plate,!leggings_chain,!leggings_leather,!leggings_scale
artifact boots_sm_acid
chance 10
t_style 5
difficulty 15
editor 2:items/armour/boots
def_arch low_boots
Object
title of small acid protection
item_level_art 15
type 99
is_magical 1
resist_acid 12
value 2420
end
#
#
Allowed leggings_plate,leggings_chain,leggings_leather,leggings_scale
artifact leggings_sm_fire
chance 10
difficulty 15
t_style 1
def_arch leggings_leather
editor 2:items/armour/boots
Object
title of small fire protection
type 99
item_level_art 15
is_magical 1
resist_fire 15
value 3630
end
#
Allowed leggings_plate,leggings_chain,leggings_leather,leggings_scale
artifact leggings_sm_cold
chance 10
difficulty 15
t_style 2
def_arch leggings_leather
editor 2:items/armour/boots
Object
title of small cold protection
type 99
item_level_art 15
is_magical 1
resist_cold 15
value 3630
end
#
Allowed leggings_plate,leggings_chain,leggings_leather,leggings_scale
artifact leggings_sm_electricity
chance 10
difficulty 15
t_style 3
def_arch leggings_leather
editor 2:items/armour/boots
Object
title of small electricity protection
type 99
item_level_art 15
is_magical 1
resist_electricity 15
value 3630
end
#
Allowed leggings_plate,leggings_chain,leggings_leather,leggings_scale
artifact leggings_sm_poison
chance 10
difficulty 15
t_style 4
def_arch leggings_leather
editor 2:items/armour/boots
Object
item_level_art 15
title of small poison protection
type 99
is_magical 1
resist_poison 15
value 3630
end
#
Allowed leggings_plate,leggings_chain,leggings_leather,leggings_scale
artifact leggings_sm_acid
chance 10
difficulty 15
t_style 5
def_arch leggings_leather
editor 2:items/armour/boots
Object
title of small acid protection
type 99
item_level_art 15
is_magical 1
resist_acid 15
value 3630
end
#
Allowed !sandals,!leggings_plate,!leggings_chain,!leggings_leather,!leggings_scale
artifact boots_med_fire
chance 5
t_style 1
difficulty 25
def_arch low_boots
editor 2:items/armour/boots
Object
title of medium fire protection
item_level_art 25
type 99
is_magical 1
resist_fire 15
value 2662
end
#
Allowed !sandals,!leggings_plate,!leggings_chain,!leggings_leather,!leggings_scale
artifact boots_med_cold
chance 5
t_style 2
difficulty 25
def_arch low_boots
editor 2:items/armour/boots
Object
title of medium cold protection
item_level_art 25
type 99
is_magical 1
resist_cold 15
value 2662
end
#
Allowed !sandals,!leggings_plate,!leggings_chain,!leggings_leather,!leggings_scale
artifact boots_med_elec
chance 5
t_style 3
difficulty 25
def_arch low_boots
editor 2:items/armour/boots
Object
title of medium electricity protection
item_level_art 25
type 99
is_magical 1
resist_electricity 15
value 2662
end
#
Allowed !sandals,!leggings_plate,!leggings_chain,!leggings_leather,!leggings_scale
artifact boots_med_poison
chance 5
t_style 4
difficulty 25
editor 2:items/armour/boots
def_arch low_boots
Object
title of medium poison protection
item_level_art 25
type 99
is_magical 1
resist_poison 15
value 2662
end
#
Allowed !sandals,!leggings_plate,!leggings_chain,!leggings_leather,!leggings_scale
artifact boots_med_acid
chance 5
t_style 5
difficulty 25
editor 2:items/armour/boots
def_arch low_boots
Object
title of medium acid protection
item_level_art 25
type 99
is_magical 1
resist_acid 15
value 2662
end
#
#
Allowed leggings_plate,leggings_chain,leggings_leather,leggings_scale
artifact leggings_med_fire
chance 5
difficulty 25
t_style 1
def_arch leggings_leather
editor 2:items/armour/boots
Object
title of medium fire protection
type 99
item_level_art 25
is_magical 1
resist_fire 20
value 4000
end
#
Allowed leggings_plate,leggings_chain,leggings_leather,leggings_scale
artifact leggings_med_cold
chance 5
difficulty 25
t_style 2
def_arch leggings_leather
editor 2:items/armour/boots
Object
title of medium cold protection
type 99
item_level_art 25
is_magical 1
resist_cold 20
value 4000
end
#
Allowed leggings_plate,leggings_chain,leggings_leather,leggings_scale
artifact leggings_med_electricity
chance 5
difficulty 25
t_style 3
def_arch leggings_leather
editor 2:items/armour/boots
Object
title of medium electricity protection
type 99
item_level_art 25
is_magical 1
resist_electricity 20
value 4000
end
#
Allowed leggings_plate,leggings_chain,leggings_leather,leggings_scale
artifact leggings_med_poison
chance 5
difficulty 25
t_style 4
def_arch leggings_leather
editor 2:items/armour/boots
Object
item_level_art 25
title of medium poison protection
type 99
is_magical 1
resist_poison 20
value 4000
end
#
Allowed leggings_plate,leggings_chain,leggings_leather,leggings_scale
artifact leggings_med_acid
chance 5
difficulty 25
t_style 5
def_arch leggings_leather
editor 2:items/armour/boots
Object
title of medium acid protection
type 99
item_level_art 25
is_magical 1
resist_acid 20
value 4000
end
#
# Weapons
#
#
Allowed all
chance 30
artifact weapon_fools
def_arch sword
editor 2:items/weapon
Object
title of fools
ac -1
dam 3
wc -1
type 15
is_magical 1
cursed_perm 1
cursed 1
value 500
end
#
Allowed all
chance 40
difficulty 5
artifact weapon_min_defense
def_arch sword
editor 2:items/weapon
Object
title of minor defense
ac_add 1
item_level_art 5
type 15
is_magical 1
value 4500
end
#
Allowed all
chance 40
difficulty 5
artifact weapon_min_precision
def_arch sword
editor 2:items/weapon
Object
title of minor precision
item_level_art 5
wc_add 1
type 15
is_magical 1
value 5500
end
#
Allowed all
chance 40
difficulty 5
artifact weapon_min_damage
def_arch sword
editor 2:items/weapon
Object
title of minor damage
dam_add 5
item_level_art 5
type 15
is_magical 1
value 7500
end
#
Allowed all
chance 40
difficulty 2
artifact weapon_min_strength
def_arch sword
editor 2:items/weapon
Object
title of minor strength
item_level_art 2
str 1
type 15
is_magical 1
value 4500
end
#
Allowed all
chance 40
difficulty 2
artifact weapon_min_dexterity
def_arch sword
editor 2:items/weapon
Object
title of minor dexterity
item_level_art 2
dex 1
type 15
is_magical 1
value 4500
end
#
Allowed all
chance 40
difficulty 2
artifact weapon_min_const
def_arch sword
editor 2:items/weapon
Object
title of minor constitution
item_level_art 2
con 1
type 15
is_magical 1
value 4500
end
#
Allowed all
chance 40
difficulty 2
artifact weapon_min_wisdom
def_arch sword
editor 2:items/weapon
Object
title of minor wisdom
item_level_art 2
wis 1
type 15
is_magical 1
value 4500
end
#
Allowed all
chance 40
difficulty 2
artifact weapon_min_int
def_arch sword
editor 2:items/weapon
Object
title of minor intelligence
item_level_art 2
int 1
type 15
is_magical 1
value 4500
end
#
Allowed all
chance 40
difficulty 2
artifact weapon_min_power
def_arch sword
editor 2:items/weapon
Object
title of minor power
item_level_art 2
pow 1
type 15
is_magical 1
value 4500
end
#
Allowed all
chance 40
difficulty 2
artifact weapon_min_charisma
def_arch sword
editor 2:items/weapon
Object
title of minor charisma
item_level_art 2
cha 1
type 15
is_magical 1
value 4500
end
#
Allowed all
chance 40
t_style 1
difficulty 5
artifact weapon_min_fire
def_arch sword
editor 2:items/weapon
Object
title of minor fire
attack_fire 5
item_level_art 5
type 15
is_magical 1
value 5000
end
#
Allowed all
chance 40
t_style 2
difficulty 5
artifact weapon_min_cold
def_arch sword
editor 2:items/weapon
Object
title of minor cold
attack_cold 5
type 15
item_level_art 5
is_magical 1
value 5000
end
#
Allowed all
chance 40
t_style 3
difficulty 5
artifact weapon_min_elec
def_arch sword
editor 2:items/weapon
Object
title of minor electricity
attack_electricity 5
type 15
is_magical 1
item_level_art 5
value 5000
end
#
Allowed all
chance 20
difficulty 11
artifact weapon_less_defense
def_arch sword
editor 2:items/weapon
Object
title of lesser defense
ac_add 2
item_level_art 11
type 15
is_magical 1
value 4950
end
#
Allowed all
chance 20
difficulty 11
artifact weapon_less_precision
def_arch sword
editor 2:items/weapon
Object
title of lesser precision
item_level_art 11
wc_add 2
type 15
is_magical 1
value 6050
end
#
Allowed all
chance 20
difficulty 11
artifact weapon_less_damage
def_arch sword
editor 2:items/weapon
Object
title of lesser damage
dam_add 10
item_level_art 11
type 15
is_magical 1
value 8250
end
#
Allowed all
chance 20
difficulty 7
artifact weapon_less_strength
def_arch sword
editor 2:items/weapon
Object
title of lesser strength
item_level_art 7
str 2
type 15
is_magical 1
value 4950
end
#
Allowed all
chance 20
difficulty 7
artifact weapon_less_dexterity
def_arch sword
editor 2:items/weapon
Object
title of lesser dexterity
item_level_art 7
dex 2
type 15
is_magical 1
value 4950
end
#
Allowed all
chance 20
difficulty 7
artifact weapon_less_const
def_arch sword
editor 2:items/weapon
Object
title of lesser constitution
item_level_art 7
con 2
type 15
is_magical 1
value 4950
end
#
Allowed all
chance 20
difficulty 7
artifact weapon_less_wisdom
def_arch sword
editor 2:items/weapon
Object
title of lesser wisdom
item_level_art 7
wis 2
type 15
is_magical 1
value 4950
end
#
Allowed all
chance 20
difficulty 7
artifact weapon_less_int
def_arch sword
editor 2:items/weapon
Object
title of lesser intelligence
item_level_art 7
int 2
type 15
is_magical 1
value 4950
end
#
Allowed all
chance 20
difficulty 7
artifact weapon_less_power
def_arch sword
editor 2:items/weapon
Object
title of lesser power
item_level_art 7
pow 2
type 15
is_magical 1
value 4950
end
#
Allowed all
chance 20
difficulty 7
artifact weapon_less_charisma
def_arch sword
editor 2:items/weapon
Object
title of lesser charisma
item_level_art 7
cha 2
type 15
is_magical 1
value 4950
end
#
Allowed all
chance 20
t_style 1
difficulty 11
artifact weapon_less_fire
def_arch sword
editor 2:items/weapon
Object
title of lesser fire
attack_fire 10
item_level_art 11
type 15
is_magical 1
value 5500
end
#
Allowed all
chance 20
t_style 2
difficulty 11
artifact weapon_less_cold
def_arch sword
editor 2:items/weapon
Object
title of lesser cold
attack_cold 10
type 15
item_level_art 11
is_magical 1
value 5500
end
#
Allowed all
chance 20
t_style 3
difficulty 11
artifact weapon_less_elec
def_arch sword
editor 2:items/weapon
Object
title of lesser electricity
attack_electricity 10
type 15
is_magical 1
item_level_art 11
value 5500
end
#
Allowed all
chance 10
difficulty 20
artifact weapon_sm_defense
def_arch sword
editor 2:items/weapon
Object
title of small defense
ac_add 3
item_level_art 20
type 15
is_magical 1
value 5500
end
#
Allowed all
chance 10
difficulty 20
artifact weapon_sm_precision
def_arch sword
editor 2:items/weapon
Object
title of small precision
item_level_art 20
wc_add 3
type 15
is_magical 1
value 6500
end
#
Allowed all
chance 10
difficulty 20
artifact weapon_sm_damage
def_arch sword
editor 2:items/weapon
Object
title of small damage
dam_add 15
item_level_art 20
type 15
is_magical 1
value 8500
end
#
Allowed all
chance 10
difficulty 15
artifact weapon_sm_strength
def_arch sword
editor 2:items/weapon
Object
title of small strength
item_level_art 15
str 3
type 15
is_magical 1
value 5500
end
#
Allowed all
chance 10
difficulty 15
artifact weapon_sm_dexterity
def_arch sword
editor 2:items/weapon
Object
title of small dexterity
item_level_art 15
dex 3
type 15
is_magical 1
value 5500
end
#
Allowed all
chance 10
difficulty 15
artifact weapon_sm_const
def_arch sword
editor 2:items/weapon
Object
title of small constitution
item_level_art 15
con 3
type 15
is_magical 1
value 5500
end
#
Allowed all
chance 10
difficulty 15
artifact weapon_sm_wisdom
def_arch sword
editor 2:items/weapon
Object
title of small wisdom
item_level_art 15
wis 3
type 15
is_magical 1
value 5500
end
#
Allowed all
chance 10
difficulty 15
artifact weapon_sm_int
def_arch sword
editor 2:items/weapon
Object
title of small intelligence
item_level_art 15
int 3
type 15
is_magical 1
value 5500
end
#
Allowed all
chance 10
difficulty 15
artifact weapon_sm_power
def_arch sword
editor 2:items/weapon
Object
title of small power
item_level_art 15
pow 3
type 15
is_magical 1
value 5500
end
#
Allowed all
chance 10
difficulty 15
artifact weapon_sm_charisma
def_arch sword
editor 2:items/weapon
Object
title of small charisma
item_level_art 15
cha 3
type 15
is_magical 1
value 5500
end
#
Allowed all
chance 10
t_style 1
difficulty 20
artifact weapon_sm_fire
def_arch sword
editor 2:items/weapon
Object
title of small fire
attack_fire 15
item_level_art 20
type 15
is_magical 1
value 5500
end
#
Allowed all
chance 10
t_style 2
difficulty 20
artifact weapon_sm_cold
def_arch sword
editor 2:items/weapon
Object
title of small cold
attack_cold 15
type 15
item_level_art 20
is_magical 1
value 5500
end
#
Allowed all
chance 10
t_style 3
difficulty 20
artifact weapon_sm_elec
def_arch sword
editor 2:items/weapon
Object
title of small electricity
attack_electricity 15
type 15
is_magical 1
item_level_art 20
value 5500
end
#
Allowed all
chance 5
difficulty 30
artifact weapon_med_defense
def_arch sword
editor 2:items/weapon
Object
title of medium defense
ac_add 4
item_level_art 30
type 15
is_magical 1
value 6000
end
#
Allowed all
chance 5
difficulty 30
artifact weapon_med_precision
def_arch sword
editor 2:items/weapon
Object
title of medium precision
item_level_art 30
wc_add 4
type 15
is_magical 1
value 7000
end
#
Allowed all
chance 5
difficulty 30
artifact weapon_med_damage
def_arch sword
editor 2:items/weapon
Object
title of medium damage
dam_add 20
item_level_art 30
type 15
is_magical 1
value 10500
end
#
Allowed all
chance 5
difficulty 25
artifact weapon_med_strength
def_arch sword
editor 2:items/weapon
Object
title of medium strength
item_level_art 25
str 4
type 15
is_magical 1
value 6500
end
#
Allowed all
chance 5
difficulty 25
artifact weapon_med_dexterity
def_arch sword
editor 2:items/weapon
Object
title of medium dexterity
item_level_art 25
dex 4
type 15
is_magical 1
value 6500
end
#
Allowed all
chance 5
difficulty 25
artifact weapon_med_const
def_arch sword
editor 2:items/weapon
Object
title of medium constitution
item_level_art 25
con 4
type 15
is_magical 1
value 6500
end
#
Allowed all
chance 5
difficulty 25
artifact weapon_med_wisdom
def_arch sword
editor 2:items/weapon
Object
title of medium wisdom
item_level_art 25
wis 4
type 15
is_magical 1
value 6500
end
#
Allowed all
chance 5
difficulty 25
artifact weapon_med_int
def_arch sword
editor 2:items/weapon
Object
title of medium intelligence
item_level_art 25
int 4
type 15
is_magical 1
value 6500
end
#
Allowed all
chance 5
difficulty 25
artifact weapon_med_power
def_arch sword
editor 2:items/weapon
Object
title of medium power
item_level_art 25
pow 4
type 15
is_magical 1
value 6500
end
#
Allowed all
chance 5
difficulty 25
artifact weapon_med_charisma
def_arch sword
editor 2:items/weapon
Object
title of medium charisma
item_level_art 25
cha 4
type 15
is_magical 1
value 6500
end
#
Allowed all
chance 5
t_style 1
difficulty 30
artifact weapon_med_fire
def_arch sword
editor 2:items/weapon
Object
title of medium fire
attack_fire 20
item_level_art 30
type 15
is_magical 1
value 7000
end
#
Allowed all
chance 5
t_style 2
difficulty 30
artifact weapon_med_cold
def_arch sword
editor 2:items/weapon
Object
title of medium cold
attack_cold 20
type 15
item_level_art 30
is_magical 1
value 7000
end
#
Allowed all
chance 5
t_style 3
difficulty 30
artifact weapon_med_elec
def_arch sword
editor 2:items/weapon
Object
title of medium electricity
attack_electricity 20
type 15
is_magical 1
item_level_art 30
value 7000
end
#
#
# Books
#
Allowed book
chance 100
difficulty 1
artifact book_blue
def_arch book
editor 2:items/readable
Object
value 16
type 8
item_quality 85
face book_blue.101
end
#
Allowed book
chance 100
difficulty 1
artifact book_gray
def_arch book
editor 2:items/readable
Object
value 17
type 8
item_quality 85
face book_gray.101
end
#
#
Allowed book
chance 100
difficulty 1
artifact book_green
def_arch book
editor 2:items/readable
Object
value 17
type 8
item_quality 85
face book_green.101
end
#
Allowed book
chance 100
difficulty 1
artifact book_light_blue
def_arch book
editor 2:items/readable
Object
value 17
type 8
item_quality 85
face book_light_blue.101
end
#
#
Allowed book
chance 100
difficulty 1
artifact book_orange
def_arch book
editor 2:items/readable
Object
value 17
type 8
item_quality 85
face book_orange.101
end
#
#
Allowed book
chance 100
difficulty 1
artifact book_pink
def_arch book
editor 2:items/readable
Object
value 17
type 8
item_quality 85
face book_pink.101
end
#
#
Allowed book
chance 100
difficulty 1
artifact book_red
def_arch book
editor 2:items/readable
Object
value 17
type 8
item_quality 85
face book_red.101
end
#
#
Allowed tome
chance 100
difficulty 1
artifact tome_red
def_arch tome
editor 2:items/readable
Object
value 22
type 8
item_quality 85
face tome_red.101
end
#
Allowed tome
chance 100
difficulty 1
artifact tome_black
def_arch tome
editor 2:items/readable
Object
value 22
type 8
item_quality 85
face tome_black.101
end
#
Allowed tome
chance 100
difficulty 1
artifact tome_blue
def_arch tome
editor 2:items/readable
Object
value 22
type 8
item_quality 85
face tome_blue.101
end
#
Allowed tome
chance 100
difficulty 1
artifact tome_cloth
def_arch tome
editor 2:items/readable
Object
value 22
type 8
item_quality 85
face tome_cloth.101
end
#
Allowed tome
chance 100
difficulty 1
artifact tome_gray
def_arch tome
editor 2:items/readable
Object
value 22
type 8
item_quality 85
face tome_gray.101
end
#
Allowed tome
chance 100
difficulty 1
artifact tome_leather
def_arch tome
editor 2:items/readable
Object
value 22
type 8
item_quality 85
face tome_leather.101
end
#
Allowed tome
chance 100
difficulty 1
artifact tome_light_blue
def_arch tome
editor 2:items/readable
Object
value 22
type 8
item_quality 85
face tome_light_blue.101
end
#
Allowed tome
chance 100
difficulty 1
artifact tome_light_brown
def_arch tome
editor 2:items/readable
Object
value 22
type 8
item_quality 85
face tome_light_brown.101
end
#
Allowed tome
chance 100
difficulty 1
artifact tome_turquoise
def_arch tome
editor 2:items/readable
Object
value 22
type 8
item_quality 85
face tome_turquoise.101
end
#
Allowed tome
chance 100
difficulty 1
artifact tome_cyan
def_arch tome
editor 2:items/readable
Object
value 22
type 8
item_quality 85
face tome_cyan.101
end
#
Allowed tome
chance 100
difficulty 1
artifact tome_orange
def_arch tome
editor 2:items/readable
Object
value 22
type 8
item_quality 85
face tome_orange.101
end
#
Allowed tome
chance 100
difficulty 1
artifact tome_pink
def_arch tome
editor 2:items/readable
Object
value 22
type 8
item_quality 85
face tome_pink.101
end
#
Allowed tome
chance 100
difficulty 1
artifact tome_plaid
def_arch tome
editor 2:items/readable
Object
value 22
type 8
item_quality 85
face tome_plaid.101
end
#
Allowed tome
chance 100
difficulty 1
artifact tome_tan
def_arch tome
editor 2:items/readable
Object
value 22
type 8
item_quality 85
face tome_tan.101
end
#
Allowed tome
chance 100
difficulty 1
artifact tome_vellum
def_arch tome
editor 2:items/readable
Object
value 22
type 8
item_quality 85
face tome_vellum.101
end
#
Allowed tome
chance 100
difficulty 1
artifact tome_violet
def_arch tome
editor 2:items/readable
Object
value 22
type 8
item_quality 85
face tome_violet.101
end
#
#
# Rings
#
# Rings are handled special. 
# Default arch ring is ring_generic... Normal
# artifact ring generation use this ring to get
# for example a "ring of ice".
# Is no special ring generated, we call the dummy ring
# ring_normal from this file (its a Allowed none) and
# grap us one fo the generic generated rings.
# this will change "tin ring_generic" to a other material
# value and/or face. We use this file to get use the difficulty
# and all power of the artifact generation instead of copy it
# hardcoded in treasure.c.
# After we got a altered ring, we use the set_magic functions to insert
# special powers.
#
# dummy ring - read above.
# 
Allowed none
chance 100
artifact ring_normal
def_arch ring_generic
editor 3:items/talisman/rings
Object
value 4250
type 70
end
# generic rings
#
Allowed ring_normal
chance 100
difficulty 1
artifact ring_brass
def_arch ring_generic
editor 2:items/talisman/rings
Object
value 4500
type 70
item_quality 0
material_real 642
face ring_tin.101
end
#
Allowed ring_normal
chance 90
difficulty 1
artifact ring_copper
def_arch ring_generic
editor 2:items/talisman/rings
Object
value 4650
type 70
item_quality 0
material_real 643
face ring_copper.101
end
#
Allowed ring_normal
chance 80
difficulty 1
artifact ring_bronze
def_arch ring_generic
editor 2:items/talisman/rings
Object
value 4750
type 70
item_quality 0
material_real 644
face ring_bronze.101
end
#
Allowed ring_normal
chance 70
difficulty 3
artifact ring_silver
def_arch ring_generic
editor 2:items/talisman/rings
Object
value 4950
type 70
item_quality 0
material_real 645
face ring_silver.101
end
#
Allowed ring_normal
chance 50
difficulty 8
artifact ring_gold
def_arch ring_generic
editor 2:items/talisman/rings
Object
value 5150
type 70
item_quality 0
material_real 646
face ring_gold.101
end
#
Allowed ring_normal
chance 40
difficulty 20
artifact ring_platinum
def_arch ring_generic
editor 2:items/talisman/rings
Object
value 5250
type 70
item_quality 0
material_real 647
face ring_platinum.101
end
#
Allowed ring_normal
chance 30
difficulty 25
artifact ring_adamant
def_arch ring_generic
editor 2:items/talisman/rings
Object
value 5550
type 70
item_quality 0
material 256
material_real 515
face ring_adamant.101
end
#
Allowed ring_normal
chance 20
difficulty 50
artifact ring_mithril
def_arch ring_generic
editor 2:items/talisman/rings
Object
value 5750
type 70
item_quality 0
material 256
material_real 514
face ring_mithril.101
end
#
# Here are the real artifact rings
#
# Ring of Thieves
#
Allowed ring_generic
chance 15
difficulty 22
artifact ring_thieves
def_arch ring_generic
editor 1:items/talisman/rings
Object
title of Thieves
value 250000
type 70
item_level_art 22
material 256
is_named 1
item_quality 100
item_condition 100
material_real 0
face ring_silver_black.101
inv_face ring_green_inv.101
exp 5
is_magical 1
dex 3
stealth 1
can_see_in_dark 1
end
#
#Ring of Ice
#
Allowed ring_generic
chance 20
difficulty 12
artifact ring_ice
def_arch ring_generic
editor 1:items/talisman/rings
Object
is_magical 1
title of Ice
item_level_art 12
item_quality 100
item_condition 100
material 256
material_real 0
is_named 1
face ring_silver_white.101
type 70
value 225000
resist_cold 30
path_attuned 4
msg
This elemental ring is one of those made at 
the Guild of Magicks by the powerful wizards 
who survived the ancient war of the elementals.
The wielder is surrounded by a thin, almost 
invisible, globe of warmth; which protects 
against cold.  It also grants its holder 
greater control of cold spells.
endmsg
end
#
Allowed ring_generic
chance 20
difficulty 12
artifact ring_fire
def_arch ring_generic
editor 1:items/talisman/rings
Object
title of Fire
item_quality 100
item_condition 100
material 256
item_level_art 12
is_named 1
material_real 0
face ring_silver_red.101
is_magical 1
type 70
value 225000
resist_fire 30
path_attuned 4
msg
This elemental ring is one of those 
made at the Guild of Magicks by the 
powerful wizards who survived the 
ancient war of the elementals.
The wielder is surrounded by a thin, 
almost invisible, globe of coolness; 
which protects against heat.  It also
grants the holder greater facility 
with fire spells.
endmsg
end
#
Allowed ring_generic
chance 20
difficulty 12
artifact ring_storm
def_arch ring_generic
editor 1:items/talisman/rings
Object
title of Storm
material 256
item_level_art 12
item_quality 100
item_condition 100
material_real 0
is_named 1
face ring_silver_blue.101
type 70
is_magical 1
value 225000
resist_electricity 30
path_attuned 4
msg
This elemental ring is one of those made 
at the Guild of Magicks by the powerful 
wizards who survived the ancient war 
of the elementals.  The wielder is 
surrounded by a thin, almost invisible, 
grid of force; which protects against 
electricity.  It also gives facility
with electricity spells.
endmsg
end
#
#
Allowed ring_generic
chance 10
difficulty 35
artifact ring_storm_great
def_arch ring_generic
editor 1:items/talisman/rings
Object
title of Greater Storm
material 256
item_level_art 35
item_quality 100
item_condition 100
is_named 1
material_real 0
face ring_silver_blue.101
inv_face ring_storm.101
type 70
is_magical 1
value 325000
attack_electricity 20
resist_electricity 30
path_attuned 4
msg
This elemental ring is one of those more
rare ones made at the Guild of Magicks by 
the powerful  wizards who survived the 
ancient war of the elementals.  The wielder
is  surrounded by a thin, almost invisible, 
grid of force; which protects against 
electricity and allows electric attacks.
It also gives facility with electricity 
spells and resists.
endmsg
end
#
#
Allowed ring_generic
chance 10
difficulty 18
artifact ring_yordan
def_arch ring_generic
editor 1:items/talisman/rings
Object
title of Yordan
face ring_gold_white.101
item_level_art 18
is_named 1
item_quality 100
item_condition 100
material 256
material_real 0
type 70
value 225000
wc 2
is_magical 1
dex 2
dam 20
end
#
Allowed ring_generic
chance 40
difficulty 7
artifact ring_ghost
def_arch ring_generic
editor 1:items/talisman/rings
Object
title of the Ghost
face ring_gold_white.101
item_level_art 7
item_quality 90
item_condition 90
is_named 1
material 256
material_real 0
type 70
value 125000
wc 1
is_magical 1
dex 1
dam 10
end
#
#
Allowed ring_generic
chance 50
artifact ring_woe
def_arch ring_generic
editor 2:items/talisman/rings
Object
title of Woe
type 70
cursed_perm 1
cursed 1
is_magical 1
str -1
con -1
dex -1
wis -1
int -1
pow -1
cha -1
value 50
end
#
Allowed ring_generic
chance 25
artifact ring_woe1
def_arch ring_generic
editor 2:items/talisman/rings
Object
title of Woe
type 70
material 256
material_real 0
face ring_silver_red.101
cursed_perm 1
cursed 1
is_magical 1
str -1
con -1
dex -1
wis -1
int -1
pow -1
cha -1
value 50
end
#
Allowed ring_generic
chance 25
artifact ring_woe2
def_arch ring_generic
editor 2:items/talisman/rings
Object
title of Woe
type 70
face ring_silver_blue.101
cursed_perm 1
cursed 1
material 256
material_real 0
is_magical 1
str -1
con -1
dex -1
wis -1
int -1
pow -1
cha -1
value 50
end
#
Allowed ring_generic
chance 25
artifact ring_woe3
def_arch ring_generic
editor 2:items/talisman/rings
Object
title of Woe
type 70
face ring_silver_black.101
cursed_perm 1
cursed 1
material 256
material_real 0
is_magical 1
str -1
con -1
dex -1
wis -1
int -1
pow -1
cha -1
value 50
end
#
# horns
#
Allowed all
chance 80
artifact horn_normal
def_arch horn
editor 2:items/magic_tools/horn
Object
type 35
end
Allowed all
chance 20
artifact horn_fools
def_arch horn
editor 2:items/magic_tools/horn
Object
title of fools
type 35
sp -81
hp -10
maxhp -10
is_magical 1
level 1
value 50
int -2
damned_perm 1
damned 1
end
#
#
#Amulets!
#
Allowed all
chance 15
difficulty 10
artifact amulet_shielding
def_arch amulet_generic
editor 2:items/talisman/amulets
Object
title of minor shielding
face amulet_lif.101
is_magical 1
item_level_art 10
resist_impact 20
resist_slash 20
resist_pierce 20
resist_cleave 20
type 39
value 60000
end

Allowed all
chance 10
difficulty 80
artifact amulet_divinity
def_arch amulet_generic
editor 2:items/talisman/amulets
Object
title of divinity
face amulet_lif.101
ac_add 1
item_level 70
item_skill 6
lifesave 1
wis 3
grace 15
maxgrace 80
path_attuned 3
path_denied 1040
resist_corruption 10
type 39
value 145931
end

#
#
# Arrows/Missiles
#
Allowed all
chance 250
artifact missile_inaccuracy
def_arch arrow
editor 2:items/weapon/missile
Object
title of inaccuracy
type 13
is_magical 1
wc_add -7
cursed_perm 1
cursed 1
end
#
Allowed all
chance 100
difficulty 5
artifact missile_accuracy
def_arch arrow
editor 2:items/weapon/missile
Object
title of accuracy
type 13
is_magical 1
value 50
wc_add 7
dam_add 10
end
#
Allowed all
chance 85
difficulty 20
artifact missile_poison_imbued
def_arch arrow
editor 2:items/weapon/missile
Object
title of poison
value 400
attack_poison 8
type 13
end
#
Allowed all
chance 15
difficulty 15
artifact missile_slaying
editor 2:items/weapon/missile
def_arch arrow
Object
title of slay
value 450
type 13
is_magical 1
slaying none
dam_add 10
end
#
#
Allowed all
chance 7
difficulty 25
artifact missile_assassin
editor 2:items/weapon/missile
def_arch arrow
Object
title of assassinating
slaying none
msg
These missiles are inscribed with 
powerful runes for the bane of 
their victims.
endmsg
value 850
type 13
wc_add 4
is_assassin 1
is_magical 1
dam_add 10
end
#
#
# Bows
#
Allowed all
chance 10
artifact range_accuracy
def_arch bow
editor 2:items/weapon/missile
Object Accuracy
title of accuracy
type 14
value 5500
is_magical 1
weight 80
wc_add 4
end
# Scrolls 
#
#
Allowed all
chance 30
artifact scroll_firestorm
difficulty 3
t_style 1
def_arch scroll_generic
editor 3:items/spells/scrolls
Object
level 1
inv_face scroll_fire.101
sp 0
type 111
is_magical 1
value 25
end
#
Allowed all
chance 30
artifact scroll_icestorm
difficulty 3
t_style 2
def_arch scroll_generic
editor 3:items/spells/scrolls
Object
level 1
sp 1
inv_face scroll_ice.101
type 111
is_magical 1
value 25
end
#
Allowed all
chance 40
artifact scroll_min_heal
difficulty 1
def_arch scroll_generic
editor 3:items/spells/scrolls
Object
level 1
inv_face scroll_heal.101
sp 2
type 111
is_magical 1
value 27
end
#
Allowed all
chance 35
artifact scroll_str_self
difficulty 1
def_arch scroll_generic
editor 3:items/spells/scrolls
Object
level 1
inv_face scroll_str.101
sp 5
type 111
is_magical 1
value 23
end
#
Allowed all
chance 25
artifact scroll_identify
difficulty 4
def_arch scroll_generic
editor 3:items/spells/scrolls
Object
level 1
inv_face scroll_identify.101
sp 6
type 111
is_magical 1
value 28
end
#
Allowed all
chance 40
artifact scroll_dmagic
difficulty 1
def_arch scroll_generic
editor 3:items/spells/scrolls
Object
level 1
inv_face scroll_detect.101
sp 7
type 111
is_magical 1
value 23
end
#
Allowed all
chance 40
artifact scroll_dcurse
difficulty 3
def_arch scroll_generic
editor 3:items/spells/scrolls
Object
inv_face scroll_detect.101
level 1
sp 8
type 111
is_magical 1
value 23
end
#
Allowed all
chance 25
artifact scroll_rem_curse
difficulty 5
def_arch scroll_generic
editor 3:items/spells/scrolls
Object
level 1
inv_face scroll_remove.101
sp 9
type 111
is_magical 1
value 27
end
#
Allowed all
chance 20
artifact scroll_rem_damn
difficulty 6
def_arch scroll_generic
editor 3:items/spells/scrolls
Object
level 1
sp 10
inv_face scroll_remove.101
type 111
is_magical 1
value 30
end
#
Allowed all
chance 35
artifact scroll_cause_lwound
difficulty 2
def_arch scroll_generic
editor 3:items/spells/scrolls
Object
inv_face scroll_wound.101
level 1
sp 11
type 111
is_magical 1
value 20
end
#
# Potions (incl. dusts and balms)  
#
#
Allowed potion_generic
chance 40
artifact potion_minor_res_fire
difficulty 3
t_style 1
def_arch potion_generic
editor 3:items/spells/potions
Object
title of minor fire resistance
face potion_red.101
inv_face potionstr.101
level 1
food 2
type 5
resist_fire 25
is_magical 1
last_eat -1
value 145
end
#
Allowed potion_generic
chance 40
artifact potion_minor_res_cold
t_style 2
difficulty 3
def_arch potion_generic
editor 3:items/spells/potions
Object
title of minor cold resistance
inv_face potioncon.101
level 1
type 5
resist_cold 25
food 2
is_magical 1
last_eat -1
value 135
end
#
Allowed potion_generic
chance 40
t_style 3
artifact potion_minor_res_elec
difficulty 3
def_arch potion_generic
editor 3:items/spells/potions
Object
title of minor electricity resistance
inv_face potioncon.101
level 1
food 2
type 5
resist_electricity 25
is_magical 1
last_eat -1
value 135
end
#
Allowed potion_generic
chance 40
t_style 4
artifact potion_minor_res_poison
difficulty 3
def_arch potion_generic
editor 3:items/spells/potions
Object
title of minor poison resistance
inv_face potioncon.101
level 1
food 2
type 5
resist_poison 25
is_magical 1
last_eat -1
value 135
end
#
Allowed potion_generic
chance 40
t_style 5
artifact potion_minor_res_acid
difficulty 3
def_arch potion_generic
editor 3:items/spells/potions
Object
title of minor acid resistance
inv_face potioncon.101
level 1
type 5
food 2
resist_acid 25
is_magical 1
last_eat -1
value 135
end
#
Allowed potion_generic
chance 40
artifact potion_minor_strength
difficulty 3
def_arch potion_generic
editor 3:items/spells/potions
Object
title of minor strength
face potion_red.101
inv_face potionstr.101
level 1
type 5
str 2
is_magical 1
last_eat -1
value 135
end
#
Allowed potion_generic
chance 40
artifact potion_minor_dex
difficulty 3
def_arch potion_generic
editor 3:items/spells/potions
Object
title of minor dexterity
face potion_yellow.101
inv_face potiondex.101
level 1
type 5
dex 2
is_magical 1
last_eat -1
value 135
end
#
Allowed potion_generic
chance 40
artifact potion_minor_con
difficulty 3
def_arch potion_generic
editor 3:items/spells/potions
Object
title of minor constitution
inv_face potioncon.101
level 1
type 5
con 2
is_magical 1
last_eat -1
value 135
end
#
Allowed potion_generic
chance 40
artifact potion_evil_liquid
difficulty 3
def_arch potion_generic
editor 3:items/spells/potions
Object
title of evil liquid
face potion_grey.101
inv_face potionwis.101
level 1
type 5
dex -2
str -2
pow -2
con -2
resist_poison -50
resist_acid -50
is_magical 1
last_eat -1
value 35
end
#
Allowed potion_generic
chance 20
artifact potion_minor_res
difficulty 3
def_arch potion_generic
editor 3:items/spells/potions
Object
title of minor restoration
face potion_grey.101
inv_face potionwis.101
level 1
type 5
is_magical 1
last_eat 1
value 25
end
#
Allowed potion_generic
chance 15
artifact potion_improve
difficulty 5
def_arch potion_generic
editor 3:items/spells/potions
Object
title of improvement
inv_face potionimp.101
level 1
is_animated 1
anim_speed 1
animation potionimp
speed 1
type 5
is_magical 1
last_eat 2
value 5000
end
#
Allowed potion_generic
chance 30
artifact potion_firestorm
def_arch potion_generic
editor 3:items/spells/potions
Object
title of firestorm
face potion_red.101
inv_face potionfir.101
level 1
is_animated 1
anim_speed 1
animation potionfir
speed 1
is_magical 1
sub_type 138
type 5
value 170
sp 0
end
#
Allowed potion_generic
chance 30
artifact potion_freezing
def_arch potion_generic
editor 3:items/spells/potions
Object
title of freezing
inv_face potioncol.101
level 1
is_animated 1
anim_speed 1
animation potioncol
speed 1
type 5
is_magical 1
sub_type 138
sp 1
value 170
end
#
Allowed potion_generic
chance 35
artifact potion_cure_sickness
def_arch potion_generic
editor 3:items/spells/potions
Object
title of cure sickness
stand_still 1
face potion_red.101
inv_face potionhea.101
is_magical 1
level 1
type 5
sp 3
value 170
end
#
Allowed potion_generic
chance 35
artifact potion_cure_illness
def_arch potion_generic
editor 3:items/spells/potions
Object
title of cure illness
level 1
stand_still 1
type 5
face potion_orange.101
inv_face potioninv.101
is_magical 1
sp 4
value 170
end
#
# - balms
#
Allowed balm_generic
chance 40
artifact balm_first_aid
def_arch balm_generic
editor 3:items/spells
Object
title of first aid
is_magical 1
level 1
type 5
value 170
sp 2
end
#
#
# SPECIAL AREA 
# All items with <Allowed none> are excluded from masking
# Define here unique items
#
# age force setting for player classes
#
Allowed none
chance 1
artifact age_force_human
def_arch age_force
editor 0
Object
title human age force (artifacts generic)
# we start at age 21
hp 21
# this is our max age 
# we count as "aged" if we are older as 60% of the max age
maxhp 80
# we are not unnatural aged by default
sp   0
# our permanent (real) age was changed by 0 years by magic or higher forces
grace  0
end
#
Allowed none
chance 1
artifact age_force_half_elf
def_arch age_force
editor 0
Object
title half-elf age force (artifacts generic)
hp 21
maxhp 100
sp   0
grace  0
end
#
Allowed none
chance 1
artifact age_force_elf
def_arch age_force
editor 0
Object
title elf age force (artifacts generic)
hp 21
maxhp 100
sp   0
grace  0
end
#
Allowed none
chance 1
artifact age_force_dwarf
def_arch age_force
editor 0
Object
title dwarf age force (artifacts generic)
hp 21
maxhp 100
sp   0
grace  0
end
#
Allowed none
chance 1
artifact age_force_ogre
def_arch age_force
editor 0
Object
title ogre age force (artifacts generic)
hp 21
maxhp 100
sp   0
grace  0
end
#
#
Allowed none
chance 1
artifact arrow_sys
def_arch arrow
editor 1:items/weapon/missile/sys
Object
race missile_sys
identified 1
sys_object 1
end
Allowed none
chance 1
artifact bolt_sys
def_arch bolt
editor 1:items/weapon/missile/sys
Object
race missile_sys
identified 1
sys_object 1
end
Allowed none
chance 1
artifact sstone_sys
def_arch sstone
editor 1:items/weapon/missile/sys
Object
race missile_sys
identified 1
sys_object 1
end
Allowed none
chance 1
artifact t_axe_sys
def_arch t_axe
editor 1:items/weapon/missile/sys
Object
race rock_sys
identified 1
sys_object 1
end
Allowed none
chance 1
artifact t_hammer_sys
def_arch t_hammer
editor 1:items/weapon/missile/sys
Object
race rock_sys
identified 1
sys_object 1
end
Allowed none
chance 1
artifact t_dagger_sys
def_arch t_dagger
editor 1:items/weapon/missile/sys
Object
race rock_sys
identified 1
sys_object 1
end
Allowed none
chance 1
artifact t_star_sys
def_arch t_star
editor 1:items/weapon/missile/sys
Object
race rock_sys
identified 1
sys_object 1
end
Allowed none
chance 1
artifact starsdavid2_sys
def_arch starsdavid2
editor 1:items/weapon/missile/sys
Object
race rock_sys
identified 1
sys_object 1
end
Allowed none
chance 1
artifact t_rock_sys
def_arch t_rock
editor 1:items/weapon/missile/sys
Object
race rock_sys
identified 1
sys_object 1
end
Allowed none
chance 1
artifact t_boulder_sys
def_arch t_boulder
editor 1:items/weapon/missile/sys
Object
race rock_sys
identified 1
sys_object 1
end
Allowed none
chance 1
artifact t_lboulder_sys
def_arch t_lboulder
editor 1:items/weapon/missile/sys
Object
race rock_sys
identified 1
sys_object 1
end
Allowed none
chance 1
artifact snowball_sys
def_arch snow_ball
editor 1:items/weapon/missile/sys
Object
race rock_sys
identified 1
sys_object 1
end
Allowed none
chance 1
artifact snowball_big_sys
def_arch snow_ball2
editor 1:items/weapon/missile/sys
Object
race rock_sys
identified 1
sys_object 1
end
# outdated poison food masks - changed with food patch
Allowed none
chance 1
artifact food_poison
def_arch food_generic
editor 2:items/organic
Object
title of poison
end
#
Allowed none
chance 1
artifact food_poison2
def_arch food_generic
editor 2:items/organic
Object
title of hideous poison
end
#
# Temporary Artifacts
# These entries are only here to keep certain items in the game
# which would otherwise vanish to singularities.
# They should be removed for 1.0 when they aren't
# needed anymore.
#
Allowed none
chance 1
artifact gauntlet_pow
def_arch gauntlets
editor 2:items/armour/gauntlets
Object
title of minor power
pow 1
item_level_art 2
type 100
is_magical 1
value 5000
end
#
Allowed none
chance 1
artifact gauntlet_wis
def_arch gauntlets
editor 2:items/armour/gauntlets
Object
title of minor wisdom
wis 1
item_level_art 2
type 100
is_magical 1
value 5000
end
#
Allowed none
chance 1
artifact gauntlet_cha
def_arch gauntlets
editor 2:items/armour/gauntlets
Object
title of minor charisma
item_level_art 2
cha 1
type 100
is_magical 1
value 5000
end
#
Allowed none
chance 1
artifact gauntlet_precision
def_arch gauntlets
editor 2:items/armour/gauntlets
Object
title of precision
face gauntlets_gold.101
wc 2
item_level_art 8
type 100
is_magical 1
value 82500
end
#
Allowed none
chance 1
artifact bracers_dex
def_arch bracers_ac
editor 2:items/armour/bracers
Object
title of minor dexterity
face bracers2.101
item_level_art 2
type 104
dex 1
is_magical 1
value 5000
end
#
Allowed none
chance 1
artifact bracers_str
def_arch bracers_ac
editor 2:items/armour/bracers
Object
title of minor strength
face bracers3.101
item_level_art 2
str 1
type 104
is_magical 1
value 5000
end
#
Allowed none
chance 1
artifact bracers_con
def_arch bracers_ac
editor 2:items/armour/bracers
Object
title of minor constitution
face bracers4.101
item_level_art 2
con 1
type 104
is_magical 1
value 5000
end
#
Allowed none
chance 1
artifact bracers_int
def_arch bracers_ac
editor 2:items/armour/bracers
Object
title of minor intelligence
face bracers5.101
item_level_art 2
int 1
type 104
is_magical 1
value 5000
end
#
Allowed none
chance 1
artifact bracers_cha
def_arch bracers_ac
editor 2:items/armour/bracers
Object
title of minor charisma
face bracers5.101
item_level_art 2
cha 1
type 104
is_magical 1
value 5000
end
#
Allowed none
chance 1
artifact bracers_pow
def_arch bracers_ac
editor 2:items/armour/bracers
Object
title of minor power
face bracers6.101
item_level_art 2
pow 1
type 104
is_magical 1
value 5000
end
#
Allowed none
chance 1
artifact bracers_wis
def_arch bracers_ac
editor 2:items/armour/bracers
Object
title of minor wisdom
face bracers6.101
item_level_art 2
wis 1
type 104
is_magical 1
value 5000
end
#
Allowed none
chance 1
artifact weapon_defense
def_arch sword
editor 2:items/weapon
Object
title of minor defense
ac_add 1
item_level_art 3
type 15
is_magical 1
value 4500
end
#
Allowed none
chance 1
artifact weapon_accuracy
def_arch sword
editor 2:items/weapon
Object
title of minor precision
wc_add 1
type 15
item_level_art 3
is_magical 1
value 5500
end
#
Allowed none
chance 1
artifact weapon_precision
def_arch sword
editor 2:items/weapon
Object
title of minor precision
item_level_art 7
wc_add 1
type 15
is_magical 1
value 5500
end
#
Allowed none
chance 1
artifact weapon_damage
def_arch sword
editor 2:items/weapon
Object
title of minor damage
dam_add 10
item_level_art 5
type 15
is_magical 1
value 7500
end
#
Allowed none
chance 1
artifact weapon_strength
def_arch sword
editor 2:items/weapon
Object
title of minor strength
str 1
type 15
is_magical 1
value 4500
end
#
Allowed none
chance 1
artifact weapon_dexterity
def_arch sword
editor 2:items/weapon
Object
title of minor dexterity
dex 1
type 15
is_magical 1
value 4500
end
#
Allowed none
chance 1
artifact weapon_const
def_arch sword
editor 2:items/weapon
Object
title of minor constitution
con 1
type 15
is_magical 1
value 4500
end
#
Allowed none
chance 1
artifact weapon_wisdom
def_arch sword
editor 2:items/weapon
Object
title of minor wisdom
wis 1
type 15
is_magical 1
value 4500
end
#
Allowed none
chance 1
artifact weapon_int
def_arch sword
editor 2:items/weapon
Object
title of minor intelligence
int 1
type 15
is_magical 1
value 4500
end
#
Allowed none
chance 1
artifact weapon_power
def_arch sword
editor 2:items/weapon
Object
title of minor power
pow 1
type 15
is_magical 1
value 4500
end
#
Allowed none
chance 1
artifact weapon_charisma
def_arch sword
editor 2:items/weapon
Object
title of minor charisma
cha 1
type 15
is_magical 1
value 4500
end
