nwn-lib 0.4.10.1 → 0.4.11

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG CHANGED
@@ -308,3 +308,18 @@ Bernhard Stoeckner <elven@swordcoast.net> (2):
308
308
  0.4.10.1-rel
309
309
 
310
310
  Late night Rakefile fun.
311
+
312
+ === 0.4.11
313
+ Bernhard Stoeckner <elven@swordcoast.net> (7):
314
+ Gff::Struct.add_*: support default values for new fields
315
+ Gff::YAML: fix setting proper .element for direct child-structs
316
+ specs: run without debug logs, un-breaks bin/* specs
317
+ Field.unbox! always takes parent parameter
318
+ Gff::Struct: API chg, path w/o data_type, data_type changes
319
+ Gff::JSON: specs
320
+ Gff::Kivinen: rename kivinen_format -> format, add spec
321
+ 0.4.11-rel
322
+
323
+ A mostly-maintenance release with some API changes. The most invasive changes
324
+ are some method renames. New are some sane default values for Struct#add_*,
325
+ and a few more specs. YAML now sets correct .element references.
data/Rakefile CHANGED
@@ -9,7 +9,7 @@ include FileUtils
9
9
  # Configuration
10
10
  ##############################################################################
11
11
  NAME = "nwn-lib"
12
- VERS = "0.4.10.1"
12
+ VERS = "0.4.11"
13
13
  CLEAN.include ["**/.*.sw?", "pkg", ".config", "rdoc", "coverage"]
14
14
  RDOC_OPTS = ["--quiet", "--line-numbers", "--inline-source", '--title', \
15
15
  'nwn-lib: a ruby library for accessing NWN resource files', \
data/lib/nwn/gff.rb CHANGED
@@ -112,8 +112,8 @@ module NWN
112
112
  end
113
113
 
114
114
  require 'nwn/gff/struct'
115
+ require 'nwn/gff/cexolocstr'
115
116
  require 'nwn/gff/field'
116
117
  require 'nwn/gff/list'
117
- require 'nwn/gff/cexolocstr'
118
118
  require 'nwn/gff/reader'
119
119
  require 'nwn/gff/writer'
data/lib/nwn/gff/field.rb CHANGED
@@ -12,6 +12,27 @@
12
12
  #
13
13
  # field['value'], field['type'], field['str_ref'], field['label']
14
14
  module NWN::Gff::Field
15
+
16
+ # The default values of fields.
17
+ DEFAULT_VALUES = {
18
+ :byte => 0,
19
+ :char => 0,
20
+ :word => 0,
21
+ :short => 0,
22
+ :dword => 0,
23
+ :int => 0,
24
+ :dword64 => 0,
25
+ :int64 => 0,
26
+ :float => 0.0,
27
+ :double => 0.0,
28
+ :cexostr => '',
29
+ :resref => '',
30
+ :cexolocstr => {}.extend(NWN::Gff::CexolocstrValue),
31
+ :void => '',
32
+ :struct => NWN::Gff::Struct.new,
33
+ :list => [],
34
+ }
35
+
15
36
  # The parent struct.
16
37
  # This is set internally by Gff::Reader on load.
17
38
  attr_accessor :parent
@@ -73,7 +94,7 @@ module NWN::Gff::Field
73
94
  parent_path + "[#{idx}]/" + field_label
74
95
  else
75
96
  parent_path + "/" + field_label
76
- end
97
+ end.gsub(%r{/+}, "/")
77
98
  end
78
99
 
79
100
  # This extends this field object and its' value with the
@@ -197,7 +218,7 @@ module NWN::Gff::Field
197
218
 
198
219
  # Deep-unboxes a Hash, e.g. iterating down, converting all strings
199
220
  # from the native charset.
200
- def self.unbox! element, parent_label, parent = nil
221
+ def self.unbox! element, parent_label, parent
201
222
  element.extend(NWN::Gff::Field)
202
223
  element.field_label = parent_label
203
224
  element.parent = parent
@@ -3,16 +3,6 @@
3
3
  module NWN::Gff::Struct
4
4
  DEFAULT_DATA_VERSION = "V3.2"
5
5
 
6
- # Each Gff::Struct has a data_type, which describes the type of data the struct contains.
7
- # For top-level structs, this equals the data type written to the GFF file ("UTI",
8
- # for example); for sub structures, this is usually the top-level data type + the
9
- # field label ("UTI/PropertiesList", for example).
10
- #
11
- # This is set for completeness' sake, but is not required to save the struct.
12
- # Scripts could use this, for example, to reliably re-attach a Item within
13
- # /ItemList/ somewhere else, or export it as .uti.
14
- attr_accessor :data_type
15
-
16
6
  # The file version. Usually "V3.2" for root structs,
17
7
  # and nil for sub-structs.
18
8
  attr_accessor :data_version
@@ -28,18 +18,35 @@ module NWN::Gff::Struct
28
18
  # point to this object).
29
19
  attr_reader :element
30
20
 
31
- # Returns the path to this struct (which is usually __data_type)
32
21
  def path
33
22
  if @element
34
23
  @element.path
35
24
  else
36
- @data_type.to_s
25
+ "/"
37
26
  end
38
27
  end
39
28
 
29
+ # Each Gff::Struct has a data_type, which describes the type of data the struct contains.
30
+ # For top-level structs, this equals the data type written to the GFF file ("UTI",
31
+ # for example); for sub structures, this is usually nil, but can be overriden by
32
+ # users explicitly to carry some meta-data (e.g. explicitly set UTC/ItemList[0] to UTI).
33
+ # This is not done automatically, however.
34
+ #
35
+ # Scripts could use this, for example, to reliably re-attach a Item within
36
+ # /ItemList/ somewhere else, or export it as .uti.
37
+ def data_type
38
+ @data_type
39
+ end
40
+
41
+ # Overrides the data type (used by the built-in file format readers).
42
+ def data_type= k
43
+ NWN.log_debug("Setting explicit data_type for parented element") if @element
44
+ @data_type = k
45
+ end
46
+
40
47
  def element= e #:nodoc:
41
48
  @element = e
42
- @data_type = self.element.parent.path + "/" + self.element.l
49
+ NWN.log_debug("Re-parenting a struct with explicit data_type #{@data_type.inspect}") if @data_type
43
50
  end
44
51
 
45
52
  # Dump this struct as GFF binary data.
@@ -83,19 +90,28 @@ module NWN::Gff::Struct
83
90
  # ..
84
91
  # end
85
92
  # end
86
- def add_field label, type, value, &block
93
+ def add_field label, type, value = nil, &block
94
+ value ||= NWN::Gff::Field::DEFAULT_VALUES[type] || raise(ArgumentError,
95
+ "type #{type.inspect} requires explicit value")
87
96
  self[label] = NWN::Gff::Field.new(label, type, value)
88
97
  self[label].parent = self
89
98
  yield(self[label]) if block_given?
99
+ if self[label].field_value.is_a?(NWN::Gff::Struct)
100
+ self[label].field_value.element = self[label]
101
+ end
90
102
  self[label]
91
103
  end
92
104
 
105
+
93
106
  def method_missing meth, *av, &block # :nodoc:
94
107
  if meth.to_s =~ /^add_(.+)$/
95
108
  if NWN::Gff::Types.index($1.to_sym)
96
- av.size == 2 or super
109
+ av.size >= 1 || av.size <= 2 or raise(NoMethodError,
110
+ "undefined method #{meth} (requires two arguments to infer add_any)")
97
111
  t = $1.to_sym
98
- f = add_field(av[0], t, av[1], &block)
112
+ b = av[1] || NWN::Gff::Field::DEFAULT_VALUES[t] || raise(NoMethodError,
113
+ "undefined method #{meth} (type #{t.inspect} requires explicit value)")
114
+ f = add_field(av[0], t, b, &block)
99
115
  return f
100
116
  else
101
117
  super
@@ -208,15 +224,15 @@ module NWN::Gff::Struct
208
224
  # the native charset.
209
225
  def self.unbox! o, parent = nil
210
226
  o.extend(NWN::Gff::Struct)
227
+ o.element = parent if parent
211
228
  o.struct_id = o.delete('__struct_id')
212
- o.data_type = if o['__data_type']
213
- o.delete('__data_type')
214
- else
215
- o.path
216
- end
229
+ o.data_type = o.delete('__data_type')
217
230
  o.data_version = o.delete('__data_version')
218
231
 
219
- o.element = parent if parent
232
+ NWN.log_debug("Unboxed without a root data type") if
233
+ !parent && !o.data_type
234
+ NWN.log_debug("Unboxed with explicit data type #{o.data_type.inspect}") if
235
+ parent && o.data_type
220
236
 
221
237
  o.each {|label,element|
222
238
  o[label] = NWN::Gff::Field.unbox!(element, label, o)
@@ -230,12 +246,14 @@ module NWN::Gff::Struct
230
246
  def box
231
247
  t = Hash[self]
232
248
  t.merge!({
233
- '__struct_id' => self.struct_id,
234
- '__data_version' => self.data_version,
249
+ '__struct_id' => self.struct_id
235
250
  })
251
+ t.merge!({
252
+ '__data_version' => self.data_version,
253
+ }) if self.data_version && self.data_version != DEFAULT_DATA_VERSION
236
254
  t.merge!({
237
255
  '__data_type' => self.data_type
238
- }) if self.element == nil
256
+ }) if @data_type
239
257
  t
240
258
  end
241
259
 
@@ -5,7 +5,7 @@ module NWN::Gff::Kivinen
5
5
 
6
6
  def self.dump struct, io
7
7
  ret = ""
8
- kivinen_format struct, $options[:types], nil, nil do |l,v|
8
+ format struct, $options[:types], nil, nil do |l,v|
9
9
  ret += "%s:\t%s\n" % [l, v]
10
10
  end
11
11
  io.puts ret
@@ -20,7 +20,7 @@ module NWN::Gff::Kivinen
20
20
  # [+add_prefix+] Add a prefix <tt>(unknown type)</tt> of no type information can be derived from the input.
21
21
  # [+file_type+] File type override. If non-null, add a global struct header with the given file type (useful for passing to gffencode.pl)
22
22
  # [+struct_id+] Provide a struct_id override (if printing a struct).
23
- def self.kivinen_format struct, types_too = false, add_prefix = true, file_type = nil, struct_id = nil, &block
23
+ def self.format struct, types_too = false, add_prefix = true, file_type = nil, struct_id = nil, &block
24
24
 
25
25
  if types_too
26
26
  yield("/", "")
@@ -106,6 +106,8 @@ YAML.add_domain_type(NWN::Gff::YAML::Domain,'struct') {|t,hash|
106
106
  element.str_ref ||= NWN::Gff::Field::DEFAULT_STR_REF if element.respond_to?('str_ref=')
107
107
 
108
108
  element.extend_meta_classes
109
+
110
+ element.field_value.element = element if element.field_value.is_a?(NWN::Gff::Struct)
109
111
  element.validate
110
112
 
111
113
  struct[label] = element
@@ -0,0 +1,128 @@
1
+ require File.join(File.dirname(__FILE__), 'spec_helper')
2
+
3
+ describe "Gff::Struct#data_type" do
4
+
5
+ before(:each) do
6
+ @manual = Gff::Struct.new(0x0, 'root', 'V3.1') do |s|
7
+ s.add_struct 'a', Gff::Struct.new(0x1) do |a|
8
+ a.v.add_struct 'b', Gff::Struct.new(0x02) do |b|
9
+ b.v.add_field 'hi', :int, 1
10
+ end
11
+ end
12
+ end
13
+ end
14
+
15
+ it "has the proper data types when building inline" do
16
+ verify @manual
17
+ end
18
+
19
+ unless Gff::InputFormats[:json] && Gff::OutputFormats[:json]
20
+ $stderr.puts "Partial or no json support, not running json specs!"
21
+ else
22
+
23
+ it "keeps explicit data types for json" do
24
+ @manual['a'].v['b'].v.data_type = 'EXPLICIT'
25
+ json = StringIO.new
26
+ Gff.write(json, :json, @manual)
27
+ json.seek(0)
28
+ n = Gff.read(json, :json)
29
+ n['a'].v.path.should == '/a'
30
+ n['a'].v.data_type.should == nil
31
+ n['a'].v['b'].v.data_type.should == 'EXPLICIT'
32
+ end
33
+
34
+ it "has the proper data type when reading from json" do
35
+ struct = <<EOS
36
+ {
37
+ "a": {
38
+ "type": "struct",
39
+ "value": {
40
+ "b": {
41
+ "type": "struct",
42
+ "value": {
43
+ "hi": {
44
+ "type": "int",
45
+ "value": 1
46
+ },
47
+ "__struct_id": 2
48
+ }
49
+ },
50
+ "__struct_id": 1
51
+ }
52
+ },
53
+ "__data_version": "V3.1",
54
+ "__data_type": "root",
55
+ "__struct_id": 0
56
+ }
57
+ EOS
58
+
59
+ struct = Gff.read(StringIO.new(struct), :json)
60
+
61
+ verify struct
62
+ end
63
+
64
+ end
65
+
66
+ it "keeps explicit data types for yaml" do
67
+ (@manual / 'a/b').v.data_type = 'EXPLICIT'
68
+ json = StringIO.new
69
+ Gff.write(json, :yaml, @manual)
70
+ json.seek(0)
71
+ n = Gff.read(json, :yaml)
72
+ (n / 'a/b/hi').path.should == "/a/b/hi"
73
+ (n / 'a$').data_type.should == nil
74
+ (n / 'a/b$').data_type.should == "EXPLICIT"
75
+ end
76
+
77
+ it "has the proper data type when reading from yaml" do
78
+ struct = <<EOS
79
+ --- !nwn-lib.elv.es,2008-12/struct
80
+ __data_type: root
81
+ __data_version: V3.1
82
+ __struct_id: 0
83
+ a:
84
+ type: :struct
85
+ value: !nwn-lib.elv.es,2008-12/struct
86
+ __data_type: ATYPE
87
+ __struct_id: 1
88
+ b:
89
+ type: :struct
90
+ value: !nwn-lib.elv.es,2008-12/struct {__data_type: BTYPE, __struct_id: 2, hi: {type: :int, value: 1}}
91
+ EOS
92
+ struct = Gff.read(StringIO.new(struct), :yaml)
93
+
94
+ verify struct
95
+ end
96
+
97
+ it "has the proper data type when reading from yaml with overriden data_type" do
98
+ struct = <<EOS
99
+ --- !nwn-lib.elv.es,2008-12/struct
100
+ __data_type: root
101
+ __data_version: V3.1
102
+ __struct_id: 0
103
+ a:
104
+ type: :struct
105
+ value: !nwn-lib.elv.es,2008-12/struct
106
+ __data_type: DTYPE
107
+ __struct_id: 1
108
+ b:
109
+ type: :struct
110
+ value: !nwn-lib.elv.es,2008-12/struct {__data_type: BTYPE, __struct_id: 2, hi: {type: :int, value: 1}}
111
+ EOS
112
+ struct = Gff.read(StringIO.new(struct), :yaml)
113
+
114
+ (struct / 'a$').data_type.should == 'DTYPE'
115
+ (struct / 'a$').path.should == '/a'
116
+ end
117
+
118
+ def verify struct
119
+ struct.data_type.should == 'root'
120
+ struct.data_version.should == 'V3.1'
121
+ (struct / 'a').path.should == '/a'
122
+ (struct / 'a').v.path.should == '/a'
123
+ (struct / 'a$').path.should == '/a'
124
+ (struct / 'a/b$').path.should == '/a/b'
125
+ (struct / 'a/b/hi').path.should == '/a/b/hi'
126
+ (struct / 'a/b/hi$').should == 1
127
+ end
128
+ end
data/spec/erf_spec.rb CHANGED
@@ -48,17 +48,13 @@ describe "Erf::Erf", :shared => true do
48
48
  end
49
49
 
50
50
  it "reads ERF with locstr_size = 0 and locstr_count > 0" do
51
- old_debug = NWN.setting(:debug, "0")
52
51
  @erf[12,4] = [0].pack("V")
53
52
  wellformed_verify @erf, false
54
- NWN.setting(:debug, old_debug)
55
53
  end
56
54
 
57
55
  it "reads ERF with locstr_size > 0 and locstr_count = 0" do
58
- old_debug = NWN.setting(:debug, "0")
59
56
  @erf[8,4] = [0].pack("V")
60
57
  wellformed_verify @erf, false
61
- NWN.setting(:debug, old_debug)
62
58
  end
63
59
  end
64
60
 
data/spec/json_spec.rb ADDED
@@ -0,0 +1,27 @@
1
+ require File.join(File.dirname(__FILE__), 'spec_helper')
2
+
3
+ unless Gff::InputFormats[:json] && Gff::OutputFormats[:json]
4
+ $stderr.puts "Partial or no json support, not running json specs!"
5
+ else
6
+
7
+ describe "JSON support" do
8
+ def read_write
9
+ g = Gff.read(StringIO.new(WELLFORMED_GFF), :gff)
10
+ out = StringIO.new
11
+ j = Gff.write(out, :json, g)
12
+ out.seek(0)
13
+ gg = Gff.read(out, :json)
14
+ end
15
+
16
+ it "read/writes correctly" do
17
+ NWN.setting(:pretty_json, 0)
18
+ read_write
19
+ end
20
+
21
+ it "pretty-read/writes correctly" do
22
+ NWN.setting(:pretty_json, 1)
23
+ read_write
24
+ end
25
+ end
26
+
27
+ end
@@ -0,0 +1,1684 @@
1
+ KIVINEN_EXPECT = [
2
+ ["/", ""],
3
+ ["/ ____file_type", "BIC"],
4
+ ["/ ____file_version", "V3.2"],
5
+ ["/ ____struct_type", 4294967295],
6
+ ["/Age", 18],
7
+ ["/Age. ____type", 5],
8
+ ["/AmbientAnimState", 0],
9
+ ["/AmbientAnimState. ____type", 0],
10
+ ["/AnimationDay", 461132],
11
+ ["/AnimationDay. ____type", 4],
12
+ ["/AnimationTime", 1629372],
13
+ ["/AnimationTime. ____type", 4],
14
+ ["/Appearance_Head", 1],
15
+ ["/Appearance_Head. ____type", 0],
16
+ ["/Appearance_Type", 6],
17
+ ["/Appearance_Type. ____type", 2],
18
+ ["/AreaId", 1],
19
+ ["/AreaId. ____type", 4],
20
+ ["/ArmorClass", 12],
21
+ ["/ArmorClass. ____type", 3],
22
+ ["/ArmorPart_RFoot", 1],
23
+ ["/ArmorPart_RFoot. ____type", 0],
24
+ ["/BaseAttackBonus", 1],
25
+ ["/BaseAttackBonus. ____type", 0],
26
+ ["/BodyBag", 0],
27
+ ["/BodyBag. ____type", 0],
28
+ ["/BodyBagId", 2130706432],
29
+ ["/BodyBagId. ____type", 4],
30
+ ["/BodyPart_Belt", 0],
31
+ ["/BodyPart_Belt. ____type", 0],
32
+ ["/BodyPart_LBicep", 1],
33
+ ["/BodyPart_LBicep. ____type", 0],
34
+ ["/BodyPart_LFArm", 1],
35
+ ["/BodyPart_LFArm. ____type", 0],
36
+ ["/BodyPart_LFoot", 1],
37
+ ["/BodyPart_LFoot. ____type", 0],
38
+ ["/BodyPart_LHand", 1],
39
+ ["/BodyPart_LHand. ____type", 0],
40
+ ["/BodyPart_LShin", 1],
41
+ ["/BodyPart_LShin. ____type", 0],
42
+ ["/BodyPart_LShoul", 0],
43
+ ["/BodyPart_LShoul. ____type", 0],
44
+ ["/BodyPart_LThigh", 1],
45
+ ["/BodyPart_LThigh. ____type", 0],
46
+ ["/BodyPart_Neck", 1],
47
+ ["/BodyPart_Neck. ____type", 0],
48
+ ["/BodyPart_Pelvis", 1],
49
+ ["/BodyPart_Pelvis. ____type", 0],
50
+ ["/BodyPart_RBicep", 1],
51
+ ["/BodyPart_RBicep. ____type", 0],
52
+ ["/BodyPart_RFArm", 1],
53
+ ["/BodyPart_RFArm. ____type", 0],
54
+ ["/BodyPart_RHand", 1],
55
+ ["/BodyPart_RHand. ____type", 0],
56
+ ["/BodyPart_RShin", 1],
57
+ ["/BodyPart_RShin. ____type", 0],
58
+ ["/BodyPart_RShoul", 0],
59
+ ["/BodyPart_RShoul. ____type", 0],
60
+ ["/BodyPart_RThigh", 1],
61
+ ["/BodyPart_RThigh. ____type", 0],
62
+ ["/BodyPart_Torso", 1],
63
+ ["/BodyPart_Torso. ____type", 0],
64
+ ["/Cha", 10],
65
+ ["/Cha. ____type", 0],
66
+ ["/ChallengeRating", 0.0],
67
+ ["/ChallengeRating. ____type", 8],
68
+ ["/ClassList. ____type", 15],
69
+ ["/ClassList[0]/", "/ClassList[0]"],
70
+ ["/ClassList[0]/ ____struct_type", 2],
71
+ ["/ClassList[0]/Class", 0],
72
+ ["/ClassList[0]/Class. ____type", 5],
73
+ ["/ClassList[0]/ClassLevel", 1],
74
+ ["/ClassList[0]/ClassLevel. ____type", 3],
75
+ ["/Color_Hair", 0],
76
+ ["/Color_Hair. ____type", 0],
77
+ ["/Color_Skin", 0],
78
+ ["/Color_Skin. ____type", 0],
79
+ ["/Color_Tattoo1", 0],
80
+ ["/Color_Tattoo1. ____type", 0],
81
+ ["/Color_Tattoo2", 0],
82
+ ["/Color_Tattoo2. ____type", 0],
83
+ ["/CombatInfo/", "/CombatInfo"],
84
+ ["/CombatInfo/ ____struct_type", 51882],
85
+ ["/CombatInfo. ____type", 14],
86
+ ["/CombatInfo/ArcaneSpellFail", 0],
87
+ ["/CombatInfo/ArcaneSpellFail. ____type", 0],
88
+ ["/CombatInfo/ArmorCheckPen", 0],
89
+ ["/CombatInfo/ArmorCheckPen. ____type", 0],
90
+ ["/CombatInfo/AttackList. ____type", 15],
91
+ ["/CombatInfo/CreatureDice", 0],
92
+ ["/CombatInfo/CreatureDice. ____type", 0],
93
+ ["/CombatInfo/CreatureDie", 0],
94
+ ["/CombatInfo/CreatureDie. ____type", 0],
95
+ ["/CombatInfo/DamageDice", 1],
96
+ ["/CombatInfo/DamageDice. ____type", 0],
97
+ ["/CombatInfo/DamageDie", 0],
98
+ ["/CombatInfo/DamageDie. ____type", 0],
99
+ ["/CombatInfo/DamageList. ____type", 15],
100
+ ["/CombatInfo/LeftEquip", 2130706432],
101
+ ["/CombatInfo/LeftEquip. ____type", 4],
102
+ ["/CombatInfo/LeftString", ""],
103
+ ["/CombatInfo/LeftString. ____type", 10],
104
+ ["/CombatInfo/NumAttacks", 1],
105
+ ["/CombatInfo/NumAttacks. ____type", 0],
106
+ ["/CombatInfo/OffHandAttackMod", 0],
107
+ ["/CombatInfo/OffHandAttackMod. ____type", 1],
108
+ ["/CombatInfo/OffHandCritMult", 2],
109
+ ["/CombatInfo/OffHandCritMult. ____type", 0],
110
+ ["/CombatInfo/OffHandCritRng", 1],
111
+ ["/CombatInfo/OffHandCritRng. ____type", 0],
112
+ ["/CombatInfo/OffHandDamageMod", 0],
113
+ ["/CombatInfo/OffHandDamageMod. ____type", 1],
114
+ ["/CombatInfo/OffHandWeaponEq", 0],
115
+ ["/CombatInfo/OffHandWeaponEq. ____type", 0],
116
+ ["/CombatInfo/OnHandAttackMod", 3],
117
+ ["/CombatInfo/OnHandAttackMod. ____type", 1],
118
+ ["/CombatInfo/OnHandCritMult", 3],
119
+ ["/CombatInfo/OnHandCritMult. ____type", 0],
120
+ ["/CombatInfo/OnHandCritRng", 1],
121
+ ["/CombatInfo/OnHandCritRng. ____type", 0],
122
+ ["/CombatInfo/OnHandDamageMod", 3],
123
+ ["/CombatInfo/OnHandDamageMod. ____type", 1],
124
+ ["/CombatInfo/RightEquip", 184],
125
+ ["/CombatInfo/RightEquip. ____type", 4],
126
+ ["/CombatInfo/RightString", "Lance"],
127
+ ["/CombatInfo/RightString. ____type", 10],
128
+ ["/CombatInfo/SpellResistance", 0],
129
+ ["/CombatInfo/SpellResistance. ____type", 0],
130
+ ["/CombatInfo/UnarmedDamDice", 1],
131
+ ["/CombatInfo/UnarmedDamDice. ____type", 0],
132
+ ["/CombatInfo/UnarmedDamDie", 3],
133
+ ["/CombatInfo/UnarmedDamDie. ____type", 0],
134
+ ["/CombatInfo/eatureDice", 0],
135
+ ["/CombatInfo/eatureDice. ____type", 0],
136
+ ["/CombatInfo/eatureDie", 0],
137
+ ["/CombatInfo/eatureDie. ____type", 0],
138
+ ["/CombatInfo/reatureDice", 0],
139
+ ["/CombatInfo/reatureDice. ____type", 0],
140
+ ["/CombatInfo/reatureDie", 0],
141
+ ["/CombatInfo/reatureDie. ____type", 0],
142
+ ["/CombatRoundData/", "/CombatRoundData"],
143
+ ["/CombatRoundData/ ____struct_type", 51930],
144
+ ["/CombatRoundData. ____type", 14],
145
+ ["/Con", 14],
146
+ ["/Con. ____type", 0],
147
+ ["/Conversation", ""],
148
+ ["/Conversation. ____type", 11],
149
+ ["/CreatnScrptFird", 1],
150
+ ["/CreatnScrptFird. ____type", 0],
151
+ ["/CreatureSize", 3],
152
+ ["/CreatureSize. ____type", 5],
153
+ ["/CurrentHitPoints", 12],
154
+ ["/CurrentHitPoints. ____type", 3],
155
+ ["/DeadSelectable", 1],
156
+ ["/DeadSelectable. ____type", 0],
157
+ ["/DecayTime", 5000],
158
+ ["/DecayTime. ____type", 4],
159
+ ["/Deity", ""],
160
+ ["/Deity. ____type", 10],
161
+ ["/Description. ____string_ref", 4294967295],
162
+ ["/Description. ____type", 12],
163
+ ["/Description/0", "Your only hope for fame and fortune, and to escape the life of a commoner, was to become an adventurer. Guided by your goals and dreams, you have set off in search of excitement."],
164
+ ["/DescriptionOverr", ""],
165
+ ["/DescriptionOverr. ____type", 10],
166
+ ["/DetectMode", 0],
167
+ ["/DetectMode. ____type", 0],
168
+ ["/Dex", 15],
169
+ ["/Dex. ____type", 0],
170
+ ["/Disarmable", 1],
171
+ ["/Disarmable. ____type", 0],
172
+ ["/EncounterObject", 2130706432],
173
+ ["/EncounterObject. ____type", 4],
174
+ ["/Equip_ItemList. ____type", 15],
175
+ ["/Equip_ItemList[0]/", "/Equip_ItemList[0]"],
176
+ ["/Equip_ItemList[0]/ ____struct_type", 2],
177
+ ["/Equip_ItemList[0]/AddCost", 0],
178
+ ["/Equip_ItemList[0]/AddCost. ____type", 4],
179
+ ["/Equip_ItemList[0]/ArmorPart_Belt", 0],
180
+ ["/Equip_ItemList[0]/ArmorPart_Belt. ____type", 0],
181
+ ["/Equip_ItemList[0]/ArmorPart_LBicep", 1],
182
+ ["/Equip_ItemList[0]/ArmorPart_LBicep. ____type", 0],
183
+ ["/Equip_ItemList[0]/ArmorPart_LFArm", 1],
184
+ ["/Equip_ItemList[0]/ArmorPart_LFArm. ____type", 0],
185
+ ["/Equip_ItemList[0]/ArmorPart_LFoot", 6],
186
+ ["/Equip_ItemList[0]/ArmorPart_LFoot. ____type", 0],
187
+ ["/Equip_ItemList[0]/ArmorPart_LHand", 1],
188
+ ["/Equip_ItemList[0]/ArmorPart_LHand. ____type", 0],
189
+ ["/Equip_ItemList[0]/ArmorPart_LShin", 16],
190
+ ["/Equip_ItemList[0]/ArmorPart_LShin. ____type", 0],
191
+ ["/Equip_ItemList[0]/ArmorPart_LShoul", 0],
192
+ ["/Equip_ItemList[0]/ArmorPart_LShoul. ____type", 0],
193
+ ["/Equip_ItemList[0]/ArmorPart_LThigh", 4],
194
+ ["/Equip_ItemList[0]/ArmorPart_LThigh. ____type", 0],
195
+ ["/Equip_ItemList[0]/ArmorPart_Neck", 1],
196
+ ["/Equip_ItemList[0]/ArmorPart_Neck. ____type", 0],
197
+ ["/Equip_ItemList[0]/ArmorPart_Pelvis", 17],
198
+ ["/Equip_ItemList[0]/ArmorPart_Pelvis. ____type", 0],
199
+ ["/Equip_ItemList[0]/ArmorPart_RBicep", 1],
200
+ ["/Equip_ItemList[0]/ArmorPart_RBicep. ____type", 0],
201
+ ["/Equip_ItemList[0]/ArmorPart_RFArm", 1],
202
+ ["/Equip_ItemList[0]/ArmorPart_RFArm. ____type", 0],
203
+ ["/Equip_ItemList[0]/ArmorPart_RFoot", 6],
204
+ ["/Equip_ItemList[0]/ArmorPart_RFoot. ____type", 0],
205
+ ["/Equip_ItemList[0]/ArmorPart_RHand", 1],
206
+ ["/Equip_ItemList[0]/ArmorPart_RHand. ____type", 0],
207
+ ["/Equip_ItemList[0]/ArmorPart_RShin", 16],
208
+ ["/Equip_ItemList[0]/ArmorPart_RShin. ____type", 0],
209
+ ["/Equip_ItemList[0]/ArmorPart_RShoul", 0],
210
+ ["/Equip_ItemList[0]/ArmorPart_RShoul. ____type", 0],
211
+ ["/Equip_ItemList[0]/ArmorPart_RThigh", 4],
212
+ ["/Equip_ItemList[0]/ArmorPart_RThigh. ____type", 0],
213
+ ["/Equip_ItemList[0]/ArmorPart_Robe", 0],
214
+ ["/Equip_ItemList[0]/ArmorPart_Robe. ____type", 0],
215
+ ["/Equip_ItemList[0]/ArmorPart_Torso", 50],
216
+ ["/Equip_ItemList[0]/ArmorPart_Torso. ____type", 0],
217
+ ["/Equip_ItemList[0]/BaseItem", 16],
218
+ ["/Equip_ItemList[0]/BaseItem. ____type", 5],
219
+ ["/Equip_ItemList[0]/Charges", 0],
220
+ ["/Equip_ItemList[0]/Charges. ____type", 0],
221
+ ["/Equip_ItemList[0]/Cloth1Color", 11],
222
+ ["/Equip_ItemList[0]/Cloth1Color. ____type", 0],
223
+ ["/Equip_ItemList[0]/Cloth2Color", 3],
224
+ ["/Equip_ItemList[0]/Cloth2Color. ____type", 0],
225
+ ["/Equip_ItemList[0]/Cost", 1],
226
+ ["/Equip_ItemList[0]/Cost. ____type", 4],
227
+ ["/Equip_ItemList[0]/Cursed", 0],
228
+ ["/Equip_ItemList[0]/Cursed. ____type", 0],
229
+ ["/Equip_ItemList[0]/DescIdentified. ____string_ref", 4294967295],
230
+ ["/Equip_ItemList[0]/DescIdentified. ____type", 12],
231
+ ["/Equip_ItemList[0]/DescIdentifiedOv", ""],
232
+ ["/Equip_ItemList[0]/DescIdentifiedOv. ____type", 10],
233
+ ["/Equip_ItemList[0]/Description. ____string_ref", 4294967295],
234
+ ["/Equip_ItemList[0]/Description. ____type", 12],
235
+ ["/Equip_ItemList[0]/DescriptionOverr", ""],
236
+ ["/Equip_ItemList[0]/DescriptionOverr. ____type", 10],
237
+ ["/Equip_ItemList[0]/Dropable", 1],
238
+ ["/Equip_ItemList[0]/Dropable. ____type", 0],
239
+ ["/Equip_ItemList[0]/Identified", 1],
240
+ ["/Equip_ItemList[0]/Identified. ____type", 0],
241
+ ["/Equip_ItemList[0]/Leather1Color", 11],
242
+ ["/Equip_ItemList[0]/Leather1Color. ____type", 0],
243
+ ["/Equip_ItemList[0]/Leather2Color", 15],
244
+ ["/Equip_ItemList[0]/Leather2Color. ____type", 0],
245
+ ["/Equip_ItemList[0]/LocalizedName. ____string_ref", 12902],
246
+ ["/Equip_ItemList[0]/LocalizedName. ____type", 12],
247
+ ["/Equip_ItemList[0]/Metal1Color", 2],
248
+ ["/Equip_ItemList[0]/Metal1Color. ____type", 0],
249
+ ["/Equip_ItemList[0]/Metal2Color", 11],
250
+ ["/Equip_ItemList[0]/Metal2Color. ____type", 0],
251
+ ["/Equip_ItemList[0]/ObjectId", 585],
252
+ ["/Equip_ItemList[0]/ObjectId. ____type", 4],
253
+ ["/Equip_ItemList[0]/Pickpocketable", 1],
254
+ ["/Equip_ItemList[0]/Pickpocketable. ____type", 0],
255
+ ["/Equip_ItemList[0]/Plot", 0],
256
+ ["/Equip_ItemList[0]/Plot. ____type", 0],
257
+ ["/Equip_ItemList[0]/PropertiesList. ____type", 15],
258
+ ["/Equip_ItemList[0]/StackSize", 1],
259
+ ["/Equip_ItemList[0]/StackSize. ____type", 2],
260
+ ["/Equip_ItemList[0]/Stolen", 0],
261
+ ["/Equip_ItemList[0]/Stolen. ____type", 0],
262
+ ["/Equip_ItemList[0]/Tag", "NW_CLOTH001"],
263
+ ["/Equip_ItemList[0]/Tag. ____type", 10],
264
+ ["/Equip_ItemList[0]/TemplateResRef", "nw_cloth001"],
265
+ ["/Equip_ItemList[0]/TemplateResRef. ____type", 11],
266
+ ["/Equip_ItemList[0]/UArmorPart_Belt", 0],
267
+ ["/Equip_ItemList[0]/UArmorPart_Belt. ____type", 0],
268
+ ["/Equip_ItemList[0]/UArmorPart_LBice", 1],
269
+ ["/Equip_ItemList[0]/UArmorPart_LBice. ____type", 0],
270
+ ["/Equip_ItemList[0]/UArmorPart_LFArm", 1],
271
+ ["/Equip_ItemList[0]/UArmorPart_LFArm. ____type", 0],
272
+ ["/Equip_ItemList[0]/UArmorPart_LFoot", 6],
273
+ ["/Equip_ItemList[0]/UArmorPart_LFoot. ____type", 0],
274
+ ["/Equip_ItemList[0]/UArmorPart_LHand", 1],
275
+ ["/Equip_ItemList[0]/UArmorPart_LHand. ____type", 0],
276
+ ["/Equip_ItemList[0]/UArmorPart_LShin", 16],
277
+ ["/Equip_ItemList[0]/UArmorPart_LShin. ____type", 0],
278
+ ["/Equip_ItemList[0]/UArmorPart_LShou", 0],
279
+ ["/Equip_ItemList[0]/UArmorPart_LShou. ____type", 0],
280
+ ["/Equip_ItemList[0]/UArmorPart_LThig", 4],
281
+ ["/Equip_ItemList[0]/UArmorPart_LThig. ____type", 0],
282
+ ["/Equip_ItemList[0]/UArmorPart_Neck", 1],
283
+ ["/Equip_ItemList[0]/UArmorPart_Neck. ____type", 0],
284
+ ["/Equip_ItemList[0]/UArmorPart_Pelvi", 17],
285
+ ["/Equip_ItemList[0]/UArmorPart_Pelvi. ____type", 0],
286
+ ["/Equip_ItemList[0]/UArmorPart_RBice", 1],
287
+ ["/Equip_ItemList[0]/UArmorPart_RBice. ____type", 0],
288
+ ["/Equip_ItemList[0]/UArmorPart_RFArm", 1],
289
+ ["/Equip_ItemList[0]/UArmorPart_RFArm. ____type", 0],
290
+ ["/Equip_ItemList[0]/UArmorPart_RFoot", 6],
291
+ ["/Equip_ItemList[0]/UArmorPart_RFoot. ____type", 0],
292
+ ["/Equip_ItemList[0]/UArmorPart_RHand", 1],
293
+ ["/Equip_ItemList[0]/UArmorPart_RHand. ____type", 0],
294
+ ["/Equip_ItemList[0]/UArmorPart_RShin", 16],
295
+ ["/Equip_ItemList[0]/UArmorPart_RShin. ____type", 0],
296
+ ["/Equip_ItemList[0]/UArmorPart_RShou", 0],
297
+ ["/Equip_ItemList[0]/UArmorPart_RShou. ____type", 0],
298
+ ["/Equip_ItemList[0]/UArmorPart_RThig", 4],
299
+ ["/Equip_ItemList[0]/UArmorPart_RThig. ____type", 0],
300
+ ["/Equip_ItemList[0]/UArmorPart_Robe", 0],
301
+ ["/Equip_ItemList[0]/UArmorPart_Robe. ____type", 0],
302
+ ["/Equip_ItemList[0]/UArmorPart_Torso", 50],
303
+ ["/Equip_ItemList[0]/UArmorPart_Torso. ____type", 0],
304
+ ["/Equip_ItemList[0]/XOrientation", 1.0],
305
+ ["/Equip_ItemList[0]/XOrientation. ____type", 8],
306
+ ["/Equip_ItemList[0]/XPosition", 0.0],
307
+ ["/Equip_ItemList[0]/XPosition. ____type", 8],
308
+ ["/Equip_ItemList[0]/YOrientation", 0.0],
309
+ ["/Equip_ItemList[0]/YOrientation. ____type", 8],
310
+ ["/Equip_ItemList[0]/YPosition", 0.0],
311
+ ["/Equip_ItemList[0]/YPosition. ____type", 8],
312
+ ["/Equip_ItemList[0]/ZOrientation", 0.0],
313
+ ["/Equip_ItemList[0]/ZOrientation. ____type", 8],
314
+ ["/Equip_ItemList[0]/ZPosition", 0.0],
315
+ ["/Equip_ItemList[0]/ZPosition. ____type", 8],
316
+ ["/Equip_ItemList[1]/", "/Equip_ItemList[1]"],
317
+ ["/Equip_ItemList[1]/ ____struct_type", 16],
318
+ ["/Equip_ItemList[1]/AddCost", 0],
319
+ ["/Equip_ItemList[1]/AddCost. ____type", 4],
320
+ ["/Equip_ItemList[1]/BaseItem", 92],
321
+ ["/Equip_ItemList[1]/BaseItem. ____type", 5],
322
+ ["/Equip_ItemList[1]/Charges", 0],
323
+ ["/Equip_ItemList[1]/Charges. ____type", 0],
324
+ ["/Equip_ItemList[1]/Cost", 2],
325
+ ["/Equip_ItemList[1]/Cost. ____type", 4],
326
+ ["/Equip_ItemList[1]/Cursed", 0],
327
+ ["/Equip_ItemList[1]/Cursed. ____type", 0],
328
+ ["/Equip_ItemList[1]/DescIdentified. ____string_ref", 4294967295],
329
+ ["/Equip_ItemList[1]/DescIdentified. ____type", 12],
330
+ ["/Equip_ItemList[1]/DescIdentifiedOv", ""],
331
+ ["/Equip_ItemList[1]/DescIdentifiedOv. ____type", 10],
332
+ ["/Equip_ItemList[1]/Description. ____string_ref", 4294967295],
333
+ ["/Equip_ItemList[1]/Description. ____type", 12],
334
+ ["/Equip_ItemList[1]/DescriptionOverr", ""],
335
+ ["/Equip_ItemList[1]/DescriptionOverr. ____type", 10],
336
+ ["/Equip_ItemList[1]/Dropable", 1],
337
+ ["/Equip_ItemList[1]/Dropable. ____type", 0],
338
+ ["/Equip_ItemList[1]/Identified", 1],
339
+ ["/Equip_ItemList[1]/Identified. ____type", 0],
340
+ ["/Equip_ItemList[1]/LocalizedName. ____string_ref", 4294967295],
341
+ ["/Equip_ItemList[1]/LocalizedName. ____type", 12],
342
+ ["/Equip_ItemList[1]/LocalizedName/0", "Lance"],
343
+ ["/Equip_ItemList[1]/ModelPart1", 12],
344
+ ["/Equip_ItemList[1]/ModelPart1. ____type", 0],
345
+ ["/Equip_ItemList[1]/ModelPart2", 11],
346
+ ["/Equip_ItemList[1]/ModelPart2. ____type", 0],
347
+ ["/Equip_ItemList[1]/ModelPart3", 11],
348
+ ["/Equip_ItemList[1]/ModelPart3. ____type", 0],
349
+ ["/Equip_ItemList[1]/ObjectId", 184],
350
+ ["/Equip_ItemList[1]/ObjectId. ____type", 4],
351
+ ["/Equip_ItemList[1]/Pickpocketable", 1],
352
+ ["/Equip_ItemList[1]/Pickpocketable. ____type", 0],
353
+ ["/Equip_ItemList[1]/Plot", 0],
354
+ ["/Equip_ItemList[1]/Plot. ____type", 0],
355
+ ["/Equip_ItemList[1]/PropertiesList. ____type", 15],
356
+ ["/Equip_ItemList[1]/StackSize", 1],
357
+ ["/Equip_ItemList[1]/StackSize. ____type", 2],
358
+ ["/Equip_ItemList[1]/Stolen", 0],
359
+ ["/Equip_ItemList[1]/Stolen. ____type", 0],
360
+ ["/Equip_ItemList[1]/Tag", "Lance"],
361
+ ["/Equip_ItemList[1]/Tag. ____type", 10],
362
+ ["/Equip_ItemList[1]/TemplateResRef", "lance"],
363
+ ["/Equip_ItemList[1]/TemplateResRef. ____type", 11],
364
+ ["/Equip_ItemList[1]/XOrientation", 0.0],
365
+ ["/Equip_ItemList[1]/XOrientation. ____type", 8],
366
+ ["/Equip_ItemList[1]/XPosition", 0.0],
367
+ ["/Equip_ItemList[1]/XPosition. ____type", 8],
368
+ ["/Equip_ItemList[1]/YOrientation", 1.0],
369
+ ["/Equip_ItemList[1]/YOrientation. ____type", 8],
370
+ ["/Equip_ItemList[1]/YPosition", 0.0],
371
+ ["/Equip_ItemList[1]/YPosition. ____type", 8],
372
+ ["/Equip_ItemList[1]/ZOrientation", 0.0],
373
+ ["/Equip_ItemList[1]/ZOrientation. ____type", 8],
374
+ ["/Equip_ItemList[1]/ZPosition", 0.0],
375
+ ["/Equip_ItemList[1]/ZPosition. ____type", 8],
376
+ ["/Equip_ItemList[2]/", "/Equip_ItemList[2]"],
377
+ ["/Equip_ItemList[2]/ ____struct_type", 131072],
378
+ ["/Equip_ItemList[2]/AddCost", 0],
379
+ ["/Equip_ItemList[2]/AddCost. ____type", 4],
380
+ ["/Equip_ItemList[2]/BaseItem", 73],
381
+ ["/Equip_ItemList[2]/BaseItem. ____type", 5],
382
+ ["/Equip_ItemList[2]/Charges", 0],
383
+ ["/Equip_ItemList[2]/Charges. ____type", 0],
384
+ ["/Equip_ItemList[2]/Cost", 0],
385
+ ["/Equip_ItemList[2]/Cost. ____type", 4],
386
+ ["/Equip_ItemList[2]/Cursed", 1],
387
+ ["/Equip_ItemList[2]/Cursed. ____type", 0],
388
+ ["/Equip_ItemList[2]/DescIdentified. ____string_ref", 4294967295],
389
+ ["/Equip_ItemList[2]/DescIdentified. ____type", 12],
390
+ ["/Equip_ItemList[2]/DescIdentified/0", "This item is used for Expansion Pack 3 (1.69) to store PC properties used by horse scripts."],
391
+ ["/Equip_ItemList[2]/DescIdentifiedOv", ""],
392
+ ["/Equip_ItemList[2]/DescIdentifiedOv. ____type", 10],
393
+ ["/Equip_ItemList[2]/Description. ____string_ref", 4294967295],
394
+ ["/Equip_ItemList[2]/Description. ____type", 12],
395
+ ["/Equip_ItemList[2]/Description/0", ""],
396
+ ["/Equip_ItemList[2]/DescriptionOverr", ""],
397
+ ["/Equip_ItemList[2]/DescriptionOverr. ____type", 10],
398
+ ["/Equip_ItemList[2]/Dropable", 0],
399
+ ["/Equip_ItemList[2]/Dropable. ____type", 0],
400
+ ["/Equip_ItemList[2]/Identified", 1],
401
+ ["/Equip_ItemList[2]/Identified. ____type", 0],
402
+ ["/Equip_ItemList[2]/LocalizedName. ____string_ref", 4294967295],
403
+ ["/Equip_ItemList[2]/LocalizedName. ____type", 12],
404
+ ["/Equip_ItemList[2]/LocalizedName/0", "PC Properties"],
405
+ ["/Equip_ItemList[2]/ModelPart1", 1],
406
+ ["/Equip_ItemList[2]/ModelPart1. ____type", 0],
407
+ ["/Equip_ItemList[2]/ObjectId", 592],
408
+ ["/Equip_ItemList[2]/ObjectId. ____type", 4],
409
+ ["/Equip_ItemList[2]/Pickpocketable", 0],
410
+ ["/Equip_ItemList[2]/Pickpocketable. ____type", 0],
411
+ ["/Equip_ItemList[2]/Plot", 1],
412
+ ["/Equip_ItemList[2]/Plot. ____type", 0],
413
+ ["/Equip_ItemList[2]/PropertiesList. ____type", 15],
414
+ ["/Equip_ItemList[2]/StackSize", 1],
415
+ ["/Equip_ItemList[2]/StackSize. ____type", 2],
416
+ ["/Equip_ItemList[2]/Stolen", 0],
417
+ ["/Equip_ItemList[2]/Stolen. ____type", 0],
418
+ ["/Equip_ItemList[2]/Tag", "x3_it_pchide"],
419
+ ["/Equip_ItemList[2]/Tag. ____type", 10],
420
+ ["/Equip_ItemList[2]/TemplateResRef", "x3_it_pchide"],
421
+ ["/Equip_ItemList[2]/TemplateResRef. ____type", 11],
422
+ ["/Equip_ItemList[2]/XOrientation", 1.0],
423
+ ["/Equip_ItemList[2]/XOrientation. ____type", 8],
424
+ ["/Equip_ItemList[2]/XPosition", 0.0],
425
+ ["/Equip_ItemList[2]/XPosition. ____type", 8],
426
+ ["/Equip_ItemList[2]/YOrientation", 0.0],
427
+ ["/Equip_ItemList[2]/YOrientation. ____type", 8],
428
+ ["/Equip_ItemList[2]/YPosition", 0.0],
429
+ ["/Equip_ItemList[2]/YPosition. ____type", 8],
430
+ ["/Equip_ItemList[2]/ZOrientation", 0.0],
431
+ ["/Equip_ItemList[2]/ZOrientation. ____type", 8],
432
+ ["/Equip_ItemList[2]/ZPosition", 0.0],
433
+ ["/Equip_ItemList[2]/ZPosition. ____type", 8],
434
+ ["/Experience", 0],
435
+ ["/Experience. ____type", 4],
436
+ ["/FactionID", 5],
437
+ ["/FactionID. ____type", 2],
438
+ ["/FeatList. ____type", 15],
439
+ ["/FeatList[0]/", "/FeatList[0]"],
440
+ ["/FeatList[0]/ ____struct_type", 1],
441
+ ["/FeatList[0]/Feat", 3],
442
+ ["/FeatList[0]/Feat. ____type", 2],
443
+ ["/FeatList[1]/", "/FeatList[1]"],
444
+ ["/FeatList[1]/ ____struct_type", 1],
445
+ ["/FeatList[1]/Feat", 4],
446
+ ["/FeatList[1]/Feat. ____type", 2],
447
+ ["/FeatList[2]/", "/FeatList[2]"],
448
+ ["/FeatList[2]/ ____struct_type", 1],
449
+ ["/FeatList[2]/Feat", 32],
450
+ ["/FeatList[2]/Feat. ____type", 2],
451
+ ["/FeatList[3]/", "/FeatList[3]"],
452
+ ["/FeatList[3]/ ____struct_type", 1],
453
+ ["/FeatList[3]/Feat", 45],
454
+ ["/FeatList[3]/Feat. ____type", 2],
455
+ ["/FeatList[4]/", "/FeatList[4]"],
456
+ ["/FeatList[4]/ ____struct_type", 1],
457
+ ["/FeatList[4]/Feat", 46],
458
+ ["/FeatList[4]/Feat. ____type", 2],
459
+ ["/FeatList[5]/", "/FeatList[5]"],
460
+ ["/FeatList[5]/ ____struct_type", 1],
461
+ ["/FeatList[5]/Feat", 194],
462
+ ["/FeatList[5]/Feat. ____type", 2],
463
+ ["/FeatList[6]/", "/FeatList[6]"],
464
+ ["/FeatList[6]/ ____struct_type", 1],
465
+ ["/FeatList[6]/Feat", 258],
466
+ ["/FeatList[6]/Feat. ____type", 2],
467
+ ["/FeatList[7]/", "/FeatList[7]"],
468
+ ["/FeatList[7]/ ____struct_type", 1],
469
+ ["/FeatList[7]/Feat", 293],
470
+ ["/FeatList[7]/Feat. ____type", 2],
471
+ ["/FeatList[7]/Uses", 1],
472
+ ["/FeatList[7]/Uses. ____type", 0],
473
+ ["/FeatList[8]/", "/FeatList[8]"],
474
+ ["/FeatList[8]/ ____struct_type", 1],
475
+ ["/FeatList[8]/Feat", 1089],
476
+ ["/FeatList[8]/Feat. ____type", 2],
477
+ ["/FeatList[9]/", "/FeatList[9]"],
478
+ ["/FeatList[9]/ ____struct_type", 1],
479
+ ["/FeatList[9]/Feat", 28],
480
+ ["/FeatList[9]/Feat. ____type", 2],
481
+ ["/FeatList[10]/", "/FeatList[10]"],
482
+ ["/FeatList[10]/ ____struct_type", 1],
483
+ ["/FeatList[10]/Feat", 111],
484
+ ["/FeatList[10]/Feat. ____type", 2],
485
+ ["/FirstName. ____string_ref", 4294967295],
486
+ ["/FirstName. ____type", 12],
487
+ ["/FirstName/0", "Test"],
488
+ ["/FootstepType", -1],
489
+ ["/FootstepType. ____type", 5],
490
+ ["/FortSaveThrow", 4],
491
+ ["/FortSaveThrow. ____type", 1],
492
+ ["/Gender", 0],
493
+ ["/Gender. ____type", 0],
494
+ ["/Gold", 20],
495
+ ["/Gold. ____type", 4],
496
+ ["/GoodEvil", 50],
497
+ ["/GoodEvil. ____type", 0],
498
+ ["/HitPoints", 12],
499
+ ["/HitPoints. ____type", 3],
500
+ ["/Int", 10],
501
+ ["/Int. ____type", 0],
502
+ ["/Interruptable", 1],
503
+ ["/Interruptable. ____type", 0],
504
+ ["/IsCommandable", 1],
505
+ ["/IsCommandable. ____type", 0],
506
+ ["/IsDM", 0],
507
+ ["/IsDM. ____type", 0],
508
+ ["/IsDestroyable", 1],
509
+ ["/IsDestroyable. ____type", 0],
510
+ ["/IsImmortal", 0],
511
+ ["/IsImmortal. ____type", 0],
512
+ ["/IsPC", 1],
513
+ ["/IsPC. ____type", 0],
514
+ ["/IsRaiseable", 1],
515
+ ["/IsRaiseable. ____type", 0],
516
+ ["/ItemList. ____type", 15],
517
+ ["/ItemList[0]/", "/ItemList[0]"],
518
+ ["/ItemList[0]/ ____struct_type", 0],
519
+ ["/ItemList[0]/AddCost", 0],
520
+ ["/ItemList[0]/AddCost. ____type", 4],
521
+ ["/ItemList[0]/BaseItem", 49],
522
+ ["/ItemList[0]/BaseItem. ____type", 5],
523
+ ["/ItemList[0]/Charges", 0],
524
+ ["/ItemList[0]/Charges. ____type", 0],
525
+ ["/ItemList[0]/Cost", 20],
526
+ ["/ItemList[0]/Cost. ____type", 4],
527
+ ["/ItemList[0]/Cursed", 0],
528
+ ["/ItemList[0]/Cursed. ____type", 0],
529
+ ["/ItemList[0]/DescIdentified. ____string_ref", 13410],
530
+ ["/ItemList[0]/DescIdentified. ____type", 12],
531
+ ["/ItemList[0]/DescIdentifiedOv", ""],
532
+ ["/ItemList[0]/DescIdentifiedOv. ____type", 10],
533
+ ["/ItemList[0]/Description. ____string_ref", 4294967295],
534
+ ["/ItemList[0]/Description. ____type", 12],
535
+ ["/ItemList[0]/DescriptionOverr", ""],
536
+ ["/ItemList[0]/DescriptionOverr. ____type", 10],
537
+ ["/ItemList[0]/Dropable", 1],
538
+ ["/ItemList[0]/Dropable. ____type", 0],
539
+ ["/ItemList[0]/Identified", 1],
540
+ ["/ItemList[0]/Identified. ____type", 0],
541
+ ["/ItemList[0]/LocalizedName. ____string_ref", 13411],
542
+ ["/ItemList[0]/LocalizedName. ____type", 12],
543
+ ["/ItemList[0]/ModelPart1", 21],
544
+ ["/ItemList[0]/ModelPart1. ____type", 0],
545
+ ["/ItemList[0]/ModelPart2", 23],
546
+ ["/ItemList[0]/ModelPart2. ____type", 0],
547
+ ["/ItemList[0]/ModelPart3", 32],
548
+ ["/ItemList[0]/ModelPart3. ____type", 0],
549
+ ["/ItemList[0]/ObjectId", 591],
550
+ ["/ItemList[0]/ObjectId. ____type", 4],
551
+ ["/ItemList[0]/Pickpocketable", 1],
552
+ ["/ItemList[0]/Pickpocketable. ____type", 0],
553
+ ["/ItemList[0]/Plot", 0],
554
+ ["/ItemList[0]/Plot. ____type", 0],
555
+ ["/ItemList[0]/PropertiesList. ____type", 15],
556
+ ["/ItemList[0]/PropertiesList[0]/", "/ItemList[0]/PropertiesList[0]"],
557
+ ["/ItemList[0]/PropertiesList[0]/ ____struct_type", 0],
558
+ ["/ItemList[0]/PropertiesList[0]/ChanceAppear", 100],
559
+ ["/ItemList[0]/PropertiesList[0]/ChanceAppear. ____type", 0],
560
+ ["/ItemList[0]/PropertiesList[0]/CostTable", 3],
561
+ ["/ItemList[0]/PropertiesList[0]/CostTable. ____type", 0],
562
+ ["/ItemList[0]/PropertiesList[0]/CostValue", 1],
563
+ ["/ItemList[0]/PropertiesList[0]/CostValue. ____type", 2],
564
+ ["/ItemList[0]/PropertiesList[0]/Param1", 255],
565
+ ["/ItemList[0]/PropertiesList[0]/Param1. ____type", 0],
566
+ ["/ItemList[0]/PropertiesList[0]/Param1Value", 255],
567
+ ["/ItemList[0]/PropertiesList[0]/Param1Value. ____type", 0],
568
+ ["/ItemList[0]/PropertiesList[0]/PropertyName", 15],
569
+ ["/ItemList[0]/PropertiesList[0]/PropertyName. ____type", 2],
570
+ ["/ItemList[0]/PropertiesList[0]/Subtype", 66],
571
+ ["/ItemList[0]/PropertiesList[0]/Subtype. ____type", 2],
572
+ ["/ItemList[0]/PropertiesList[0]/Useable", 1],
573
+ ["/ItemList[0]/PropertiesList[0]/Useable. ____type", 0],
574
+ ["/ItemList[0]/PropertiesList[0]/UsesPerDay", 255],
575
+ ["/ItemList[0]/PropertiesList[0]/UsesPerDay. ____type", 0],
576
+ ["/ItemList[0]/Repos_PosX", 6],
577
+ ["/ItemList[0]/Repos_PosX. ____type", 2],
578
+ ["/ItemList[0]/Repos_Posy", 0],
579
+ ["/ItemList[0]/Repos_Posy. ____type", 2],
580
+ ["/ItemList[0]/StackSize", 1],
581
+ ["/ItemList[0]/StackSize. ____type", 2],
582
+ ["/ItemList[0]/Stolen", 0],
583
+ ["/ItemList[0]/Stolen. ____type", 0],
584
+ ["/ItemList[0]/Tag", "NW_IT_MPOTION001"],
585
+ ["/ItemList[0]/Tag. ____type", 10],
586
+ ["/ItemList[0]/TemplateResRef", "nw_it_mpotion001"],
587
+ ["/ItemList[0]/TemplateResRef. ____type", 11],
588
+ ["/ItemList[0]/XOrientation", 1.0],
589
+ ["/ItemList[0]/XOrientation. ____type", 8],
590
+ ["/ItemList[0]/XPosition", 0.0],
591
+ ["/ItemList[0]/XPosition. ____type", 8],
592
+ ["/ItemList[0]/YOrientation", 0.0],
593
+ ["/ItemList[0]/YOrientation. ____type", 8],
594
+ ["/ItemList[0]/YPosition", 0.0],
595
+ ["/ItemList[0]/YPosition. ____type", 8],
596
+ ["/ItemList[0]/ZOrientation", 0.0],
597
+ ["/ItemList[0]/ZOrientation. ____type", 8],
598
+ ["/ItemList[0]/ZPosition", 0.0],
599
+ ["/ItemList[0]/ZPosition. ____type", 8],
600
+ ["/ItemList[1]/", "/ItemList[1]"],
601
+ ["/ItemList[1]/ ____struct_type", 0],
602
+ ["/ItemList[1]/AddCost", 0],
603
+ ["/ItemList[1]/AddCost. ____type", 4],
604
+ ["/ItemList[1]/BaseItem", 49],
605
+ ["/ItemList[1]/BaseItem. ____type", 5],
606
+ ["/ItemList[1]/Charges", 0],
607
+ ["/ItemList[1]/Charges. ____type", 0],
608
+ ["/ItemList[1]/Cost", 20],
609
+ ["/ItemList[1]/Cost. ____type", 4],
610
+ ["/ItemList[1]/Cursed", 0],
611
+ ["/ItemList[1]/Cursed. ____type", 0],
612
+ ["/ItemList[1]/DescIdentified. ____string_ref", 13410],
613
+ ["/ItemList[1]/DescIdentified. ____type", 12],
614
+ ["/ItemList[1]/DescIdentifiedOv", ""],
615
+ ["/ItemList[1]/DescIdentifiedOv. ____type", 10],
616
+ ["/ItemList[1]/Description. ____string_ref", 4294967295],
617
+ ["/ItemList[1]/Description. ____type", 12],
618
+ ["/ItemList[1]/DescriptionOverr", ""],
619
+ ["/ItemList[1]/DescriptionOverr. ____type", 10],
620
+ ["/ItemList[1]/Dropable", 1],
621
+ ["/ItemList[1]/Dropable. ____type", 0],
622
+ ["/ItemList[1]/Identified", 1],
623
+ ["/ItemList[1]/Identified. ____type", 0],
624
+ ["/ItemList[1]/LocalizedName. ____string_ref", 13411],
625
+ ["/ItemList[1]/LocalizedName. ____type", 12],
626
+ ["/ItemList[1]/ModelPart1", 21],
627
+ ["/ItemList[1]/ModelPart1. ____type", 0],
628
+ ["/ItemList[1]/ModelPart2", 23],
629
+ ["/ItemList[1]/ModelPart2. ____type", 0],
630
+ ["/ItemList[1]/ModelPart3", 32],
631
+ ["/ItemList[1]/ModelPart3. ____type", 0],
632
+ ["/ItemList[1]/ObjectId", 590],
633
+ ["/ItemList[1]/ObjectId. ____type", 4],
634
+ ["/ItemList[1]/Pickpocketable", 1],
635
+ ["/ItemList[1]/Pickpocketable. ____type", 0],
636
+ ["/ItemList[1]/Plot", 0],
637
+ ["/ItemList[1]/Plot. ____type", 0],
638
+ ["/ItemList[1]/PropertiesList. ____type", 15],
639
+ ["/ItemList[1]/PropertiesList[0]/", "/ItemList[1]/PropertiesList[0]"],
640
+ ["/ItemList[1]/PropertiesList[0]/ ____struct_type", 0],
641
+ ["/ItemList[1]/PropertiesList[0]/ChanceAppear", 100],
642
+ ["/ItemList[1]/PropertiesList[0]/ChanceAppear. ____type", 0],
643
+ ["/ItemList[1]/PropertiesList[0]/CostTable", 3],
644
+ ["/ItemList[1]/PropertiesList[0]/CostTable. ____type", 0],
645
+ ["/ItemList[1]/PropertiesList[0]/CostValue", 1],
646
+ ["/ItemList[1]/PropertiesList[0]/CostValue. ____type", 2],
647
+ ["/ItemList[1]/PropertiesList[0]/Param1", 255],
648
+ ["/ItemList[1]/PropertiesList[0]/Param1. ____type", 0],
649
+ ["/ItemList[1]/PropertiesList[0]/Param1Value", 255],
650
+ ["/ItemList[1]/PropertiesList[0]/Param1Value. ____type", 0],
651
+ ["/ItemList[1]/PropertiesList[0]/PropertyName", 15],
652
+ ["/ItemList[1]/PropertiesList[0]/PropertyName. ____type", 2],
653
+ ["/ItemList[1]/PropertiesList[0]/Subtype", 66],
654
+ ["/ItemList[1]/PropertiesList[0]/Subtype. ____type", 2],
655
+ ["/ItemList[1]/PropertiesList[0]/Useable", 1],
656
+ ["/ItemList[1]/PropertiesList[0]/Useable. ____type", 0],
657
+ ["/ItemList[1]/PropertiesList[0]/UsesPerDay", 255],
658
+ ["/ItemList[1]/PropertiesList[0]/UsesPerDay. ____type", 0],
659
+ ["/ItemList[1]/Repos_PosX", 5],
660
+ ["/ItemList[1]/Repos_PosX. ____type", 2],
661
+ ["/ItemList[1]/Repos_Posy", 0],
662
+ ["/ItemList[1]/Repos_Posy. ____type", 2],
663
+ ["/ItemList[1]/StackSize", 1],
664
+ ["/ItemList[1]/StackSize. ____type", 2],
665
+ ["/ItemList[1]/Stolen", 0],
666
+ ["/ItemList[1]/Stolen. ____type", 0],
667
+ ["/ItemList[1]/Tag", "NW_IT_MPOTION001"],
668
+ ["/ItemList[1]/Tag. ____type", 10],
669
+ ["/ItemList[1]/TemplateResRef", "nw_it_mpotion001"],
670
+ ["/ItemList[1]/TemplateResRef. ____type", 11],
671
+ ["/ItemList[1]/XOrientation", 1.0],
672
+ ["/ItemList[1]/XOrientation. ____type", 8],
673
+ ["/ItemList[1]/XPosition", 0.0],
674
+ ["/ItemList[1]/XPosition. ____type", 8],
675
+ ["/ItemList[1]/YOrientation", 0.0],
676
+ ["/ItemList[1]/YOrientation. ____type", 8],
677
+ ["/ItemList[1]/YPosition", 0.0],
678
+ ["/ItemList[1]/YPosition. ____type", 8],
679
+ ["/ItemList[1]/ZOrientation", 0.0],
680
+ ["/ItemList[1]/ZOrientation. ____type", 8],
681
+ ["/ItemList[1]/ZPosition", 0.0],
682
+ ["/ItemList[1]/ZPosition. ____type", 8],
683
+ ["/ItemList[2]/", "/ItemList[2]"],
684
+ ["/ItemList[2]/ ____struct_type", 0],
685
+ ["/ItemList[2]/AddCost", 0],
686
+ ["/ItemList[2]/AddCost. ____type", 4],
687
+ ["/ItemList[2]/BaseItem", 49],
688
+ ["/ItemList[2]/BaseItem. ____type", 5],
689
+ ["/ItemList[2]/Charges", 0],
690
+ ["/ItemList[2]/Charges. ____type", 0],
691
+ ["/ItemList[2]/Cost", 20],
692
+ ["/ItemList[2]/Cost. ____type", 4],
693
+ ["/ItemList[2]/Cursed", 0],
694
+ ["/ItemList[2]/Cursed. ____type", 0],
695
+ ["/ItemList[2]/DescIdentified. ____string_ref", 13410],
696
+ ["/ItemList[2]/DescIdentified. ____type", 12],
697
+ ["/ItemList[2]/DescIdentifiedOv", ""],
698
+ ["/ItemList[2]/DescIdentifiedOv. ____type", 10],
699
+ ["/ItemList[2]/Description. ____string_ref", 4294967295],
700
+ ["/ItemList[2]/Description. ____type", 12],
701
+ ["/ItemList[2]/DescriptionOverr", ""],
702
+ ["/ItemList[2]/DescriptionOverr. ____type", 10],
703
+ ["/ItemList[2]/Dropable", 1],
704
+ ["/ItemList[2]/Dropable. ____type", 0],
705
+ ["/ItemList[2]/Identified", 1],
706
+ ["/ItemList[2]/Identified. ____type", 0],
707
+ ["/ItemList[2]/LocalizedName. ____string_ref", 13411],
708
+ ["/ItemList[2]/LocalizedName. ____type", 12],
709
+ ["/ItemList[2]/ModelPart1", 21],
710
+ ["/ItemList[2]/ModelPart1. ____type", 0],
711
+ ["/ItemList[2]/ModelPart2", 23],
712
+ ["/ItemList[2]/ModelPart2. ____type", 0],
713
+ ["/ItemList[2]/ModelPart3", 32],
714
+ ["/ItemList[2]/ModelPart3. ____type", 0],
715
+ ["/ItemList[2]/ObjectId", 589],
716
+ ["/ItemList[2]/ObjectId. ____type", 4],
717
+ ["/ItemList[2]/Pickpocketable", 1],
718
+ ["/ItemList[2]/Pickpocketable. ____type", 0],
719
+ ["/ItemList[2]/Plot", 0],
720
+ ["/ItemList[2]/Plot. ____type", 0],
721
+ ["/ItemList[2]/PropertiesList. ____type", 15],
722
+ ["/ItemList[2]/PropertiesList[0]/", "/ItemList[2]/PropertiesList[0]"],
723
+ ["/ItemList[2]/PropertiesList[0]/ ____struct_type", 0],
724
+ ["/ItemList[2]/PropertiesList[0]/ChanceAppear", 100],
725
+ ["/ItemList[2]/PropertiesList[0]/ChanceAppear. ____type", 0],
726
+ ["/ItemList[2]/PropertiesList[0]/CostTable", 3],
727
+ ["/ItemList[2]/PropertiesList[0]/CostTable. ____type", 0],
728
+ ["/ItemList[2]/PropertiesList[0]/CostValue", 1],
729
+ ["/ItemList[2]/PropertiesList[0]/CostValue. ____type", 2],
730
+ ["/ItemList[2]/PropertiesList[0]/Param1", 255],
731
+ ["/ItemList[2]/PropertiesList[0]/Param1. ____type", 0],
732
+ ["/ItemList[2]/PropertiesList[0]/Param1Value", 255],
733
+ ["/ItemList[2]/PropertiesList[0]/Param1Value. ____type", 0],
734
+ ["/ItemList[2]/PropertiesList[0]/PropertyName", 15],
735
+ ["/ItemList[2]/PropertiesList[0]/PropertyName. ____type", 2],
736
+ ["/ItemList[2]/PropertiesList[0]/Subtype", 66],
737
+ ["/ItemList[2]/PropertiesList[0]/Subtype. ____type", 2],
738
+ ["/ItemList[2]/PropertiesList[0]/Useable", 1],
739
+ ["/ItemList[2]/PropertiesList[0]/Useable. ____type", 0],
740
+ ["/ItemList[2]/PropertiesList[0]/UsesPerDay", 255],
741
+ ["/ItemList[2]/PropertiesList[0]/UsesPerDay. ____type", 0],
742
+ ["/ItemList[2]/Repos_PosX", 4],
743
+ ["/ItemList[2]/Repos_PosX. ____type", 2],
744
+ ["/ItemList[2]/Repos_Posy", 0],
745
+ ["/ItemList[2]/Repos_Posy. ____type", 2],
746
+ ["/ItemList[2]/StackSize", 1],
747
+ ["/ItemList[2]/StackSize. ____type", 2],
748
+ ["/ItemList[2]/Stolen", 0],
749
+ ["/ItemList[2]/Stolen. ____type", 0],
750
+ ["/ItemList[2]/Tag", "NW_IT_MPOTION001"],
751
+ ["/ItemList[2]/Tag. ____type", 10],
752
+ ["/ItemList[2]/TemplateResRef", "nw_it_mpotion001"],
753
+ ["/ItemList[2]/TemplateResRef. ____type", 11],
754
+ ["/ItemList[2]/XOrientation", 1.0],
755
+ ["/ItemList[2]/XOrientation. ____type", 8],
756
+ ["/ItemList[2]/XPosition", 0.0],
757
+ ["/ItemList[2]/XPosition. ____type", 8],
758
+ ["/ItemList[2]/YOrientation", 0.0],
759
+ ["/ItemList[2]/YOrientation. ____type", 8],
760
+ ["/ItemList[2]/YPosition", 0.0],
761
+ ["/ItemList[2]/YPosition. ____type", 8],
762
+ ["/ItemList[2]/ZOrientation", 0.0],
763
+ ["/ItemList[2]/ZOrientation. ____type", 8],
764
+ ["/ItemList[2]/ZPosition", 0.0],
765
+ ["/ItemList[2]/ZPosition. ____type", 8],
766
+ ["/ItemList[3]/", "/ItemList[3]"],
767
+ ["/ItemList[3]/ ____struct_type", 0],
768
+ ["/ItemList[3]/AddCost", 1],
769
+ ["/ItemList[3]/AddCost. ____type", 4],
770
+ ["/ItemList[3]/BaseItem", 15],
771
+ ["/ItemList[3]/BaseItem. ____type", 5],
772
+ ["/ItemList[3]/Charges", 0],
773
+ ["/ItemList[3]/Charges. ____type", 0],
774
+ ["/ItemList[3]/Cost", 6],
775
+ ["/ItemList[3]/Cost. ____type", 4],
776
+ ["/ItemList[3]/Cursed", 0],
777
+ ["/ItemList[3]/Cursed. ____type", 0],
778
+ ["/ItemList[3]/DescIdentified. ____string_ref", 4294967295],
779
+ ["/ItemList[3]/DescIdentified. ____type", 12],
780
+ ["/ItemList[3]/DescIdentifiedOv", ""],
781
+ ["/ItemList[3]/DescIdentifiedOv. ____type", 10],
782
+ ["/ItemList[3]/Description. ____string_ref", 4294967295],
783
+ ["/ItemList[3]/Description. ____type", 12],
784
+ ["/ItemList[3]/DescriptionOverr", ""],
785
+ ["/ItemList[3]/DescriptionOverr. ____type", 10],
786
+ ["/ItemList[3]/Dropable", 1],
787
+ ["/ItemList[3]/Dropable. ____type", 0],
788
+ ["/ItemList[3]/Identified", 1],
789
+ ["/ItemList[3]/Identified. ____type", 0],
790
+ ["/ItemList[3]/LocalizedName. ____string_ref", 180],
791
+ ["/ItemList[3]/LocalizedName. ____type", 12],
792
+ ["/ItemList[3]/ModelPart1", 0],
793
+ ["/ItemList[3]/ModelPart1. ____type", 0],
794
+ ["/ItemList[3]/ObjectId", 588],
795
+ ["/ItemList[3]/ObjectId. ____type", 4],
796
+ ["/ItemList[3]/Pickpocketable", 1],
797
+ ["/ItemList[3]/Pickpocketable. ____type", 0],
798
+ ["/ItemList[3]/Plot", 0],
799
+ ["/ItemList[3]/Plot. ____type", 0],
800
+ ["/ItemList[3]/PropertiesList. ____type", 15],
801
+ ["/ItemList[3]/PropertiesList[0]/", "/ItemList[3]/PropertiesList[0]"],
802
+ ["/ItemList[3]/PropertiesList[0]/ ____struct_type", 0],
803
+ ["/ItemList[3]/PropertiesList[0]/ChanceAppear", 100],
804
+ ["/ItemList[3]/PropertiesList[0]/ChanceAppear. ____type", 0],
805
+ ["/ItemList[3]/PropertiesList[0]/CostTable", 18],
806
+ ["/ItemList[3]/PropertiesList[0]/CostTable. ____type", 0],
807
+ ["/ItemList[3]/PropertiesList[0]/CostValue", 4],
808
+ ["/ItemList[3]/PropertiesList[0]/CostValue. ____type", 2],
809
+ ["/ItemList[3]/PropertiesList[0]/Param1", 9],
810
+ ["/ItemList[3]/PropertiesList[0]/Param1. ____type", 0],
811
+ ["/ItemList[3]/PropertiesList[0]/Param1Value", 1],
812
+ ["/ItemList[3]/PropertiesList[0]/Param1Value. ____type", 0],
813
+ ["/ItemList[3]/PropertiesList[0]/PropertyName", 44],
814
+ ["/ItemList[3]/PropertiesList[0]/PropertyName. ____type", 2],
815
+ ["/ItemList[3]/PropertiesList[0]/Subtype", 0],
816
+ ["/ItemList[3]/PropertiesList[0]/Subtype. ____type", 2],
817
+ ["/ItemList[3]/PropertiesList[0]/Useable", 1],
818
+ ["/ItemList[3]/PropertiesList[0]/Useable. ____type", 0],
819
+ ["/ItemList[3]/PropertiesList[0]/UsesPerDay", 255],
820
+ ["/ItemList[3]/PropertiesList[0]/UsesPerDay. ____type", 0],
821
+ ["/ItemList[3]/Repos_PosX", 3],
822
+ ["/ItemList[3]/Repos_PosX. ____type", 2],
823
+ ["/ItemList[3]/Repos_Posy", 0],
824
+ ["/ItemList[3]/Repos_Posy. ____type", 2],
825
+ ["/ItemList[3]/StackSize", 1],
826
+ ["/ItemList[3]/StackSize. ____type", 2],
827
+ ["/ItemList[3]/Stolen", 0],
828
+ ["/ItemList[3]/Stolen. ____type", 0],
829
+ ["/ItemList[3]/Tag", "NW_IT_TORCH001"],
830
+ ["/ItemList[3]/Tag. ____type", 10],
831
+ ["/ItemList[3]/TemplateResRef", "nw_it_torch001"],
832
+ ["/ItemList[3]/TemplateResRef. ____type", 11],
833
+ ["/ItemList[3]/XOrientation", 1.0],
834
+ ["/ItemList[3]/XOrientation. ____type", 8],
835
+ ["/ItemList[3]/XPosition", 0.0],
836
+ ["/ItemList[3]/XPosition. ____type", 8],
837
+ ["/ItemList[3]/YOrientation", 0.0],
838
+ ["/ItemList[3]/YOrientation. ____type", 8],
839
+ ["/ItemList[3]/YPosition", 0.0],
840
+ ["/ItemList[3]/YPosition. ____type", 8],
841
+ ["/ItemList[3]/ZOrientation", 0.0],
842
+ ["/ItemList[3]/ZOrientation. ____type", 8],
843
+ ["/ItemList[3]/ZPosition", 0.0],
844
+ ["/ItemList[3]/ZPosition. ____type", 8],
845
+ ["/ItemList[4]/", "/ItemList[4]"],
846
+ ["/ItemList[4]/ ____struct_type", 0],
847
+ ["/ItemList[4]/AddCost", 0],
848
+ ["/ItemList[4]/AddCost. ____type", 4],
849
+ ["/ItemList[4]/ArmorPart_Belt", 0],
850
+ ["/ItemList[4]/ArmorPart_Belt. ____type", 0],
851
+ ["/ItemList[4]/ArmorPart_LBicep", 4],
852
+ ["/ItemList[4]/ArmorPart_LBicep. ____type", 0],
853
+ ["/ItemList[4]/ArmorPart_LFArm", 16],
854
+ ["/ItemList[4]/ArmorPart_LFArm. ____type", 0],
855
+ ["/ItemList[4]/ArmorPart_LFoot", 4],
856
+ ["/ItemList[4]/ArmorPart_LFoot. ____type", 0],
857
+ ["/ItemList[4]/ArmorPart_LHand", 3],
858
+ ["/ItemList[4]/ArmorPart_LHand. ____type", 0],
859
+ ["/ItemList[4]/ArmorPart_LShin", 13],
860
+ ["/ItemList[4]/ArmorPart_LShin. ____type", 0],
861
+ ["/ItemList[4]/ArmorPart_LShoul", 15],
862
+ ["/ItemList[4]/ArmorPart_LShoul. ____type", 0],
863
+ ["/ItemList[4]/ArmorPart_LThigh", 3],
864
+ ["/ItemList[4]/ArmorPart_LThigh. ____type", 0],
865
+ ["/ItemList[4]/ArmorPart_Neck", 1],
866
+ ["/ItemList[4]/ArmorPart_Neck. ____type", 0],
867
+ ["/ItemList[4]/ArmorPart_Pelvis", 8],
868
+ ["/ItemList[4]/ArmorPart_Pelvis. ____type", 0],
869
+ ["/ItemList[4]/ArmorPart_RBicep", 4],
870
+ ["/ItemList[4]/ArmorPart_RBicep. ____type", 0],
871
+ ["/ItemList[4]/ArmorPart_RFArm", 16],
872
+ ["/ItemList[4]/ArmorPart_RFArm. ____type", 0],
873
+ ["/ItemList[4]/ArmorPart_RFoot", 4],
874
+ ["/ItemList[4]/ArmorPart_RFoot. ____type", 0],
875
+ ["/ItemList[4]/ArmorPart_RHand", 3],
876
+ ["/ItemList[4]/ArmorPart_RHand. ____type", 0],
877
+ ["/ItemList[4]/ArmorPart_RShin", 13],
878
+ ["/ItemList[4]/ArmorPart_RShin. ____type", 0],
879
+ ["/ItemList[4]/ArmorPart_RShoul", 15],
880
+ ["/ItemList[4]/ArmorPart_RShoul. ____type", 0],
881
+ ["/ItemList[4]/ArmorPart_RThigh", 3],
882
+ ["/ItemList[4]/ArmorPart_RThigh. ____type", 0],
883
+ ["/ItemList[4]/ArmorPart_Robe", 0],
884
+ ["/ItemList[4]/ArmorPart_Robe. ____type", 0],
885
+ ["/ItemList[4]/ArmorPart_Torso", 43],
886
+ ["/ItemList[4]/ArmorPart_Torso. ____type", 0],
887
+ ["/ItemList[4]/BaseItem", 16],
888
+ ["/ItemList[4]/BaseItem. ____type", 5],
889
+ ["/ItemList[4]/Charges", 0],
890
+ ["/ItemList[4]/Charges. ____type", 0],
891
+ ["/ItemList[4]/Cloth1Color", 2],
892
+ ["/ItemList[4]/Cloth1Color. ____type", 0],
893
+ ["/ItemList[4]/Cloth2Color", 3],
894
+ ["/ItemList[4]/Cloth2Color. ____type", 0],
895
+ ["/ItemList[4]/Cost", 15],
896
+ ["/ItemList[4]/Cost. ____type", 4],
897
+ ["/ItemList[4]/Cursed", 0],
898
+ ["/ItemList[4]/Cursed. ____type", 0],
899
+ ["/ItemList[4]/DescIdentified. ____string_ref", 4294967295],
900
+ ["/ItemList[4]/DescIdentified. ____type", 12],
901
+ ["/ItemList[4]/DescIdentifiedOv", ""],
902
+ ["/ItemList[4]/DescIdentifiedOv. ____type", 10],
903
+ ["/ItemList[4]/Description. ____string_ref", 4294967295],
904
+ ["/ItemList[4]/Description. ____type", 12],
905
+ ["/ItemList[4]/DescriptionOverr", ""],
906
+ ["/ItemList[4]/DescriptionOverr. ____type", 10],
907
+ ["/ItemList[4]/Dropable", 1],
908
+ ["/ItemList[4]/Dropable. ____type", 0],
909
+ ["/ItemList[4]/Identified", 1],
910
+ ["/ItemList[4]/Identified. ____type", 0],
911
+ ["/ItemList[4]/Leather1Color", 5],
912
+ ["/ItemList[4]/Leather1Color. ____type", 0],
913
+ ["/ItemList[4]/Leather2Color", 7],
914
+ ["/ItemList[4]/Leather2Color. ____type", 0],
915
+ ["/ItemList[4]/LocalizedName. ____string_ref", 12840],
916
+ ["/ItemList[4]/LocalizedName. ____type", 12],
917
+ ["/ItemList[4]/Metal1Color", 17],
918
+ ["/ItemList[4]/Metal1Color. ____type", 0],
919
+ ["/ItemList[4]/Metal2Color", 8],
920
+ ["/ItemList[4]/Metal2Color. ____type", 0],
921
+ ["/ItemList[4]/ObjectId", 587],
922
+ ["/ItemList[4]/ObjectId. ____type", 4],
923
+ ["/ItemList[4]/Pickpocketable", 1],
924
+ ["/ItemList[4]/Pickpocketable. ____type", 0],
925
+ ["/ItemList[4]/Plot", 0],
926
+ ["/ItemList[4]/Plot. ____type", 0],
927
+ ["/ItemList[4]/PropertiesList. ____type", 15],
928
+ ["/ItemList[4]/Repos_PosX", 1],
929
+ ["/ItemList[4]/Repos_PosX. ____type", 2],
930
+ ["/ItemList[4]/Repos_Posy", 0],
931
+ ["/ItemList[4]/Repos_Posy. ____type", 2],
932
+ ["/ItemList[4]/StackSize", 1],
933
+ ["/ItemList[4]/StackSize. ____type", 2],
934
+ ["/ItemList[4]/Stolen", 0],
935
+ ["/ItemList[4]/Stolen. ____type", 0],
936
+ ["/ItemList[4]/Tag", "NW_AARCL008"],
937
+ ["/ItemList[4]/Tag. ____type", 10],
938
+ ["/ItemList[4]/TemplateResRef", "nw_aarcl008"],
939
+ ["/ItemList[4]/TemplateResRef. ____type", 11],
940
+ ["/ItemList[4]/UArmorPart_Belt", 0],
941
+ ["/ItemList[4]/UArmorPart_Belt. ____type", 0],
942
+ ["/ItemList[4]/UArmorPart_LBice", 4],
943
+ ["/ItemList[4]/UArmorPart_LBice. ____type", 0],
944
+ ["/ItemList[4]/UArmorPart_LFArm", 16],
945
+ ["/ItemList[4]/UArmorPart_LFArm. ____type", 0],
946
+ ["/ItemList[4]/UArmorPart_LFoot", 4],
947
+ ["/ItemList[4]/UArmorPart_LFoot. ____type", 0],
948
+ ["/ItemList[4]/UArmorPart_LHand", 3],
949
+ ["/ItemList[4]/UArmorPart_LHand. ____type", 0],
950
+ ["/ItemList[4]/UArmorPart_LShin", 13],
951
+ ["/ItemList[4]/UArmorPart_LShin. ____type", 0],
952
+ ["/ItemList[4]/UArmorPart_LShou", 15],
953
+ ["/ItemList[4]/UArmorPart_LShou. ____type", 0],
954
+ ["/ItemList[4]/UArmorPart_LThig", 3],
955
+ ["/ItemList[4]/UArmorPart_LThig. ____type", 0],
956
+ ["/ItemList[4]/UArmorPart_Neck", 1],
957
+ ["/ItemList[4]/UArmorPart_Neck. ____type", 0],
958
+ ["/ItemList[4]/UArmorPart_Pelvi", 8],
959
+ ["/ItemList[4]/UArmorPart_Pelvi. ____type", 0],
960
+ ["/ItemList[4]/UArmorPart_RBice", 4],
961
+ ["/ItemList[4]/UArmorPart_RBice. ____type", 0],
962
+ ["/ItemList[4]/UArmorPart_RFArm", 16],
963
+ ["/ItemList[4]/UArmorPart_RFArm. ____type", 0],
964
+ ["/ItemList[4]/UArmorPart_RFoot", 4],
965
+ ["/ItemList[4]/UArmorPart_RFoot. ____type", 0],
966
+ ["/ItemList[4]/UArmorPart_RHand", 3],
967
+ ["/ItemList[4]/UArmorPart_RHand. ____type", 0],
968
+ ["/ItemList[4]/UArmorPart_RShin", 13],
969
+ ["/ItemList[4]/UArmorPart_RShin. ____type", 0],
970
+ ["/ItemList[4]/UArmorPart_RShou", 15],
971
+ ["/ItemList[4]/UArmorPart_RShou. ____type", 0],
972
+ ["/ItemList[4]/UArmorPart_RThig", 3],
973
+ ["/ItemList[4]/UArmorPart_RThig. ____type", 0],
974
+ ["/ItemList[4]/UArmorPart_Robe", 0],
975
+ ["/ItemList[4]/UArmorPart_Robe. ____type", 0],
976
+ ["/ItemList[4]/UArmorPart_Torso", 43],
977
+ ["/ItemList[4]/UArmorPart_Torso. ____type", 0],
978
+ ["/ItemList[4]/XOrientation", 1.0],
979
+ ["/ItemList[4]/XOrientation. ____type", 8],
980
+ ["/ItemList[4]/XPosition", 0.0],
981
+ ["/ItemList[4]/XPosition. ____type", 8],
982
+ ["/ItemList[4]/YOrientation", 0.0],
983
+ ["/ItemList[4]/YOrientation. ____type", 8],
984
+ ["/ItemList[4]/YPosition", 0.0],
985
+ ["/ItemList[4]/YPosition. ____type", 8],
986
+ ["/ItemList[4]/ZOrientation", 0.0],
987
+ ["/ItemList[4]/ZOrientation. ____type", 8],
988
+ ["/ItemList[4]/ZPosition", 0.0],
989
+ ["/ItemList[4]/ZPosition. ____type", 8],
990
+ ["/ItemList[5]/", "/ItemList[5]"],
991
+ ["/ItemList[5]/ ____struct_type", 0],
992
+ ["/ItemList[5]/AddCost", 0],
993
+ ["/ItemList[5]/AddCost. ____type", 4],
994
+ ["/ItemList[5]/BaseItem", 38],
995
+ ["/ItemList[5]/BaseItem. ____type", 5],
996
+ ["/ItemList[5]/Charges", 0],
997
+ ["/ItemList[5]/Charges. ____type", 0],
998
+ ["/ItemList[5]/Cost", 12],
999
+ ["/ItemList[5]/Cost. ____type", 4],
1000
+ ["/ItemList[5]/Cursed", 0],
1001
+ ["/ItemList[5]/Cursed. ____type", 0],
1002
+ ["/ItemList[5]/DescIdentified. ____string_ref", 4294967295],
1003
+ ["/ItemList[5]/DescIdentified. ____type", 12],
1004
+ ["/ItemList[5]/DescIdentifiedOv", ""],
1005
+ ["/ItemList[5]/DescIdentifiedOv. ____type", 10],
1006
+ ["/ItemList[5]/Description. ____string_ref", 4294967295],
1007
+ ["/ItemList[5]/Description. ____type", 12],
1008
+ ["/ItemList[5]/DescriptionOverr", ""],
1009
+ ["/ItemList[5]/DescriptionOverr. ____type", 10],
1010
+ ["/ItemList[5]/Dropable", 1],
1011
+ ["/ItemList[5]/Dropable. ____type", 0],
1012
+ ["/ItemList[5]/Identified", 1],
1013
+ ["/ItemList[5]/Identified. ____type", 0],
1014
+ ["/ItemList[5]/LocalizedName. ____string_ref", 1532],
1015
+ ["/ItemList[5]/LocalizedName. ____type", 12],
1016
+ ["/ItemList[5]/ModelPart1", 11],
1017
+ ["/ItemList[5]/ModelPart1. ____type", 0],
1018
+ ["/ItemList[5]/ModelPart2", 11],
1019
+ ["/ItemList[5]/ModelPart2. ____type", 0],
1020
+ ["/ItemList[5]/ModelPart3", 11],
1021
+ ["/ItemList[5]/ModelPart3. ____type", 0],
1022
+ ["/ItemList[5]/ObjectId", 586],
1023
+ ["/ItemList[5]/ObjectId. ____type", 4],
1024
+ ["/ItemList[5]/Pickpocketable", 1],
1025
+ ["/ItemList[5]/Pickpocketable. ____type", 0],
1026
+ ["/ItemList[5]/Plot", 0],
1027
+ ["/ItemList[5]/Plot. ____type", 0],
1028
+ ["/ItemList[5]/PropertiesList. ____type", 15],
1029
+ ["/ItemList[5]/Repos_PosX", 0],
1030
+ ["/ItemList[5]/Repos_PosX. ____type", 2],
1031
+ ["/ItemList[5]/Repos_Posy", 0],
1032
+ ["/ItemList[5]/Repos_Posy. ____type", 2],
1033
+ ["/ItemList[5]/StackSize", 1],
1034
+ ["/ItemList[5]/StackSize. ____type", 2],
1035
+ ["/ItemList[5]/Stolen", 0],
1036
+ ["/ItemList[5]/Stolen. ____type", 0],
1037
+ ["/ItemList[5]/Tag", "NW_WAXHN001"],
1038
+ ["/ItemList[5]/Tag. ____type", 10],
1039
+ ["/ItemList[5]/TemplateResRef", "nw_waxhn001"],
1040
+ ["/ItemList[5]/TemplateResRef. ____type", 11],
1041
+ ["/ItemList[5]/XOrientation", 1.0],
1042
+ ["/ItemList[5]/XOrientation. ____type", 8],
1043
+ ["/ItemList[5]/XPosition", 0.0],
1044
+ ["/ItemList[5]/XPosition. ____type", 8],
1045
+ ["/ItemList[5]/YOrientation", 0.0],
1046
+ ["/ItemList[5]/YOrientation. ____type", 8],
1047
+ ["/ItemList[5]/YPosition", 0.0],
1048
+ ["/ItemList[5]/YPosition. ____type", 8],
1049
+ ["/ItemList[5]/ZOrientation", 0.0],
1050
+ ["/ItemList[5]/ZOrientation. ____type", 8],
1051
+ ["/ItemList[5]/ZPosition", 0.0],
1052
+ ["/ItemList[5]/ZPosition. ____type", 8],
1053
+ ["/LastName. ____string_ref", 4294967295],
1054
+ ["/LastName. ____type", 12],
1055
+ ["/LastName/0", "Character"],
1056
+ ["/LawfulChaotic", 15],
1057
+ ["/LawfulChaotic. ____type", 0],
1058
+ ["/Listening", 0],
1059
+ ["/Listening. ____type", 0],
1060
+ ["/Lootable", 0],
1061
+ ["/Lootable. ____type", 0],
1062
+ ["/LvlStatList. ____type", 15],
1063
+ ["/LvlStatList[0]/", "/LvlStatList[0]"],
1064
+ ["/LvlStatList[0]/ ____struct_type", 0],
1065
+ ["/LvlStatList[0]/EpicLevel", 0],
1066
+ ["/LvlStatList[0]/EpicLevel. ____type", 0],
1067
+ ["/LvlStatList[0]/FeatList. ____type", 15],
1068
+ ["/LvlStatList[0]/FeatList[0]/", "/LvlStatList[0]/FeatList[0]"],
1069
+ ["/LvlStatList[0]/FeatList[0]/ ____struct_type", 0],
1070
+ ["/LvlStatList[0]/FeatList[0]/Feat", 3],
1071
+ ["/LvlStatList[0]/FeatList[0]/Feat. ____type", 2],
1072
+ ["/LvlStatList[0]/FeatList[1]/", "/LvlStatList[0]/FeatList[1]"],
1073
+ ["/LvlStatList[0]/FeatList[1]/ ____struct_type", 0],
1074
+ ["/LvlStatList[0]/FeatList[1]/Feat", 4],
1075
+ ["/LvlStatList[0]/FeatList[1]/Feat. ____type", 2],
1076
+ ["/LvlStatList[0]/FeatList[2]/", "/LvlStatList[0]/FeatList[2]"],
1077
+ ["/LvlStatList[0]/FeatList[2]/ ____struct_type", 0],
1078
+ ["/LvlStatList[0]/FeatList[2]/Feat", 32],
1079
+ ["/LvlStatList[0]/FeatList[2]/Feat. ____type", 2],
1080
+ ["/LvlStatList[0]/FeatList[3]/", "/LvlStatList[0]/FeatList[3]"],
1081
+ ["/LvlStatList[0]/FeatList[3]/ ____struct_type", 0],
1082
+ ["/LvlStatList[0]/FeatList[3]/Feat", 45],
1083
+ ["/LvlStatList[0]/FeatList[3]/Feat. ____type", 2],
1084
+ ["/LvlStatList[0]/FeatList[4]/", "/LvlStatList[0]/FeatList[4]"],
1085
+ ["/LvlStatList[0]/FeatList[4]/ ____struct_type", 0],
1086
+ ["/LvlStatList[0]/FeatList[4]/Feat", 46],
1087
+ ["/LvlStatList[0]/FeatList[4]/Feat. ____type", 2],
1088
+ ["/LvlStatList[0]/FeatList[5]/", "/LvlStatList[0]/FeatList[5]"],
1089
+ ["/LvlStatList[0]/FeatList[5]/ ____struct_type", 0],
1090
+ ["/LvlStatList[0]/FeatList[5]/Feat", 194],
1091
+ ["/LvlStatList[0]/FeatList[5]/Feat. ____type", 2],
1092
+ ["/LvlStatList[0]/FeatList[6]/", "/LvlStatList[0]/FeatList[6]"],
1093
+ ["/LvlStatList[0]/FeatList[6]/ ____struct_type", 0],
1094
+ ["/LvlStatList[0]/FeatList[6]/Feat", 258],
1095
+ ["/LvlStatList[0]/FeatList[6]/Feat. ____type", 2],
1096
+ ["/LvlStatList[0]/FeatList[7]/", "/LvlStatList[0]/FeatList[7]"],
1097
+ ["/LvlStatList[0]/FeatList[7]/ ____struct_type", 0],
1098
+ ["/LvlStatList[0]/FeatList[7]/Feat", 293],
1099
+ ["/LvlStatList[0]/FeatList[7]/Feat. ____type", 2],
1100
+ ["/LvlStatList[0]/FeatList[8]/", "/LvlStatList[0]/FeatList[8]"],
1101
+ ["/LvlStatList[0]/FeatList[8]/ ____struct_type", 0],
1102
+ ["/LvlStatList[0]/FeatList[8]/Feat", 1089],
1103
+ ["/LvlStatList[0]/FeatList[8]/Feat. ____type", 2],
1104
+ ["/LvlStatList[0]/FeatList[9]/", "/LvlStatList[0]/FeatList[9]"],
1105
+ ["/LvlStatList[0]/FeatList[9]/ ____struct_type", 0],
1106
+ ["/LvlStatList[0]/FeatList[9]/Feat", 28],
1107
+ ["/LvlStatList[0]/FeatList[9]/Feat. ____type", 2],
1108
+ ["/LvlStatList[0]/FeatList[10]/", "/LvlStatList[0]/FeatList[10]"],
1109
+ ["/LvlStatList[0]/FeatList[10]/ ____struct_type", 0],
1110
+ ["/LvlStatList[0]/FeatList[10]/Feat", 111],
1111
+ ["/LvlStatList[0]/FeatList[10]/Feat. ____type", 2],
1112
+ ["/LvlStatList[0]/LvlStatClass", 0],
1113
+ ["/LvlStatList[0]/LvlStatClass. ____type", 0],
1114
+ ["/LvlStatList[0]/LvlStatHitDie", 12],
1115
+ ["/LvlStatList[0]/LvlStatHitDie. ____type", 0],
1116
+ ["/LvlStatList[0]/SkillList. ____type", 15],
1117
+ ["/LvlStatList[0]/SkillList[0]/", "/LvlStatList[0]/SkillList[0]"],
1118
+ ["/LvlStatList[0]/SkillList[0]/ ____struct_type", 0],
1119
+ ["/LvlStatList[0]/SkillList[0]/Rank", 0],
1120
+ ["/LvlStatList[0]/SkillList[0]/Rank. ____type", 0],
1121
+ ["/LvlStatList[0]/SkillList[1]/", "/LvlStatList[0]/SkillList[1]"],
1122
+ ["/LvlStatList[0]/SkillList[1]/ ____struct_type", 0],
1123
+ ["/LvlStatList[0]/SkillList[1]/Rank", 0],
1124
+ ["/LvlStatList[0]/SkillList[1]/Rank. ____type", 0],
1125
+ ["/LvlStatList[0]/SkillList[2]/", "/LvlStatList[0]/SkillList[2]"],
1126
+ ["/LvlStatList[0]/SkillList[2]/ ____struct_type", 0],
1127
+ ["/LvlStatList[0]/SkillList[2]/Rank", 0],
1128
+ ["/LvlStatList[0]/SkillList[2]/Rank. ____type", 0],
1129
+ ["/LvlStatList[0]/SkillList[3]/", "/LvlStatList[0]/SkillList[3]"],
1130
+ ["/LvlStatList[0]/SkillList[3]/ ____struct_type", 0],
1131
+ ["/LvlStatList[0]/SkillList[3]/Rank", 4],
1132
+ ["/LvlStatList[0]/SkillList[3]/Rank. ____type", 0],
1133
+ ["/LvlStatList[0]/SkillList[4]/", "/LvlStatList[0]/SkillList[4]"],
1134
+ ["/LvlStatList[0]/SkillList[4]/ ____struct_type", 0],
1135
+ ["/LvlStatList[0]/SkillList[4]/Rank", 0],
1136
+ ["/LvlStatList[0]/SkillList[4]/Rank. ____type", 0],
1137
+ ["/LvlStatList[0]/SkillList[5]/", "/LvlStatList[0]/SkillList[5]"],
1138
+ ["/LvlStatList[0]/SkillList[5]/ ____struct_type", 0],
1139
+ ["/LvlStatList[0]/SkillList[5]/Rank", 0],
1140
+ ["/LvlStatList[0]/SkillList[5]/Rank. ____type", 0],
1141
+ ["/LvlStatList[0]/SkillList[6]/", "/LvlStatList[0]/SkillList[6]"],
1142
+ ["/LvlStatList[0]/SkillList[6]/ ____struct_type", 0],
1143
+ ["/LvlStatList[0]/SkillList[6]/Rank", 4],
1144
+ ["/LvlStatList[0]/SkillList[6]/Rank. ____type", 0],
1145
+ ["/LvlStatList[0]/SkillList[7]/", "/LvlStatList[0]/SkillList[7]"],
1146
+ ["/LvlStatList[0]/SkillList[7]/ ____struct_type", 0],
1147
+ ["/LvlStatList[0]/SkillList[7]/Rank", 0],
1148
+ ["/LvlStatList[0]/SkillList[7]/Rank. ____type", 0],
1149
+ ["/LvlStatList[0]/SkillList[8]/", "/LvlStatList[0]/SkillList[8]"],
1150
+ ["/LvlStatList[0]/SkillList[8]/ ____struct_type", 0],
1151
+ ["/LvlStatList[0]/SkillList[8]/Rank", 0],
1152
+ ["/LvlStatList[0]/SkillList[8]/Rank. ____type", 0],
1153
+ ["/LvlStatList[0]/SkillList[9]/", "/LvlStatList[0]/SkillList[9]"],
1154
+ ["/LvlStatList[0]/SkillList[9]/ ____struct_type", 0],
1155
+ ["/LvlStatList[0]/SkillList[9]/Rank", 0],
1156
+ ["/LvlStatList[0]/SkillList[9]/Rank. ____type", 0],
1157
+ ["/LvlStatList[0]/SkillList[10]/", "/LvlStatList[0]/SkillList[10]"],
1158
+ ["/LvlStatList[0]/SkillList[10]/ ____struct_type", 0],
1159
+ ["/LvlStatList[0]/SkillList[10]/Rank", 4],
1160
+ ["/LvlStatList[0]/SkillList[10]/Rank. ____type", 0],
1161
+ ["/LvlStatList[0]/SkillList[11]/", "/LvlStatList[0]/SkillList[11]"],
1162
+ ["/LvlStatList[0]/SkillList[11]/ ____struct_type", 0],
1163
+ ["/LvlStatList[0]/SkillList[11]/Rank", 0],
1164
+ ["/LvlStatList[0]/SkillList[11]/Rank. ____type", 0],
1165
+ ["/LvlStatList[0]/SkillList[12]/", "/LvlStatList[0]/SkillList[12]"],
1166
+ ["/LvlStatList[0]/SkillList[12]/ ____struct_type", 0],
1167
+ ["/LvlStatList[0]/SkillList[12]/Rank", 0],
1168
+ ["/LvlStatList[0]/SkillList[12]/Rank. ____type", 0],
1169
+ ["/LvlStatList[0]/SkillList[13]/", "/LvlStatList[0]/SkillList[13]"],
1170
+ ["/LvlStatList[0]/SkillList[13]/ ____struct_type", 0],
1171
+ ["/LvlStatList[0]/SkillList[13]/Rank", 0],
1172
+ ["/LvlStatList[0]/SkillList[13]/Rank. ____type", 0],
1173
+ ["/LvlStatList[0]/SkillList[14]/", "/LvlStatList[0]/SkillList[14]"],
1174
+ ["/LvlStatList[0]/SkillList[14]/ ____struct_type", 0],
1175
+ ["/LvlStatList[0]/SkillList[14]/Rank", 0],
1176
+ ["/LvlStatList[0]/SkillList[14]/Rank. ____type", 0],
1177
+ ["/LvlStatList[0]/SkillList[15]/", "/LvlStatList[0]/SkillList[15]"],
1178
+ ["/LvlStatList[0]/SkillList[15]/ ____struct_type", 0],
1179
+ ["/LvlStatList[0]/SkillList[15]/Rank", 0],
1180
+ ["/LvlStatList[0]/SkillList[15]/Rank. ____type", 0],
1181
+ ["/LvlStatList[0]/SkillList[16]/", "/LvlStatList[0]/SkillList[16]"],
1182
+ ["/LvlStatList[0]/SkillList[16]/ ____struct_type", 0],
1183
+ ["/LvlStatList[0]/SkillList[16]/Rank", 0],
1184
+ ["/LvlStatList[0]/SkillList[16]/Rank. ____type", 0],
1185
+ ["/LvlStatList[0]/SkillList[17]/", "/LvlStatList[0]/SkillList[17]"],
1186
+ ["/LvlStatList[0]/SkillList[17]/ ____struct_type", 0],
1187
+ ["/LvlStatList[0]/SkillList[17]/Rank", 2],
1188
+ ["/LvlStatList[0]/SkillList[17]/Rank. ____type", 0],
1189
+ ["/LvlStatList[0]/SkillList[18]/", "/LvlStatList[0]/SkillList[18]"],
1190
+ ["/LvlStatList[0]/SkillList[18]/ ____struct_type", 0],
1191
+ ["/LvlStatList[0]/SkillList[18]/Rank", 4],
1192
+ ["/LvlStatList[0]/SkillList[18]/Rank. ____type", 0],
1193
+ ["/LvlStatList[0]/SkillList[19]/", "/LvlStatList[0]/SkillList[19]"],
1194
+ ["/LvlStatList[0]/SkillList[19]/ ____struct_type", 0],
1195
+ ["/LvlStatList[0]/SkillList[19]/Rank", 0],
1196
+ ["/LvlStatList[0]/SkillList[19]/Rank. ____type", 0],
1197
+ ["/LvlStatList[0]/SkillList[20]/", "/LvlStatList[0]/SkillList[20]"],
1198
+ ["/LvlStatList[0]/SkillList[20]/ ____struct_type", 0],
1199
+ ["/LvlStatList[0]/SkillList[20]/Rank", 0],
1200
+ ["/LvlStatList[0]/SkillList[20]/Rank. ____type", 0],
1201
+ ["/LvlStatList[0]/SkillList[21]/", "/LvlStatList[0]/SkillList[21]"],
1202
+ ["/LvlStatList[0]/SkillList[21]/ ____struct_type", 0],
1203
+ ["/LvlStatList[0]/SkillList[21]/Rank", 0],
1204
+ ["/LvlStatList[0]/SkillList[21]/Rank. ____type", 0],
1205
+ ["/LvlStatList[0]/SkillList[22]/", "/LvlStatList[0]/SkillList[22]"],
1206
+ ["/LvlStatList[0]/SkillList[22]/ ____struct_type", 0],
1207
+ ["/LvlStatList[0]/SkillList[22]/Rank", 0],
1208
+ ["/LvlStatList[0]/SkillList[22]/Rank. ____type", 0],
1209
+ ["/LvlStatList[0]/SkillList[23]/", "/LvlStatList[0]/SkillList[23]"],
1210
+ ["/LvlStatList[0]/SkillList[23]/ ____struct_type", 0],
1211
+ ["/LvlStatList[0]/SkillList[23]/Rank", 0],
1212
+ ["/LvlStatList[0]/SkillList[23]/Rank. ____type", 0],
1213
+ ["/LvlStatList[0]/SkillList[24]/", "/LvlStatList[0]/SkillList[24]"],
1214
+ ["/LvlStatList[0]/SkillList[24]/ ____struct_type", 0],
1215
+ ["/LvlStatList[0]/SkillList[24]/Rank", 0],
1216
+ ["/LvlStatList[0]/SkillList[24]/Rank. ____type", 0],
1217
+ ["/LvlStatList[0]/SkillList[25]/", "/LvlStatList[0]/SkillList[25]"],
1218
+ ["/LvlStatList[0]/SkillList[25]/ ____struct_type", 0],
1219
+ ["/LvlStatList[0]/SkillList[25]/Rank", 0],
1220
+ ["/LvlStatList[0]/SkillList[25]/Rank. ____type", 0],
1221
+ ["/LvlStatList[0]/SkillList[26]/", "/LvlStatList[0]/SkillList[26]"],
1222
+ ["/LvlStatList[0]/SkillList[26]/ ____struct_type", 0],
1223
+ ["/LvlStatList[0]/SkillList[26]/Rank", 0],
1224
+ ["/LvlStatList[0]/SkillList[26]/Rank. ____type", 0],
1225
+ ["/LvlStatList[0]/SkillList[27]/", "/LvlStatList[0]/SkillList[27]"],
1226
+ ["/LvlStatList[0]/SkillList[27]/ ____struct_type", 0],
1227
+ ["/LvlStatList[0]/SkillList[27]/Rank", 0],
1228
+ ["/LvlStatList[0]/SkillList[27]/Rank. ____type", 0],
1229
+ ["/LvlStatList[0]/SkillPoints", 0],
1230
+ ["/LvlStatList[0]/SkillPoints. ____type", 2],
1231
+ ["/MClassLevUpIn", 0],
1232
+ ["/MClassLevUpIn. ____type", 0],
1233
+ ["/MasterID", 2130706432],
1234
+ ["/MasterID. ____type", 4],
1235
+ ["/MaxHitPoints", 14],
1236
+ ["/MaxHitPoints. ____type", 3],
1237
+ ["/MovementRate", 0],
1238
+ ["/MovementRate. ____type", 0],
1239
+ ["/NaturalAC", 0],
1240
+ ["/NaturalAC. ____type", 0],
1241
+ ["/NoPermDeath", 0],
1242
+ ["/NoPermDeath. ____type", 0],
1243
+ ["/OverrideBAB", 0],
1244
+ ["/OverrideBAB. ____type", 0],
1245
+ ["/PM_IsPolymorphed", 0],
1246
+ ["/PM_IsPolymorphed. ____type", 0],
1247
+ ["/PerceptionList. ____type", 15],
1248
+ ["/PerceptionList[0]/", "/PerceptionList[0]"],
1249
+ ["/PerceptionList[0]/ ____struct_type", 0],
1250
+ ["/PerceptionList[0]/ObjectId", 2147483647],
1251
+ ["/PerceptionList[0]/ObjectId. ____type", 4],
1252
+ ["/PerceptionList[0]/PerceptionData", 3],
1253
+ ["/PerceptionList[0]/PerceptionData. ____type", 0],
1254
+ ["/PerceptionList[1]/", "/PerceptionList[1]"],
1255
+ ["/PerceptionList[1]/ ____struct_type", 0],
1256
+ ["/PerceptionList[1]/ObjectId", 175],
1257
+ ["/PerceptionList[1]/ObjectId. ____type", 4],
1258
+ ["/PerceptionList[1]/PerceptionData", 3],
1259
+ ["/PerceptionList[1]/PerceptionData. ____type", 0],
1260
+ ["/PerceptionList[2]/", "/PerceptionList[2]"],
1261
+ ["/PerceptionList[2]/ ____struct_type", 0],
1262
+ ["/PerceptionList[2]/ObjectId", 149],
1263
+ ["/PerceptionList[2]/ObjectId. ____type", 4],
1264
+ ["/PerceptionList[2]/PerceptionData", 3],
1265
+ ["/PerceptionList[2]/PerceptionData. ____type", 0],
1266
+ ["/PerceptionList[3]/", "/PerceptionList[3]"],
1267
+ ["/PerceptionList[3]/ ____struct_type", 0],
1268
+ ["/PerceptionList[3]/ObjectId", 140],
1269
+ ["/PerceptionList[3]/ObjectId. ____type", 4],
1270
+ ["/PerceptionList[3]/PerceptionData", 3],
1271
+ ["/PerceptionList[3]/PerceptionData. ____type", 0],
1272
+ ["/PerceptionList[4]/", "/PerceptionList[4]"],
1273
+ ["/PerceptionList[4]/ ____struct_type", 0],
1274
+ ["/PerceptionList[4]/ObjectId", 123],
1275
+ ["/PerceptionList[4]/ObjectId. ____type", 4],
1276
+ ["/PerceptionList[4]/PerceptionData", 3],
1277
+ ["/PerceptionList[4]/PerceptionData. ____type", 0],
1278
+ ["/PerceptionList[5]/", "/PerceptionList[5]"],
1279
+ ["/PerceptionList[5]/ ____struct_type", 0],
1280
+ ["/PerceptionList[5]/ObjectId", 116],
1281
+ ["/PerceptionList[5]/ObjectId. ____type", 4],
1282
+ ["/PerceptionList[5]/PerceptionData", 3],
1283
+ ["/PerceptionList[5]/PerceptionData. ____type", 0],
1284
+ ["/PerceptionList[6]/", "/PerceptionList[6]"],
1285
+ ["/PerceptionList[6]/ ____struct_type", 0],
1286
+ ["/PerceptionList[6]/ObjectId", 109],
1287
+ ["/PerceptionList[6]/ObjectId. ____type", 4],
1288
+ ["/PerceptionList[6]/PerceptionData", 3],
1289
+ ["/PerceptionList[6]/PerceptionData. ____type", 0],
1290
+ ["/PerceptionList[7]/", "/PerceptionList[7]"],
1291
+ ["/PerceptionList[7]/ ____struct_type", 0],
1292
+ ["/PerceptionList[7]/ObjectId", 166],
1293
+ ["/PerceptionList[7]/ObjectId. ____type", 4],
1294
+ ["/PerceptionList[7]/PerceptionData", 3],
1295
+ ["/PerceptionList[7]/PerceptionData. ____type", 0],
1296
+ ["/PerceptionList[8]/", "/PerceptionList[8]"],
1297
+ ["/PerceptionList[8]/ ____struct_type", 0],
1298
+ ["/PerceptionList[8]/ObjectId", 157],
1299
+ ["/PerceptionList[8]/ObjectId. ____type", 4],
1300
+ ["/PerceptionList[8]/PerceptionData", 3],
1301
+ ["/PerceptionList[8]/PerceptionData. ____type", 0],
1302
+ ["/PerceptionList[9]/", "/PerceptionList[9]"],
1303
+ ["/PerceptionList[9]/ ____struct_type", 0],
1304
+ ["/PerceptionList[9]/ObjectId", 131],
1305
+ ["/PerceptionList[9]/ObjectId. ____type", 4],
1306
+ ["/PerceptionList[9]/PerceptionData", 3],
1307
+ ["/PerceptionList[9]/PerceptionData. ____type", 0],
1308
+ ["/Phenotype", 0],
1309
+ ["/Phenotype. ____type", 5],
1310
+ ["/Plot", 0],
1311
+ ["/Plot. ____type", 0],
1312
+ ["/Portrait", "po_hu_m_02_"],
1313
+ ["/Portrait. ____type", 11],
1314
+ ["/PregameCurrent", 14],
1315
+ ["/PregameCurrent. ____type", 3],
1316
+ ["/QBList. ____type", 15],
1317
+ ["/QBList[0]/", "/QBList[0]"],
1318
+ ["/QBList[0]/ ____struct_type", 0],
1319
+ ["/QBList[0]/QBINTParam1", 1],
1320
+ ["/QBList[0]/QBINTParam1. ____type", 5],
1321
+ ["/QBList[0]/QBObjectType", 10],
1322
+ ["/QBList[0]/QBObjectType. ____type", 0],
1323
+ ["/QBList[1]/", "/QBList[1]"],
1324
+ ["/QBList[1]/ ____struct_type", 0],
1325
+ ["/QBList[1]/QBINTParam1", 0],
1326
+ ["/QBList[1]/QBINTParam1. ____type", 5],
1327
+ ["/QBList[1]/QBObjectType", 10],
1328
+ ["/QBList[1]/QBObjectType. ____type", 0],
1329
+ ["/QBList[2]/", "/QBList[2]"],
1330
+ ["/QBList[2]/ ____struct_type", 0],
1331
+ ["/QBList[2]/QBCastPropIndex", 255],
1332
+ ["/QBList[2]/QBCastPropIndex. ____type", 0],
1333
+ ["/QBList[2]/QBCastSubPropIdx", 255],
1334
+ ["/QBList[2]/QBCastSubPropIdx. ____type", 0],
1335
+ ["/QBList[2]/QBContReposX", 255],
1336
+ ["/QBList[2]/QBContReposX. ____type", 0],
1337
+ ["/QBList[2]/QBContReposY", 255],
1338
+ ["/QBList[2]/QBContReposY. ____type", 0],
1339
+ ["/QBList[2]/QBItemInvSlot", 4294967295],
1340
+ ["/QBList[2]/QBItemInvSlot. ____type", 4],
1341
+ ["/QBList[2]/QBItemReposX", 0],
1342
+ ["/QBList[2]/QBItemReposX. ____type", 0],
1343
+ ["/QBList[2]/QBItemReposY", 0],
1344
+ ["/QBList[2]/QBItemReposY. ____type", 0],
1345
+ ["/QBList[2]/QBObjectType", 1],
1346
+ ["/QBList[2]/QBObjectType. ____type", 0],
1347
+ ["/QBList[3]/", "/QBList[3]"],
1348
+ ["/QBList[3]/ ____struct_type", 0],
1349
+ ["/QBList[3]/QBCastPropIndex", 255],
1350
+ ["/QBList[3]/QBCastPropIndex. ____type", 0],
1351
+ ["/QBList[3]/QBCastSubPropIdx", 255],
1352
+ ["/QBList[3]/QBCastSubPropIdx. ____type", 0],
1353
+ ["/QBList[3]/QBContReposX", 255],
1354
+ ["/QBList[3]/QBContReposX. ____type", 0],
1355
+ ["/QBList[3]/QBContReposY", 255],
1356
+ ["/QBList[3]/QBContReposY. ____type", 0],
1357
+ ["/QBList[3]/QBItemInvSlot", 4294967295],
1358
+ ["/QBList[3]/QBItemInvSlot. ____type", 4],
1359
+ ["/QBList[3]/QBItemReposX", 6],
1360
+ ["/QBList[3]/QBItemReposX. ____type", 0],
1361
+ ["/QBList[3]/QBItemReposY", 0],
1362
+ ["/QBList[3]/QBItemReposY. ____type", 0],
1363
+ ["/QBList[3]/QBObjectType", 1],
1364
+ ["/QBList[3]/QBObjectType. ____type", 0],
1365
+ ["/QBList[4]/", "/QBList[4]"],
1366
+ ["/QBList[4]/ ____struct_type", 0],
1367
+ ["/QBList[4]/QBINTParam1", 293],
1368
+ ["/QBList[4]/QBINTParam1. ____type", 5],
1369
+ ["/QBList[4]/QBObjectType", 4],
1370
+ ["/QBList[4]/QBObjectType. ____type", 0],
1371
+ ["/QBList[5]/", "/QBList[5]"],
1372
+ ["/QBList[5]/ ____struct_type", 0],
1373
+ ["/QBList[5]/QBINTParam1", 28],
1374
+ ["/QBList[5]/QBINTParam1. ____type", 5],
1375
+ ["/QBList[5]/QBObjectType", 4],
1376
+ ["/QBList[5]/QBObjectType. ____type", 0],
1377
+ ["/QBList[6]/", "/QBList[6]"],
1378
+ ["/QBList[6]/ ____struct_type", 0],
1379
+ ["/QBList[6]/QBObjectType", 0],
1380
+ ["/QBList[6]/QBObjectType. ____type", 0],
1381
+ ["/QBList[7]/", "/QBList[7]"],
1382
+ ["/QBList[7]/ ____struct_type", 0],
1383
+ ["/QBList[7]/QBObjectType", 0],
1384
+ ["/QBList[7]/QBObjectType. ____type", 0],
1385
+ ["/QBList[8]/", "/QBList[8]"],
1386
+ ["/QBList[8]/ ____struct_type", 0],
1387
+ ["/QBList[8]/QBObjectType", 0],
1388
+ ["/QBList[8]/QBObjectType. ____type", 0],
1389
+ ["/QBList[9]/", "/QBList[9]"],
1390
+ ["/QBList[9]/ ____struct_type", 0],
1391
+ ["/QBList[9]/QBObjectType", 0],
1392
+ ["/QBList[9]/QBObjectType. ____type", 0],
1393
+ ["/QBList[10]/", "/QBList[10]"],
1394
+ ["/QBList[10]/ ____struct_type", 0],
1395
+ ["/QBList[10]/QBObjectType", 0],
1396
+ ["/QBList[10]/QBObjectType. ____type", 0],
1397
+ ["/QBList[11]/", "/QBList[11]"],
1398
+ ["/QBList[11]/ ____struct_type", 0],
1399
+ ["/QBList[11]/QBObjectType", 0],
1400
+ ["/QBList[11]/QBObjectType. ____type", 0],
1401
+ ["/QBList[12]/", "/QBList[12]"],
1402
+ ["/QBList[12]/ ____struct_type", 0],
1403
+ ["/QBList[12]/QBObjectType", 0],
1404
+ ["/QBList[12]/QBObjectType. ____type", 0],
1405
+ ["/QBList[13]/", "/QBList[13]"],
1406
+ ["/QBList[13]/ ____struct_type", 0],
1407
+ ["/QBList[13]/QBObjectType", 0],
1408
+ ["/QBList[13]/QBObjectType. ____type", 0],
1409
+ ["/QBList[14]/", "/QBList[14]"],
1410
+ ["/QBList[14]/ ____struct_type", 0],
1411
+ ["/QBList[14]/QBObjectType", 0],
1412
+ ["/QBList[14]/QBObjectType. ____type", 0],
1413
+ ["/QBList[15]/", "/QBList[15]"],
1414
+ ["/QBList[15]/ ____struct_type", 0],
1415
+ ["/QBList[15]/QBObjectType", 0],
1416
+ ["/QBList[15]/QBObjectType. ____type", 0],
1417
+ ["/QBList[16]/", "/QBList[16]"],
1418
+ ["/QBList[16]/ ____struct_type", 0],
1419
+ ["/QBList[16]/QBObjectType", 0],
1420
+ ["/QBList[16]/QBObjectType. ____type", 0],
1421
+ ["/QBList[17]/", "/QBList[17]"],
1422
+ ["/QBList[17]/ ____struct_type", 0],
1423
+ ["/QBList[17]/QBObjectType", 0],
1424
+ ["/QBList[17]/QBObjectType. ____type", 0],
1425
+ ["/QBList[18]/", "/QBList[18]"],
1426
+ ["/QBList[18]/ ____struct_type", 0],
1427
+ ["/QBList[18]/QBObjectType", 0],
1428
+ ["/QBList[18]/QBObjectType. ____type", 0],
1429
+ ["/QBList[19]/", "/QBList[19]"],
1430
+ ["/QBList[19]/ ____struct_type", 0],
1431
+ ["/QBList[19]/QBObjectType", 0],
1432
+ ["/QBList[19]/QBObjectType. ____type", 0],
1433
+ ["/QBList[20]/", "/QBList[20]"],
1434
+ ["/QBList[20]/ ____struct_type", 0],
1435
+ ["/QBList[20]/QBObjectType", 0],
1436
+ ["/QBList[20]/QBObjectType. ____type", 0],
1437
+ ["/QBList[21]/", "/QBList[21]"],
1438
+ ["/QBList[21]/ ____struct_type", 0],
1439
+ ["/QBList[21]/QBObjectType", 0],
1440
+ ["/QBList[21]/QBObjectType. ____type", 0],
1441
+ ["/QBList[22]/", "/QBList[22]"],
1442
+ ["/QBList[22]/ ____struct_type", 0],
1443
+ ["/QBList[22]/QBObjectType", 0],
1444
+ ["/QBList[22]/QBObjectType. ____type", 0],
1445
+ ["/QBList[23]/", "/QBList[23]"],
1446
+ ["/QBList[23]/ ____struct_type", 0],
1447
+ ["/QBList[23]/QBObjectType", 0],
1448
+ ["/QBList[23]/QBObjectType. ____type", 0],
1449
+ ["/QBList[24]/", "/QBList[24]"],
1450
+ ["/QBList[24]/ ____struct_type", 0],
1451
+ ["/QBList[24]/QBObjectType", 0],
1452
+ ["/QBList[24]/QBObjectType. ____type", 0],
1453
+ ["/QBList[25]/", "/QBList[25]"],
1454
+ ["/QBList[25]/ ____struct_type", 0],
1455
+ ["/QBList[25]/QBObjectType", 0],
1456
+ ["/QBList[25]/QBObjectType. ____type", 0],
1457
+ ["/QBList[26]/", "/QBList[26]"],
1458
+ ["/QBList[26]/ ____struct_type", 0],
1459
+ ["/QBList[26]/QBObjectType", 0],
1460
+ ["/QBList[26]/QBObjectType. ____type", 0],
1461
+ ["/QBList[27]/", "/QBList[27]"],
1462
+ ["/QBList[27]/ ____struct_type", 0],
1463
+ ["/QBList[27]/QBObjectType", 0],
1464
+ ["/QBList[27]/QBObjectType. ____type", 0],
1465
+ ["/QBList[28]/", "/QBList[28]"],
1466
+ ["/QBList[28]/ ____struct_type", 0],
1467
+ ["/QBList[28]/QBObjectType", 0],
1468
+ ["/QBList[28]/QBObjectType. ____type", 0],
1469
+ ["/QBList[29]/", "/QBList[29]"],
1470
+ ["/QBList[29]/ ____struct_type", 0],
1471
+ ["/QBList[29]/QBObjectType", 0],
1472
+ ["/QBList[29]/QBObjectType. ____type", 0],
1473
+ ["/QBList[30]/", "/QBList[30]"],
1474
+ ["/QBList[30]/ ____struct_type", 0],
1475
+ ["/QBList[30]/QBObjectType", 0],
1476
+ ["/QBList[30]/QBObjectType. ____type", 0],
1477
+ ["/QBList[31]/", "/QBList[31]"],
1478
+ ["/QBList[31]/ ____struct_type", 0],
1479
+ ["/QBList[31]/QBObjectType", 0],
1480
+ ["/QBList[31]/QBObjectType. ____type", 0],
1481
+ ["/QBList[32]/", "/QBList[32]"],
1482
+ ["/QBList[32]/ ____struct_type", 0],
1483
+ ["/QBList[32]/QBObjectType", 0],
1484
+ ["/QBList[32]/QBObjectType. ____type", 0],
1485
+ ["/QBList[33]/", "/QBList[33]"],
1486
+ ["/QBList[33]/ ____struct_type", 0],
1487
+ ["/QBList[33]/QBObjectType", 0],
1488
+ ["/QBList[33]/QBObjectType. ____type", 0],
1489
+ ["/QBList[34]/", "/QBList[34]"],
1490
+ ["/QBList[34]/ ____struct_type", 0],
1491
+ ["/QBList[34]/QBObjectType", 0],
1492
+ ["/QBList[34]/QBObjectType. ____type", 0],
1493
+ ["/QBList[35]/", "/QBList[35]"],
1494
+ ["/QBList[35]/ ____struct_type", 0],
1495
+ ["/QBList[35]/QBObjectType", 0],
1496
+ ["/QBList[35]/QBObjectType. ____type", 0],
1497
+ ["/Race", 6],
1498
+ ["/Race. ____type", 0],
1499
+ ["/RefSaveThrow", 2],
1500
+ ["/RefSaveThrow. ____type", 1],
1501
+ ["/ScriptAttacked", "default"],
1502
+ ["/ScriptAttacked. ____type", 11],
1503
+ ["/ScriptDamaged", "default"],
1504
+ ["/ScriptDamaged. ____type", 11],
1505
+ ["/ScriptDeath", "default"],
1506
+ ["/ScriptDeath. ____type", 11],
1507
+ ["/ScriptDialogue", "default"],
1508
+ ["/ScriptDialogue. ____type", 11],
1509
+ ["/ScriptDisturbed", "default"],
1510
+ ["/ScriptDisturbed. ____type", 11],
1511
+ ["/ScriptEndRound", "default"],
1512
+ ["/ScriptEndRound. ____type", 11],
1513
+ ["/ScriptHeartbeat", "default"],
1514
+ ["/ScriptHeartbeat. ____type", 11],
1515
+ ["/ScriptOnBlocked", "default"],
1516
+ ["/ScriptOnBlocked. ____type", 11],
1517
+ ["/ScriptOnNotice", "default"],
1518
+ ["/ScriptOnNotice. ____type", 11],
1519
+ ["/ScriptRested", "default"],
1520
+ ["/ScriptRested. ____type", 11],
1521
+ ["/ScriptSpawn", "default"],
1522
+ ["/ScriptSpawn. ____type", 11],
1523
+ ["/ScriptSpellAt", "default"],
1524
+ ["/ScriptSpellAt. ____type", 11],
1525
+ ["/ScriptUserDefine", "default"],
1526
+ ["/ScriptUserDefine. ____type", 11],
1527
+ ["/SitObject", 2130706432],
1528
+ ["/SitObject. ____type", 4],
1529
+ ["/SkillList. ____type", 15],
1530
+ ["/SkillList[0]/", "/SkillList[0]"],
1531
+ ["/SkillList[0]/ ____struct_type", 0],
1532
+ ["/SkillList[0]/Rank", 0],
1533
+ ["/SkillList[0]/Rank. ____type", 0],
1534
+ ["/SkillList[1]/", "/SkillList[1]"],
1535
+ ["/SkillList[1]/ ____struct_type", 0],
1536
+ ["/SkillList[1]/Rank", 0],
1537
+ ["/SkillList[1]/Rank. ____type", 0],
1538
+ ["/SkillList[2]/", "/SkillList[2]"],
1539
+ ["/SkillList[2]/ ____struct_type", 0],
1540
+ ["/SkillList[2]/Rank", 0],
1541
+ ["/SkillList[2]/Rank. ____type", 0],
1542
+ ["/SkillList[3]/", "/SkillList[3]"],
1543
+ ["/SkillList[3]/ ____struct_type", 0],
1544
+ ["/SkillList[3]/Rank", 4],
1545
+ ["/SkillList[3]/Rank. ____type", 0],
1546
+ ["/SkillList[4]/", "/SkillList[4]"],
1547
+ ["/SkillList[4]/ ____struct_type", 0],
1548
+ ["/SkillList[4]/Rank", 0],
1549
+ ["/SkillList[4]/Rank. ____type", 0],
1550
+ ["/SkillList[5]/", "/SkillList[5]"],
1551
+ ["/SkillList[5]/ ____struct_type", 0],
1552
+ ["/SkillList[5]/Rank", 0],
1553
+ ["/SkillList[5]/Rank. ____type", 0],
1554
+ ["/SkillList[6]/", "/SkillList[6]"],
1555
+ ["/SkillList[6]/ ____struct_type", 0],
1556
+ ["/SkillList[6]/Rank", 4],
1557
+ ["/SkillList[6]/Rank. ____type", 0],
1558
+ ["/SkillList[7]/", "/SkillList[7]"],
1559
+ ["/SkillList[7]/ ____struct_type", 0],
1560
+ ["/SkillList[7]/Rank", 0],
1561
+ ["/SkillList[7]/Rank. ____type", 0],
1562
+ ["/SkillList[8]/", "/SkillList[8]"],
1563
+ ["/SkillList[8]/ ____struct_type", 0],
1564
+ ["/SkillList[8]/Rank", 0],
1565
+ ["/SkillList[8]/Rank. ____type", 0],
1566
+ ["/SkillList[9]/", "/SkillList[9]"],
1567
+ ["/SkillList[9]/ ____struct_type", 0],
1568
+ ["/SkillList[9]/Rank", 0],
1569
+ ["/SkillList[9]/Rank. ____type", 0],
1570
+ ["/SkillList[10]/", "/SkillList[10]"],
1571
+ ["/SkillList[10]/ ____struct_type", 0],
1572
+ ["/SkillList[10]/Rank", 4],
1573
+ ["/SkillList[10]/Rank. ____type", 0],
1574
+ ["/SkillList[11]/", "/SkillList[11]"],
1575
+ ["/SkillList[11]/ ____struct_type", 0],
1576
+ ["/SkillList[11]/Rank", 0],
1577
+ ["/SkillList[11]/Rank. ____type", 0],
1578
+ ["/SkillList[12]/", "/SkillList[12]"],
1579
+ ["/SkillList[12]/ ____struct_type", 0],
1580
+ ["/SkillList[12]/Rank", 0],
1581
+ ["/SkillList[12]/Rank. ____type", 0],
1582
+ ["/SkillList[13]/", "/SkillList[13]"],
1583
+ ["/SkillList[13]/ ____struct_type", 0],
1584
+ ["/SkillList[13]/Rank", 0],
1585
+ ["/SkillList[13]/Rank. ____type", 0],
1586
+ ["/SkillList[14]/", "/SkillList[14]"],
1587
+ ["/SkillList[14]/ ____struct_type", 0],
1588
+ ["/SkillList[14]/Rank", 0],
1589
+ ["/SkillList[14]/Rank. ____type", 0],
1590
+ ["/SkillList[15]/", "/SkillList[15]"],
1591
+ ["/SkillList[15]/ ____struct_type", 0],
1592
+ ["/SkillList[15]/Rank", 0],
1593
+ ["/SkillList[15]/Rank. ____type", 0],
1594
+ ["/SkillList[16]/", "/SkillList[16]"],
1595
+ ["/SkillList[16]/ ____struct_type", 0],
1596
+ ["/SkillList[16]/Rank", 0],
1597
+ ["/SkillList[16]/Rank. ____type", 0],
1598
+ ["/SkillList[17]/", "/SkillList[17]"],
1599
+ ["/SkillList[17]/ ____struct_type", 0],
1600
+ ["/SkillList[17]/Rank", 2],
1601
+ ["/SkillList[17]/Rank. ____type", 0],
1602
+ ["/SkillList[18]/", "/SkillList[18]"],
1603
+ ["/SkillList[18]/ ____struct_type", 0],
1604
+ ["/SkillList[18]/Rank", 4],
1605
+ ["/SkillList[18]/Rank. ____type", 0],
1606
+ ["/SkillList[19]/", "/SkillList[19]"],
1607
+ ["/SkillList[19]/ ____struct_type", 0],
1608
+ ["/SkillList[19]/Rank", 0],
1609
+ ["/SkillList[19]/Rank. ____type", 0],
1610
+ ["/SkillList[20]/", "/SkillList[20]"],
1611
+ ["/SkillList[20]/ ____struct_type", 0],
1612
+ ["/SkillList[20]/Rank", 0],
1613
+ ["/SkillList[20]/Rank. ____type", 0],
1614
+ ["/SkillList[21]/", "/SkillList[21]"],
1615
+ ["/SkillList[21]/ ____struct_type", 0],
1616
+ ["/SkillList[21]/Rank", 0],
1617
+ ["/SkillList[21]/Rank. ____type", 0],
1618
+ ["/SkillList[22]/", "/SkillList[22]"],
1619
+ ["/SkillList[22]/ ____struct_type", 0],
1620
+ ["/SkillList[22]/Rank", 0],
1621
+ ["/SkillList[22]/Rank. ____type", 0],
1622
+ ["/SkillList[23]/", "/SkillList[23]"],
1623
+ ["/SkillList[23]/ ____struct_type", 0],
1624
+ ["/SkillList[23]/Rank", 0],
1625
+ ["/SkillList[23]/Rank. ____type", 0],
1626
+ ["/SkillList[24]/", "/SkillList[24]"],
1627
+ ["/SkillList[24]/ ____struct_type", 0],
1628
+ ["/SkillList[24]/Rank", 0],
1629
+ ["/SkillList[24]/Rank. ____type", 0],
1630
+ ["/SkillList[25]/", "/SkillList[25]"],
1631
+ ["/SkillList[25]/ ____struct_type", 0],
1632
+ ["/SkillList[25]/Rank", 0],
1633
+ ["/SkillList[25]/Rank. ____type", 0],
1634
+ ["/SkillList[26]/", "/SkillList[26]"],
1635
+ ["/SkillList[26]/ ____struct_type", 0],
1636
+ ["/SkillList[26]/Rank", 0],
1637
+ ["/SkillList[26]/Rank. ____type", 0],
1638
+ ["/SkillList[27]/", "/SkillList[27]"],
1639
+ ["/SkillList[27]/ ____struct_type", 0],
1640
+ ["/SkillList[27]/Rank", 0],
1641
+ ["/SkillList[27]/Rank. ____type", 0],
1642
+ ["/SkillPoints", 0],
1643
+ ["/SkillPoints. ____type", 2],
1644
+ ["/SoundSetFile", 216],
1645
+ ["/SoundSetFile. ____type", 2],
1646
+ ["/StartingPackage", 0],
1647
+ ["/StartingPackage. ____type", 0],
1648
+ ["/StealthMode", 0],
1649
+ ["/StealthMode. ____type", 0],
1650
+ ["/Str", 16],
1651
+ ["/Str. ____type", 0],
1652
+ ["/Subrace", ""],
1653
+ ["/Subrace. ____type", 10],
1654
+ ["/Tag", ""],
1655
+ ["/Tag. ____type", 10],
1656
+ ["/Tail_New", 14],
1657
+ ["/Tail_New. ____type", 4],
1658
+ ["/TemplateResRef", ""],
1659
+ ["/TemplateResRef. ____type", 11],
1660
+ ["/WillSaveThrow", 0],
1661
+ ["/WillSaveThrow. ____type", 1],
1662
+ ["/Wings_New", 0],
1663
+ ["/Wings_New. ____type", 4],
1664
+ ["/Wis", 10],
1665
+ ["/Wis. ____type", 0],
1666
+ ["/XOrientation", -0.931925296783447],
1667
+ ["/XOrientation. ____type", 8],
1668
+ ["/XPosition", 9.91707420349121],
1669
+ ["/XPosition. ____type", 8],
1670
+ ["/YOrientation", -0.362650394439697],
1671
+ ["/YOrientation. ____type", 8],
1672
+ ["/YPosition", 4.97920179367065],
1673
+ ["/YPosition. ____type", 8],
1674
+ ["/ZOrientation", 0.0],
1675
+ ["/ZOrientation. ____type", 8],
1676
+ ["/ZPosition", 0.000121737910376396],
1677
+ ["/ZPosition. ____type", 8],
1678
+ ["/fortbonus", 0],
1679
+ ["/fortbonus. ____type", 3],
1680
+ ["/refbonus", 0],
1681
+ ["/refbonus. ____type", 3],
1682
+ ["/willbonus", 0],
1683
+ ["/willbonus. ____type", 3]
1684
+ ].freeze